Log in

View Full Version : Blank space next to link



Reidar
04-03-2007, 06:06 AM
http://www.xanga.com/l3loodFist

Next to "Archives" (it's a DIV), there's a long invisible link.

I can get rid of it by adding width:0px; but then the "Archives" menu gets moved to the left, overlapping the other links. Any ideas?

It's not a big hindrance, but just an annoyance I would like to fix.

Veronica
04-03-2007, 01:57 PM
Try making masterdiv and menutitle spans instead of divs.



<span id="masterdiv">

<span class="menutitle" onclick="SwitchMenu('sub3')">Archives</span>


Then set your margin-left for menutitle to 0


.menutitle{
cursor:pointer;
margin-bottom: 5px;
margin-top: -18px;
margin-left: 0px;


Seems to work in IE and FF

Reidar
04-04-2007, 12:27 AM
Thanks for that, but then it's moved to the center and set on a new line. I'd like it to be one row.