Viewing 8 posts - 1 through 8 (of 8 total)
  • Author
    Posts
  • #228855

    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;
    }

    #228857

    Hey!

    That code worked on my end, can you post a link to your website?

    Cheers!
    Josue

    #228859
    This reply has been marked as private.
    #228863

    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

    #228868

    Hmm I took that line out and its still not working…

    #228875

    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

    #228876

    Man you guys are good! Thanks!

    #228878

    You are welcome, glad we could help :)

    Regards,
    Josue

Viewing 8 posts - 1 through 8 (of 8 total)
  • The topic ‘Change Header font size and weight’ is closed to new replies.