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;
}
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