Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #740927

    .html_header_top.html_header_sticky #top #wrap_all #main

    Need to be able to adjust it so that instead of 170px it’s 100px.

    If I add .html_header_top.html_header_sticky #top #wrap_all #main{padding:100px!important}
    there is an issue on the mobile and it was not overriding the @media css code I had tried to put in. Any help is greatly appreciate.

    #741593

    Hey bensondesign,

    So you want the CSS to not apply to mobile? If so then please try this:

    @media only screen and (min-width: 768px) {
    .html_header_top.html_header_sticky #top #wrap_all #main {
      padding:100px!important
    }
    }

    Best regards,
    Rikard

    #741868

    Worked perfect. Thanks.

Viewing 3 posts - 1 through 3 (of 3 total)
  • The topic ‘Issue with header padding’ is closed to new replies.