• Resolved michaelrieder

    (@michaelrieder)


    Hi

    I have a little problem, maybe you can help.

    I had to add a css code (z-index:2;) to the banner in order to show my sub menu. Unfortunatelly the close-button doesn’t work. How can I make the close button availble and also other link within the banner.

    Best Regards Michael

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

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

    (@rpetersen29)

    Hi @michaelrieder

    This is because your header includes not only your top menu but the initial bit of content. Because of this, the header is on top of the banner elements which means you can’t click anything on the banner. I think the easiest solution here would be to configure the banner to be at either the very top of the page or in the footer setting. Otherwise we’re going to need some extensive CSS to fix the issue.

    Plugin Author rpetersen29

    (@rpetersen29)

    Sorry meant to add, let me know how you want to proceed. I can look into keeping it in your current position but there may be a bit of a delay on my end.

    Thread Starter michaelrieder

    (@michaelrieder)

    Hi rpeterson

    Thanks for your quick reply. I cannot place the banner at the bottom because there is my “hamburger” menu placed for mobils.

    … and I don’t know how to place it on the very top without hiding my menu.

    Plugin Author rpetersen29

    (@rpetersen29)

    @michaelrieder

    So to place the banner at the top you would need to set position to fixed and put top: 0; in the .simple-banner custom css box. Also get rid of display:none; in the .simple-banner-scrolling box. Then in Website Custom Css you can put:

    @media only screen and (max-width: 55em) {
    div#page {
    margin-top: -55px;
    }
    }
    @media only screen and (min-width: 55em) {
    .site-header-navigation {
    top: 38px;
    }
    }

    Otherwise, if you don’t want to change the position of the banner, i would recommend what you currently have which is no clickable links. The CSS of your theme doesn’t really allow putting anything within.

    This does have me thinking I should add a feature to allow the banner to be inserted in different positions in the page, currently it is just appended after the <body> element. I’ll let you know when I have completed that feature.

    Plugin Author rpetersen29

    (@rpetersen29)

    Hi @michaelrieder

    I just added a feature that allows inserting the banner after different elements in the page. You may be able to use that to achieve what you originally planned to use the banner for. Let me know if you need any help.

    Thread Starter michaelrieder

    (@michaelrieder)

    Thanks rpetersen

    I guess this is a PRO function ??

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘Close button’ is closed to new replies.