• Hi Rpetersen29!

    Just want to start by saying thanks for the great plugin!

    My issue seems to be common, but I am running Genesis and was unable to solve the problem with snippets suggested. I did search the forum for genesis, but nothing came up.

    Primary Issue:

    The banner covers the top part of my header (instead of displaying before it) and comes down to the top of the menu covering the top part of my logo. How can I get the banner “above” the header? It is also important to be able to adjust or remove the banner from mobile devices.

    I am running on the Geneis framework with the Aspire child theme (3rd party, Genesis approved). Note that I am removing the banner for the time being, because on all other pages and posts (besides the home page), the banner covers the entire menu and logo.

    Here is my url: https://scottsmoneymachines.com/

    Secondary Inquiry:

    I’d like to use the banner only on my home page, and I see that is a pro feature. Can I toggle the banner on and off in the settings for each page/post?

    Thanks!

    The page I need help with: [log in to see the link]

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author rpetersen29

    (@rpetersen29)

    Primary Inquiry:
    In the custom site css section use this css:

    .site-header:not(.light) {
        padding-top: 55px;
    }

    Adjust the padding number as needed.

    Secondary Inquiry:
    You can toggle the banner on for each page, but not each post at this point. In order to remove from all posts use this is the custom site javascript section:

    document.addEventListener('DOMContentLoaded', function () {
      if (window.location.pathname.includes("post")){
        document.getElementById('simple-banner').remove();
      }
    });

    I’m not sure if “post” is the right phrase, but if not, replace the word “post” with something that is common in the url all of your posts. I’m also looking to include this feature in a future update.

    Thread Starter Scott’s Money Machines

    (@thinkblissful)

    Hey thanks, the first part worked for the front page header of my Genesis theme (for those reading this with the same theme, I set padding to 95).

    I am unable to make the second part work because there is nothing “common” in my post url’s. My permalinks are set to post name, so my posts and my pages use names and look the same based on the titles.

    Plugin Author rpetersen29

    (@rpetersen29)

    So unfortunately there may not be anything you can do with the current plugin configuration to remove it from posts. However, this is a feature that i have been meaning to add to the plugin and is in my backlog. So stay tuned.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Banner Covers Header Menu (Genesis Themes)’ is closed to new replies.