I have a navigation bar on my website that uses float: right.
Code:
#GlobalNav
{
width: 360px;
height: 34px;
text-align: center;
font-size: 12px;
background:url(../Images/globalNavBar.png);
float:right;
}
When I add a link to the GlobalNav <div> it doesn't work. But if I remove the float, the link works fine. Does anyone know why this happens?