I am trying to make a bar that will show up on top of sites that belong to company I work for.
I first developed it for firefox and then came in horror when saw it in IE. It's completely broken.
The bottom line problem is how to make IE spill it's content when it's height is set?
Is there a fix for this, or should I take a different approach?
Here is the code for my current bar:
#rurbar{
font-family:"lucida grande",tahoma,verdana,arial,sans-serif;
font-size:12px;
background:#111111;
color:#FFFFFF;
border-bottom:1px solid #999999;
position:absolute;
height:25px;
top:0;
left:0;
width:100%;
overflow:visible;
}
I have some dropdown menus in this bar so I can't use overflow:hidden.