Can i change color text and background in iframe code. Thanks.
Hey,
You can use Messaging to send and receive messages between your page and your HTML Component. You can send and receive data as any valid JavaScript type.
Best,
Tal.
How to change color text and background in iframe code. Thanks.
Hi,
You can change the colors in the HTML of the code, for example you can change the background color with a code like this:
<!DOCTYPE html>
<html>
<head>
<style>
body {
background-color: "red"
}
</style>
</head>
<body>
</body>
</html>
Good luck