I am populating a text field from a rich text field in a database. The problem is that usually I want this text to be the color it is set as, however I am trying to place the same information on a different background color and it doesn’t show up well.
1 Like
I tried this but it did not do anything…
});
$w('#lightboxDataset').onReady(() => {
$w("#text81").text = "Text Value";
});
I have a same problem
I have a same problem
Perhaps this way?
$w('#YourText').html = "<h1 style='color:#A93C61'> Your Text here </h1>";