I have embedded an edge file in my html page.
Inside the edge file, a text field with a class name of "text"
<!doctype html>
<html>
<head>
<meta charset="UTF-8">
<title>Untitled Document</title>
<style type="text/css">
#Stage .text {
color: #FFFFFF;
font-family: Impact, Haettenschweiler, "Franklin Gothic Bold", "Arial Black", sans-serif;
text-align: center;
font-size: 300px;
}
</style>
</head>
<body>
<object id="EdgeID" type="text/html" width="420" height="420" data-dw-widget="Edge" data="Untitled-1/Assets/Untitled-1.html">
</object>
</body>
</html>
Should this not make my text in EDGE appear in white once loaded in the html page?
Any help would be greatly appreciated, I know I have achieved this before but I cant remember how.
Steve