• Resolved rync

    (@alecryncavage)


    On the mobile version of my site, mediawhisper.com, the banner blocks the site logo and menu button. Currently, I put into the CSS to disable the banner on mobile, but you can view the issue here: See Img Do you recommend a way to code negative space above the mobile menu where the banner could appear. I am not very good at this thing thus I’m requesting help.

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

Viewing 1 replies (of 1 total)
  • Plugin Author rpetersen29

    (@rpetersen29)

    Hi @alecryncavage ,
    Sorry for the delay, it was a holiday weekend. The best way to code in negative space would be to add padding-top or margin-top to you header class “sticky-menu”. You can use @media media queries to specify mobile or desktop based on width. For example:

    @media (min-width: 768px)
    .sticky-menu {
        padding-top: 20px;
    }
    
    • This reply was modified 5 years, 2 months ago by rpetersen29.
    • This reply was modified 5 years, 2 months ago by rpetersen29.
    • This reply was modified 5 years, 2 months ago by rpetersen29.
Viewing 1 replies (of 1 total)
  • The topic ‘Banner blocks logo and menu on mobile’ is closed to new replies.