I need to style text (which comes from a Rich Text field in a database) to show proper paragraph breaks, indentation, etc. This formatting is for whatever reason not supported by the Wix text style options (their suggested workaround for paragraph spacing is to create separate text boxes for each paragraph, which is obviously not going to work for database text), so I’m trying to do it through script. However, I cannot find any way to access the CSS style of the element in Corvid. Is this possible?
I’m currently trying something like:
$w.onReady( function () {
$w(“#fullText”).style = ???
});
But of course .style (or anything like it) doesn’t exist, at least in the intellisense. How can I access the style information via Corvid?