Forums

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

Home Forums CSS Video tutorial help Re: Video tutorial help

#68533
AshtonSanders
Participant

Just, FYI:

That spacing is being created by the margin in this css:

p, li {
font-size:1.3em;
line-height:1.4em;
margin-bottom:0.8em;
}

Doesn’t really make any sense, but I’d add:

#nav li {
margin-bottom:0;
}

Then you can remove the -10px hack.