Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS CSS Dropdown Issue Re: CSS Dropdown Issue

#102991
JPC776
Participant

Try adding this to your css


header nav ul li ul{
position:absolute;
left:-999em;
}
header nav ul li:hover ul {
color:blue;
position:absolute;
top:auto;
left:0px;
display:block;
}

I think this should work to help with the drop down then you can just style as needed.

Hope this helps,
Jason