Forums

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

Home Forums CSS Navigation Menu – Making Drop Down Links Invisible & Visible On Mouseover? Re: Navigation Menu – Making Drop Down Links Invisible & Visible On Mouseover?

#106116
Senff
Participant

That’s because of there’s a left margin of 25% on #navigation li:first-child.

Easy to override that for your submenu with:

#navigation li ul li:first-child {
margin-left: 0;
}