Hi guys this is the usual, I'm totally stuck on this and would really appreciate any help you could give.
This is example of my problem - I have this on other sites too.
<div id="nav_strip_blue">
<div class="float_right" >
<a href="#SkipNav" title="Skip navigation" accesskey="s"><span>Skip navigation</span></a><span>|</span>
<a href=" target="_blank">BIFM HOME</a><span>|</span>
<a href=" target="_blank">FM WORLD HOME</a><span>|</span>
<a href="/Contact_form.asp">CONTACT US</a>
</div>
</div>
#nav_strip_blue A {
COLOR: #fff;
text-decoration:none;
font-size:90%;
height: 22px;
vertical-align:middle;
text-align:center;
padding: 4px 5px 0px 5px;
background-color:#2a327a;
display:inline-block;
display: -moz-inline-box; /*the line causing the problem*/
margin-left: 15px;
border-left:#2a327a solid 1px;
border-right:#2a327a solid 1px;
font-weight:bold;
}
There was a problem with FF inline-box display (not lineing it correctly in FF) which I fixed with the: display: -moz-inline-box;
line.
So now it works in IE 6 and FF but not in IE7
Here is the link,
Anyone has any ideas? I'd really appreciate as I'm totally stuck on it.
Cheers
This is example of my problem - I have this on other sites too.
<div id="nav_strip_blue">
<div class="float_right" >
<a href="#SkipNav" title="Skip navigation" accesskey="s"><span>Skip navigation</span></a><span>|</span>
<a href=" target="_blank">BIFM HOME</a><span>|</span>
<a href=" target="_blank">FM WORLD HOME</a><span>|</span>
<a href="/Contact_form.asp">CONTACT US</a>
</div>
</div>
#nav_strip_blue A {
COLOR: #fff;
text-decoration:none;
font-size:90%;
height: 22px;
vertical-align:middle;
text-align:center;
padding: 4px 5px 0px 5px;
background-color:#2a327a;
display:inline-block;
display: -moz-inline-box; /*the line causing the problem*/
margin-left: 15px;
border-left:#2a327a solid 1px;
border-right:#2a327a solid 1px;
font-weight:bold;
}
There was a problem with FF inline-box display (not lineing it correctly in FF) which I fixed with the: display: -moz-inline-box;
line.
So now it works in IE 6 and FF but not in IE7
Here is the link,
Anyone has any ideas? I'd really appreciate as I'm totally stuck on it.
Cheers