I'm having a problem with IE, of course, and can't figure how to float li classes within a div that has a background image with rounded corners that span the width of the div.
I am working on a navbar for a forum which contains nav links to the left and a search bar to the right. I have images to simulate rounded corners positioned around the div. My problem is that whenever I try to float my nav links over one of the corners, it totally screws up their position. This only occurs in IE, no problems w/ Firefox or Chrome at all.
HTML:
<span class="corners-top"><span></span></span>
<ul class="navlinks">
<li class="icon-home">
</li>
<div id="search-box">
<form action="{U_SEARCH}" method="get" id="search">
<fieldset class="search">
<input name="keywords" id="keywords" type="text" class="inputbox" />
<button class="button2" value="{L_SEARCH}" type="submit" />Search</button><br />
</fieldset>
</form>
</div>
</ul>
<span class="corners-bottom"><span></span></span>
</div>
CSS:
/* Nav links
----------------------------------------*/
.navlinks {
margin: 0px;
padding: 0px;
float: left;
}
.navlinks #search-box {
float: right;
padding: 0px;
padding-top: 5px;
padding-right: 5px;
}
/* Rounded corners
----------------------------------------*/
span.corners-top, span.corners-bottom, span.corners-top span, span.corners-bottom span {
font-size: 1px;
line-height: 1px;
display: block;
height: 25px;
background-repeat: no-repeat;
}
span.corners-top_forum {
background-image: url;
background-position: 0 0;
margin: 0 -20px;
}
span.corners-top_forum span {
background-image: url;
background-position: 100% 0;
}
span.corners-bottom_forum {
background-image: url;
background-position: 0 100%;
margin: 0 -20px;
}
span.corners-bottom_forum span {
background-image: url;
background-position: 100% 100%;
}
Some code has been trimmed..
This works perfectly in every browser besides IE, any suggestions why, besides the fact that IE is dumb?
Any help would be greatly appreciated, thanks.