Hi Mario,

[quote]
When I hover over the menu, I can see a little gap between one item
and the next one. Is there a way of getting rid of that space and go
directly from one link to the next one?
[/quote]

Change:
<div id="menu">
<ul>
<li><a href="#">Link</a></li>
<li><a href="#">Link</a></li>
<li><a href="#">Link</a></li>
</ul>
</div>

To:
<div id="menu">
<ul>
<li><a href="#">Link</a></li><li><a href="#">Link</a></li><li><a
href="#">Link</a></li>
</ul>
</div>

For whatever reason if you include a Carriage Return it adds a
non-breaking space between the links.
Tested in FF3.

~Mx
http://www.mxdx.co.uk
______________________________________________________________________
css-discuss [cs...@lists.css-discuss.org]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
List policies -- http://css-discuss.org/policies.html
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/

Reply via email to