Page 1 of 1

How to change the background color of the radio UI?

Posted: Thu Jun 25, 2015 9:18 am
by LS

Can anyone please tell me how can I change the background color of radio UI in appery.io?

With Swatch-C I got the following radio Ui:
Image

I want it to look like this:

Image

I have change the corner by editting the html file after exporting my project from appery.io platform, added the - data-corners="false" in the feildset.

The radio button part should remain white.


How to change the background color of the radio UI?

Posted: Thu Jun 25, 2015 10:06 am
by Alena Prykhodko

Hello,

This should help https://devcenter.appery.io/documenta...
Just set color instead transparent.


How to change the background color of the radio UI?

Posted: Thu Jun 25, 2015 10:29 am
by LS

This is the code snipet as generated by the appery.io web development tool
Image

I was able to modify the background color using the following code:
Image

a href="https://d2r1vs3d9006ap.cloudfront.net/s ... 1435228328[/img] /a

But still the radio button part takes the color of the background, how can I set it to white as shown in the image in the Q?


How to change the background color of the radio UI?

Posted: Thu Jun 25, 2015 10:30 am
by LS

please see my reply below.


How to change the background color of the radio UI?

Posted: Thu Jun 25, 2015 11:29 am
by LS

I have some-what got the requirements by using the following code:

.ui-radio .ui-btn.ui-radio-off:after {
background: white!important;
border: 2px solid #0000FF;

}


How to change the background color of the radio UI?

Posted: Thu Jun 25, 2015 2:41 pm
by Evgene Karachevtsev

Hello L S,

Sorry, do you need further assistance?


How to change the background color of the radio UI?

Posted: Fri Jun 26, 2015 8:34 am
by LS

can you help me on this Q. http://gsfn.us/t/4r3d8


How to change the background color of the radio UI?

Posted: Fri Jun 26, 2015 8:35 am
by LS

can you help me on this Q. http://gsfn.us/t/4r3d8


How to change the background color of the radio UI?

Posted: Fri Jun 26, 2015 9:06 am
by LS

Yes, I need assistance, I still haven't achieved what I need, as mentioned in the question.


How to change the background color of the radio UI?

Posted: Sun Jun 28, 2015 1:58 pm
by Serhii Kulibaba

Hello,

Please use this CSS:

pre.ui-radio .ui-btn{
background:blue!important;
}
.ui-radio .ui-btn:hover{
background:red!important;
}/pre

just change the colors to yours.