Hey Guys
I seem to be havingsome small problem with my navigation bar. When ever I hover over the members tab the drop down list appears way over to the right. Does anyone know how I can fix this. Ill post my css below.
Thanks in Advance Edmond.
#navbar{
width:900px;
float:right;
padding-top:0px;
font-size:15px;
background-color:#000;
}
#navbar > ul{
list-style-type:none;
float:right;
padding-right:20px;
}
#navbar > ul > li{
width:30px;
display:inline;
border:1px solid #666;
text-align:center;
}
#navbar > ul > li > ul{
display:none;
list-style:none;
margin:0;
padding:0;
}
#navbar > ul > li:hover ul{
display:block;
}