Page 1 of 1

Changing font size/style in component

Posted: Wed Oct 12, 2011 12:02 pm
by Alan

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.


Changing font size/style in component

Posted: Wed Oct 12, 2011 1:14 pm
by maxkatz

For which component are you trying to change text font and style? You should be able to set both in Properties for the component..


Changing font size/style in component

Posted: Wed Oct 12, 2011 9:25 pm
by Alan

Buttons and text area....for button I see Position, icon and theme are changeable but not font style/color/size etc...


Changing font size/style in component

Posted: Thu Oct 13, 2011 2:39 pm
by maxkatz

Ah.. got it. All other style settings for button could be changed via themes. Project/Themes. Let me know if this helps...


Changing font size/style in component

Posted: Wed Oct 03, 2012 3:26 am
by appgirl

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?


Changing font size/style in component

Posted: Wed Oct 03, 2012 3:44 am
by maxkatz

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.


Changing font size/style in component

Posted: Wed Oct 03, 2012 5:35 am
by appgirl

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.


Changing font size/style in component

Posted: Wed Oct 03, 2012 12:34 pm
by maxkatz

Changing font size/style in component

Posted: Wed Oct 03, 2012 1:43 pm
by Emmz

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