Page 1 of 1
change radio button colour
Posted: Thu Aug 22, 2013 5:10 pm
by sam5863015
Is there anyway to change the colour of a radio button? I have set the theme by using jQuery's theme roller and have my default colours on the page but now I'd like to change the colour of the radio button but would like to keep the theme I have too. Is there any way to do this?
change radio button colour
Posted: Thu Aug 22, 2013 5:35 pm
by Maryna Brodina
Hello! You can also use CSS to do that.
http://docs.appery.io/documentation/w...
change radio button colour
Posted: Thu Aug 22, 2013 9:32 pm
by sam5863015
Ok I've checked that out and it only makes reference to font style how do I change the actual box colour? Appery is great tool by the way will we ever see a downloaded version or will it stay on cloud?
change radio button colour
Posted: Thu Aug 22, 2013 10:40 pm
by Igor
Hello.
To change radio button colour use next CSS code:
precode
.ui-radio .ui-btn
{ background:green!important;
}
/code/pre
[quote:]Appery is great tool by the way will we ever see a downloaded version or will it stay on cloud?
[/quote]
it stay as a cloud-based mobile platform.
change radio button colour
Posted: Thu Aug 22, 2013 10:51 pm
by sam5863015
Thank you for your help 
change radio button colour
Posted: Fri Aug 23, 2013 8:28 am
by sam5863015
Hello,
I have added the CSS code to my app and it works great however I have 5 seperate radio boxes on the page and would like to code each a different colour, by using this CSS code I colour all the same.
change radio button colour
Posted: Fri Aug 23, 2013 12:14 pm
by Kateryna Grynko
Hi Sam,
Use extended CSS request:
code[dsid="mobileradiogroup_13"] .ui-radio .ui-btn
{
background:green!important;
}/code
change radio button colour
Posted: Fri Aug 23, 2013 2:31 pm
by sam5863015
Thank you both for your help