> Hi,
>
> To fix the height of the <li> tags, display:block and float:left :
>
> #nav ul li {
>     display: block; /* changed */
>     float:left; /* changed */
>     margin-right: 5px; /* added */
>     padding-right: 20px;
>     border: 1px solid yellow;
> }
>
> Then to have it centered, you would need a width for the UL :
>
> #nav ul {
>     margin:0 auto; /* changed */
>     padding:0;
>     list-style-type: none;
>     width:800px; /* added */
> }
>
> Hope this helps.
>

Hi Phillip,

Sorry, but that put everything in a vertical centered list.

Mark
______________________________________________________________________
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
IE7 information -- http://css-discuss.incutio.com/?page=IE7
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/

Reply via email to