Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #179413

    I found the code below in the forums that fixed the header in responsive mode. But when I enter it into QuickCSS, it overrides the default fonts. When I delete the code below from Quick CSS, the default fonts are restored. Site is: nexuscontentlab.com. Thanks Mike.

    
    @media only screen and (max-width: 767px) {
    .responsive #top #header {
    position: fixed;
    }
    • This topic was modified 11 years, 1 month ago by mhiller.
    #179523

    The problem was with the extra bracket after:

    @media only screen and (max-width: 767px) {

    Thanks, Mike.

    #179688

    Hi!

    Glad you figured it out Mike! But actually one curly bracket is missing in the end of the code. So it should be

    @media only screen and (max-width: 767px) {
    .responsive #top #header {
    position: fixed;
    } }

    Regards,
    Yigit

    #179780

    Arrgh, I should have caught that :-). Thanks!!

Viewing 4 posts - 1 through 4 (of 4 total)
  • The topic ‘Responisve Fixed Header solution changes default fonts’ is closed to new replies.