I have a dynamic page with an HTML iframe pulling content from a dataset. All is working well (you can see the live site with the iframe working here (look at Learning Experience box): https://www.connections.inquired.org/lessons/Exploring-Family . but I’d like to be able to control the font globally for this iframe so that I do not need to add styling to the HTML in the dataset. I’m including the code for the iframe as well as the page below. Any help much appreciated!
This is the code on my iframe:
<!doctype html>
This is the code on my page:
export function html1_message(event) {
let urlMessage = $w('#dynamicDataset').getCurrentItem().learningExperience;
$w("#html1").postMessage(urlMessage);
}