• Resolved Tameto

    (@tameto)


    hi all,

    I set up a slideshow as header of my front page with “huge it slider” and everything is cool but the header covers part of a navigation menu 🙁

    How to put the header on a lower level??

    to see what i mean go to http://www.saleolio.com and put the pointer on “Prodotti” you will see “Prodotti Salati” showing up while you should also see other options…

    Thanks,

    Tameto

Viewing 6 replies - 1 through 6 (of 6 total)
  • Add these styles to the class .nav-menu:

    position: relative;
    z-index: 18;
    Thread Starter Tameto

    (@tameto)

    Thanks for your reply!!

    Excuse my ignorance… You are talking about the style.css file right??

    Cause in that file I haven’t .nav-menu but i have something similar. this is what i have.

    `/* Navigation Menu */
    .main-navigation {
    margin-top: 24px;
    margin-top: 1.714285714rem;
    text-align: center;
    }
    .main-navigation li {
    margin-top: 24px;
    margin-top: 1.714285714rem;
    font-size: 12px;
    font-size: 0.857142857rem;
    line-height: 1.42857143;
    }
    .main-navigation a {
    color: #5e5e5e;
    }
    .main-navigation a:hover {
    color: #21759b;
    }
    .main-navigation ul.nav-menu,
    .main-navigation div.nav-menu > ul {
    display: none;
    }
    .main-navigation ul.nav-menu.toggled-on,
    .menu-toggle {
    display: inline-block;
    }

    Is this the section you were talking about??

    Thanks again

    T

    Yes, you can add those styles in .main-navigation.

    So this:

    .main-navigation {
       margin-top: 24px;
       margin-top: 1.714285714rem;
       text-align: center;
    }

    Should become:

    .main-navigation {
       margin-top: 24px;
       margin-top: 1.714285714rem;
       text-align: center;
       position: relative;
       z-index: 18;
    }
    Thread Starter Tameto

    (@tameto)

    It didn’t work 🙁

    When I look at your site, it looks like it did? The navigation is now not hidden by the image slider anymore.

    Thread Starter Tameto

    (@tameto)

    oh yeah! Ace!!!

    It must have refreshed the old page for some reason.

    It’s working now.

    Thanks a lot!!

    T

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

The topic ‘Header Covers navigation menu’ is closed to new replies.