|
CSS Vertical List Menu
Hi all,
I have used the CSS Vertical List Menu from this website as a foundation to build my own one. Everything works great except than it renders a lot different in IE8 than in Firefox3.
In Firefox the full menu is visible in the page but in IE it is longer than the window and you have to scroll down to see the lower items.
I've tried different paddings and fonts and sizes without success.
Any ideas?
Anita.
Here's my CSS code:
.glossymenu{
list-style-type: none;
margin: 5px 0;
padding: 0px;
width: 150px;
border: 1px solid #9A9A9A;
border-bottom-width: 0;
}
.glossymenu li a{
background: white url(../navmenu/images/blackgloss1.jpg) repeat-x bottom left;
font: bold 12px Verdana, sans-serif, Arial, Helvetica;
color: #FFFFFF;
display: block;
width: auto;
padding: 5px 0;
padding-left: 10px;
text-decoration: none;
}
.glossymenu li a:visited, .glossymenu li a:active{color: white;}
Last edited by Anita2105; 05-17-2009 at 01:55 PM..
|