• Hello Friends,

    I am a very old user of WordPress but I am not a programmer/coder. I am facing a problem with my current theme which has a top fixed bar with contact details. When the user scrolls down, everything goes smoothly but when the main menu us intercepted by the top bar, it covers the top bar and the contact details are not shown. Is there any way to fix this issue? URL:

    Thank You

    • This topic was modified 4 years, 10 months ago by James Huff. Reason: redundant link removed

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

Viewing 1 replies (of 1 total)
  • Looks like whatever is setting the custom bar is giving it a low CSS Z-Index. That means anything with a higher Z-Index ( such as the navigation bar ) will appear above or on top of your fixed bar. You should be able to add the below custom CSS to

    Appearance -> Customize -> Additional CSS

    .ht-site-header .ht-top-header { z-index: 100 !important; }

    This should overwrite the inline z-index and your fixed bar would appear above or on top of your main navigation when the user scrolls to that point.

Viewing 1 replies (of 1 total)
  • The topic ‘Top Fixed Bar Hiding Behind Menu’ is closed to new replies.