how to change the text color properties for buttons
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?
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 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?
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.
You may do it with custom JavaScript or CSS. Working on it.
what do you mean working on it?
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
I've tested code ![]()