Hi,
I am making a horizontal menu system for a website. So, I have looked at examples of css menu's before I attempted my own.
So, right now the menu is working top level-wise up until it spots my UL tag inside of my LI. My problem is that the colors is working, but it is not lining up to the top level. So in the screenshot I attached, Jobs should be under Candidates. Instead, it's gone to the next line.
How do I fix the position problem for my nested ul?
ul.nav, ul.nav ul
{
display:block;
list-style: none;
margin: 0;
padding: 0;
background-color:#000000;
height:12px;
}
ul.nav li a, ul.nav ul li a
{
text-decoration:none;
color:#00ff33;
}
ul.nav li
{
display:inline;
}
ul.nav li a:hover, ul.nav ul li a:hover
{
background-color:#d20001;
color:#000000;
}
Cheers
3
Contributors
2
Replies
14 Hours
Discussion Span
1 Year Ago
Last Updated
3
Views
Question Answered
Related Article:Importing a html menu into another html doc
is a Web Design, HTML and CSS discussion thread by Landscape that has 4 replies and was last updated 2 years ago.