Forums

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

Home Forums CSS [Solved] list block element align to the right problem Re: [Solved] list block element align to the right problem

#73790
TheDoc
Member

Here’s a start:

Remove

display: inline; AND margin-left:30px;

Add:

Code:
#navigation ul li {
float:left;
list-style:none;
}