Extra space around header issue

Homepage Community Forums Epik Theme Support Extra space around header issue

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #8889
    bootcampdigital
    Customer

      The header on our site: http://bootcampdigital.com/ has extra black space under the header (between header and nav bar) and to the right of. The image uploaded was the suggested size of 1152 x 164 so I’m not sure why there is extra black. Any suggestions?

      #8898
      Eric
      Customer

        Your image is only 1152px wide, so if anyone views your site on a browser that is wider than 1152px they’ll see whatever the background of your header is. The .head-wrap is what wraps around your header, and since you’re using the black color scheme it is set to show black. Line 2749 –

        .epik-black .head-wrap, 
        .epik-black .welcome, 
        .epik-black .home-feature-bg-dark, 
        .epik-black .author-box, 
        .epik-black .footer-widgets {
            background: none repeat scroll 0 0 #111;
        }

        So the only way to have the entire background of your header to be an image or color is to make edits to the .head-wrap

        You could change the min-height on line 1962 in your css like this if you wanted –

        .header-image .site-title a {
            float: left;
            min-height: 154px;
            width: 100%;
        }

        and that would decrease a little bit of the space directly under the header (right above the nav). The nav section is black and each nav link has it’s own padding.

        Hope this helps.


        I create awesome sites for awesome people! Contact me if interested – ericsanchez1585@gmail.com

        #8903
        bootcampdigital
        Customer

          That solved it. Thank you!

          #8904
          Eric
          Customer

            You’re Welcome 🙂


            I create awesome sites for awesome people! Contact me if interested – ericsanchez1585@gmail.com

          Viewing 4 posts - 1 through 4 (of 4 total)
          • The topic ‘Extra space around header issue’ is closed to new replies.