I have been using the Row CSS Class option to set up custom CSS for rows in ArcGIS Hub Premium. The expected change (in this case, text size) is shown in edit mode, but when viewing the published version the text size reverts to the default.
As an example, I have a row with a single text box within it. The Row CSS Class is set to testCSS.
The html in the text box is as follows:
Test text. Should be 32 px
<style>
div.testCSS {
font-family: lato, Arial, serif;
font-size: 32px;
}
</style>In edit mode, the text shows as 32 px, but reverts to the standard font size when viewing the published version. This is despite publishing the draft before viewing the published result. Am I missing something?