cancel
Showing results for 
Search instead for 
Did you mean: 

Checkbox CSS Class Display Problem

Former Member
0 Kudos

I have a set up a CSS Class that works in design time using the following settings.

.myBeigeCheckBox

{

font-style: italic;

color: beige;

}

The CheckBox display is beige and in italics while in design time. When the app is saved to the server, the display of the checkbox goes back to the original black and regular font.

Any ideas what is happening here?

Accepted Solutions (0)

Answers (2)

Answers (2)

Vidhya
Active Participant
0 Kudos

Hi,

CSS has been moved to server? and also Check the file path.

Please go head as Shankar mentioned kindly check in the Developer tool on your browser.

Regards,

Vidhya.C

shankarsgs
Contributor
0 Kudos

Hi Clark,

Did you check the Developer tools on your browser to see from where the default CSS is overriding?

Also can you try this and see if it works?

.myBeigeCheckBox

{

font-style: italic !important;

color: beige !important;

}

Regards