Jump to content

[SOLVED] breaking after each li


justinede

Recommended Posts

Hello,

 

I am having some issues with my css. here is my navigation ul.

 

    <div id="nav">
    	<ul class="menu">
            <li class="current"><a href="index.html">Home</a></li>|
            <li><a href="about.html">About</a></li> |
            <li><a href="news.html">News</a></li> |
            <li><a href="contact.html">Contact</a></li> 
        </ul>   
    </div>

 

and here is my css:

 

#nav          { max-width: 960px; background: #3B3B3B;
                            margin: 0 auto 0; text-align:left; color:#FFF }
				  
.menu		  { list-style: none; text-align:left; }

.menu li 	          { display:block; text-align:left; }

.menu li a             {color: #666; text-decoration:none; }

.menu li a:hover 	  { background: #cccccc; color: #fff; }

.menu li.current a  { background: #cccccc; color: #fff; }

 

You can see my site here: http://justinledelson.com/portfolio/mothers/site1/

 

As you can see, it is inserting a break after each li. I dont know how to fix this. Thanks for your help.

Link to comment
Share on other sites

First off, NEVER EVER put anything directly inside an ul that's not a <li>!

 

Second, lists are vertical by nature, add

.menu li { float: left; margin: 2px 20px; }

to take care of that.

 

You'll notice that it ruins makes other things go wrong, the easiest way to get around is by inserting a <div style="clear: both"></div> directly after the UL, there's a hard way to .

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.