Hello, Can somone tell me what I am doing wrong? I am trying to change the font size of a local property using the postRender event.
I have defined a local string property on my content page labeled "Instructions". I changed the "Font Style" to "Large" in the properties pane but this did not change the size of the label when I compiled and viewed it
in Chrome. I then tried to make the size change using the postRender event. Here is my code:
myapp.AddNewAssociate.Instructions_postRender = function (element, contentItem) {
$(element).css({
"font-family": "Times New Roman",
"font-style": "italic",
"font-size": "120px"
})
};
This also did not have any affect when viewed in Chrome. What am I doing wrong?