Trying to change font of the nav

Permalink
Right now im am figuring out how concrete5 works. But there is 1 problem, when i try to edit the nav color trough css it doesn't change. Im using the clone elemental theme and this is the code im using

nav{
color: black !important;
}

 
webpresso replied on at Permalink Reply
webpresso
You should write more specific css.

For elemental theme you need to change color like this:

div.ccm-page header nav ul a {
 color: black;
}


You can check the elements in your browser by "inspect element" function. Right click on the object you want to change. This would help a lot to find the right css which is applying the actual color. So you can take this an overwrite it.

Hope this helps.
Roland
eminxd15 replied on at Permalink Reply
Thank you roland it worked!

But there is another problem because when i try to change the background color it wont change.

div.ccm-page .fixed-header header
            {
               box-shadow: 0 1px 3px rgba(0,0,0,0.11) !important;
               background-color: #fff !important;
            }


this is what i use to do it but nothing happens maybe you can help me with too?