Forum Discussion

Samantha_O's avatar
Samantha_O
Champion
10 years ago

Editing class not in CSS

I am trying to edit a couple of classes that are live in production but are not available in the Skin CSS in Studio.  How can I edit these if they are not in the CSS? 

 

The classes I am trying to edit are:  "MessageStatus" & "lia-link-navigation lia-message-subject"

 

When I try searching for either of these in the CSS they are not there.  Any ideas on how to edit these if they are not in the Style Sheet, or how to add them to the style sheet so that I can edit the class as needed? 

  • Samantha_Othese classes are defined in the parent skin which you are inheriting for your custom skin. The parent/ default lithium skins cannot be changed, but you can certainly override them. You can use !important in your overridden CSS property.

    .MessageStatus{
    Color:#000000 !important;
    }

  • Samantha_Othese classes are defined in the parent skin which you are inheriting for your custom skin. The parent/ default lithium skins cannot be changed, but you can certainly override them. You can use !important in your overridden CSS property.

    .MessageStatus{
    Color:#000000 !important;
    }