Changing font size/style in component
I don't see a way to change text font size and style in an element. I see in the tweet example it says to change style and font size but does not say how.
Catch up wih the Appery.io community on our forum. Here you'll find information on the lastest questions and issues Appery.io developers are discussing.
https://forum.appery.io/
I don't see a way to change text font size and style in an element. I see in the tweet example it says to change style and font size but does not say how.
For which component are you trying to change text font and style? You should be able to set both in Properties for the component..
Buttons and text area....for button I see Position, icon and theme are changeable but not font style/color/size etc...
Ah.. got it. All other style settings for button could be changed via themes. Project/Themes. Let me know if this helps...
related topic: I want the user to be able to click a color via button in grid, (2 rows of 4 with different colors) and change the color of the text in the text box above.
any suggestions?
Select the component with jQuery and set its style or color, to whatever color the user clicked on. You can do this all via 'click' event and Run Custom JavaScript action.
can you explain how to select component with jQuery. I m sorry kind new to this.
I had to let some of my employees go who had knowledge in this. Now running on my own.
I would simply place this Click event code in each of your color select buttons..
codeTiggzi('yourtext1').css({'color': 'blue'});
or...Tiggzi('yourtext2').css({'color': 'red'}); ..etc.
/code