Sat, 2004-05-01 13:21
In Mozilla, the links in the menu box are spilling out:
nd.net.au/~rage8/gallery.php
It's almost like the width: 100% for the links are ignoring it's container.
Anyone know what else could be wrong?
Sat, 2004-05-01 17:10
#1
Mozilla - contents spill
Hi
A few things.
In your #gmenu a style you have height 50px; (note that lack of a colon) Fixing that makes things worse, so delete the line.
In the same style, you have width:100% and padding:5px
Moz can't cope with both. Give moz a width lower than that in gmenu that allows for the padding, e.g.
#gmenu { float: left; width: 100px; border-top: 1px dashed #ccc; border-left: 1px dashed #ccc; border-right: 1px dashed #ccc; voice-family: "\"}\""; voice-family: inherit; width: 120px; } html>body #gmenu { width: 120px; } #gmenu a { display: block; width: 110px; background: #333; border-bottom: 1px dashed #ccc; padding: 5px; font-weight: bold; font-family: verdana; font-size: 11px; text-align: left; }
Trevor
Sun, 2004-05-02 04:10
#2
Mozilla - contents spill
Worked like a charm thanks.