When using firebug, I can change the font-size to 15, and the font-weight to 400 instead of 12, and 600, but when I put this in the custom CSS it doesn’t work…
What do I need to put in custom CSS to make those changes?
Thanks!
.main_menu ul:first-child > li > a {
display: block;
font-size: 15px!important;
font-weight: 400!important;
padding: 0 13px;
text-decoration: none;
}
Hey!
That code worked on my end, can you post a link to your website?
Cheers!
Josue
The doesn’t work because you have a typo in your Quick CSS:
http://malmstromwhite.com/wp-content/uploads/dynamic_avia/enfold.css?ver=1
At the bottom there is a font-family property that doesn’t belong to any selector, all the code below it won’t work until this line is removed.
font-family: ‘Open Sans Condensed’, sans-serif;
Best regards,
Josue
Hmm I took that line out and its still not working…
Found another error:
.header_bg {
background: rgba(255,255,255,0.9) !important;
It’s unclosed, replace it by:
.header_bg {
background: rgba(255,255,255,0.9) !important;
}
Cheers!
Josue
Man you guys are good! Thanks!
You are welcome, glad we could help :)
Regards,
Josue