Log in

View Full Version : Underline Menu Right Border



Irona
10-26-2007, 11:44 AM
Hi, there! I am not an expert in CSS, so I would like to ask you all is there is any way at all in which I could edit the following menu: http://www.dynamicdrive.com/style/csslibrary/item/underline-horizontal-menu/
For instance, I would like to eliminate, if possible, the background image after the last link, in this case, Forums. Thank you very much in advance.

insanemonkey
10-26-2007, 12:40 PM
try adding this to your css..

#underlinemenutwo ul{
margin: 0;
margin-bottom: 1em;
padding-left: 0;
float: left;
font-weight: bold;
width: 100%;
border: 1px solid #DFDFDF;
border-width: 0px 0;
}

and for the forum <li>
try replacing your code liek this..

<div id="underlinemenu">
<ul>
<li><a href="http://www.dynamicdrive.com" title="Home">Home</a></li>
<li><a href="http://www.dynamicdrive.com/style/" title="CSS Library">CSS</a></li>
<li><a href="http://www.dynamicdrive.com/new.htm" title="New">New</a></li>
<li id="current"><a href="http://www.dynamicdrive.com/revised.htm" title="Revised">Revised</a></li>
<li><a href="http://tools.dynamicdrive.com" title="Tools">Tools</a></li>
</div><div id="underlinemenutwo">
<li><a href="http://www.dynamicdrive.com/forums/" title="DHTML Forums">Forums</a></li>
</ul>
</div>

try this and play around with it... just play and you will learn..

Irona
10-26-2007, 03:12 PM
Thanks a lot, but it doesn't work, I've already tried out something similar. Anyway, thank you.