Viewing 7 replies - 1 through 7 (of 7 total)
  • Theme Author Shaped Pixels

    (@shaped-pixels)

    Thank you for reposting your question….
    When you say change the size, you mean wider or shorter?

    Thread Starter clpettitt

    (@clpettitt)

    Thank you for the very quick response.
    Longer.

    Theme Author Shaped Pixels

    (@shaped-pixels)

    sorry, I should have asked this better….longer as in width, or as in taller in height?

    Also, do you have a link to your site if it’s live?

    Thread Starter clpettitt

    (@clpettitt)

    No problem. I should have been more specific.
    I need the banner overlay to be taller. Here is my test web page which shows the issue. The logo I want makes the menu come down below the current banner overlay area.

    My test web page is: http://www.842pw37066.com

    Theme Author Shaped Pixels

    (@shaped-pixels)

    Big thanks for the clarification and the link…The height of the overlay is set to different screen sizes using CSS media queries. It starts with this:

    #banner-overlay,
    #no-banner {
        height: 100px;
    }
    /* Medium devices (tablets, 768px and up)*/
    @media (min-width: 48em) {
    	#banner-overlay,
    	#no-banner {
    	  height: 100px;
      }
    }
    /* Extra large devices (large desktops, 1408px and up) */
    @media (min-width: 88em) {
    	#banner-overlay,
    	#no-banner {
    		height: 110px;
    }

    What you can do is copy the above in the order that it is, then add that to a custom stylesheet, then change the height’s to your specific needs.

    I see you are using Jetpack, so you can use Jetpack’s Edit CSS feature to add your custom CSS code to.

    Thread Starter clpettitt

    (@clpettitt)

    WORKED GREAT! I did as you suggested and height to 150px and the results were exactly as I had wanted.

    Thank you so much for your help.

    Theme Author Shaped Pixels

    (@shaped-pixels)

    You’re very welcome 🙂

Viewing 7 replies - 1 through 7 (of 7 total)

The topic ‘Banner overlay size’ is closed to new replies.