Page 1 of 1

how to change the text color properties for buttons

Posted: Fri May 17, 2013 2:26 am
by John Herdean

i want to change the default text color in a button. Im thinking add more properties, but what is the property name i need to use?


how to change the text color properties for buttons

Posted: Fri May 17, 2013 2:53 am
by John Herdean

also, theres a theme i like but i dont like the color the buttons come with. Can I modify the text color of the buttons for a set theme you guys already give?? Thanks.


how to change the text color properties for buttons

Posted: Fri May 17, 2013 2:56 am
by Alena Prykhodko

You may do it with custom JavaScript or CSS. Working on it.


how to change the text color properties for buttons

Posted: Fri May 17, 2013 3:18 am
by John Herdean

what do you mean working on it?


how to change the text color properties for buttons

Posted: Fri May 17, 2013 3:19 am
by Alena Prykhodko

To change text color on startScreen Load Event run JavaScript
code $("[name=mobilebutton_n]").css('color','#ff0000');/code

To implement color in theme give Class Name to mobilebutton component, create New CSS and use the following code
code.ClassName{
color: #8256a4 !important;
}/code


how to change the text color properties for buttons

Posted: Fri May 17, 2013 3:21 am
by Alena Prykhodko

I've tested code :)