Hello, hope some of you are still at work and bored out of your mind...
i am having some problems (as always)... this time with aligning my menu bar (list) to the end of the page...
it looks good on firefox, but IE giving me hell (placing some margins to the left of my menu buttons)
my CSS code
Code:
}
#left_side {
position:relative;
width:150px;
float:left;
padding:5px 2px;
margin:10px 0px 15px 0px;
border:1px solid black;
ul#leftnavlist
{
text-align: left;
list-style: none;
padding: 0;
margin: 0 auto;
width: 100%;
}
ul#leftnavlist li
{
display: block;
margin: 0;
padding: 0;
}
ul#leftnavlist li a
{
display: block;
width: 100%;
padding: 0.1em 0 0.1em 0.1em;
border-width: 1px;
border-color: #ffe #aaab9c #ccc #fff;
border-style: solid;
color: White;
text-decoration: none;
background: #ae1401;
}
#leftnavcontainer>ul#leftnavlist li a { width: auto; }
ul#leftnavlist li#active a
{
background: #cc6600;
color: White;
}
ul#leftnavlist li a:hover, ul#leftnavlist li#active a:hover
{
color: white;
background: #cc6600;
border-color: #aaab9c #fff #fff #ccc;
}
My HTML Code
Code:
<div id="left_side">
<ul id="leftnavlist">
<li><a href="#">Bracelets</a></li>
<li><a href="#">Earrings</a></li>
<li><a href="#">Necklaces</a></li>
<li><a href="#">Sets</a></li>
</ul>
<br>
<ul id="leftnavlist">
<li><a href="#">Men's Jewelry</a></li>
<li><a href="#">Women's Jewelry</a></li>
<li><a href="#">Past Creations</a></li>
</ul>
</div>
 ...i know... it would save everyone some time if i'd hire a real pro ;0)
|