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

    Please go to http://dev.thecgschool.com/products/books/

    At the top of the page, you will see that the header overlaps the title areas on all the pages.

    The code I want to replace is:

    .html_header_top.html_header_sticky #top #wrap_all #main {
    padding-top: 125px;
    }

    with this:

    .html_header_top.html_header_sticky #top #wrap_all #main {
    padding-top: 140px; !important
    }

    I’ve tried adding it to the Quick CSS code, the Child CSS code & even replacing the code itself & it won’t work. Can you help?

    #251798

    Hey Brian!

    You should change the code to following one

    .html_header_top.html_header_sticky #top #wrap_all #main {
    padding-top: 140px!important;
    }

    !important rule is not being applied becuase of wrong placement of semicolon

    Best regards,
    Yigit

    #251803

    Thanks for the quick response. I knew it was something simple.

Viewing 3 posts - 1 through 3 (of 3 total)
  • The topic ‘Change Heading Padding Issue’ is closed to new replies.