In IE6, I have the code working great.
<code>
<div class="topBar">
<span class="logo"><img name="WCLogo" src="../images/WC% 20Logo.gif" width="70" height="83" alt="" /></span>
<span class="header">insert text here</span>
</div>
</code>
should look like:
logo text
problem is that when viewed in Mac IE5.2 the spans are split and on separate "rows" like this:
logo
text
any ideas why and how to fix it.
I need to design for both because or marketing dept uses Macs.
CSS for this is
<code>
body {
width: 800px;
height: 100%;
margin: 0px;
}
.topBar {
height: 105px;
width: 800px;
font-size: 21px;
font-weight: bold;
}
.logo {
background-color: #000000;
border-right-width: 4px;
border-right-style: solid;
border-right-color: #990000;
height: 105px;
width: 105px;
float: left;
border-bottom-width: 4px;
border-bottom-style: solid;
border-bottom-color: #990000;
}
.header {
font-size: 20px;
text-indent: 20pt;
float: right;
height: 105px;
font-weight: bold;
background-color: #000000;
border-bottom-width: 4px;
border-bottom-style: solid;
border-bottom-color: #990000;
color: #FFFFFF;
width: 695px;
padding-top: 50px;
margin: 0px;
}
</code>
<code>
<div class="topBar">
<span class="logo"><img name="WCLogo" src="../images/WC% 20Logo.gif" width="70" height="83" alt="" /></span>
<span class="header">insert text here</span>
</div>
</code>
should look like:
logo text
problem is that when viewed in Mac IE5.2 the spans are split and on separate "rows" like this:
logo
text
any ideas why and how to fix it.
I need to design for both because or marketing dept uses Macs.
CSS for this is
<code>
body {
width: 800px;
height: 100%;
margin: 0px;
}
.topBar {
height: 105px;
width: 800px;
font-size: 21px;
font-weight: bold;
}
.logo {
background-color: #000000;
border-right-width: 4px;
border-right-style: solid;
border-right-color: #990000;
height: 105px;
width: 105px;
float: left;
border-bottom-width: 4px;
border-bottom-style: solid;
border-bottom-color: #990000;
}
.header {
font-size: 20px;
text-indent: 20pt;
float: right;
height: 105px;
font-weight: bold;
background-color: #000000;
border-bottom-width: 4px;
border-bottom-style: solid;
border-bottom-color: #990000;
color: #FFFFFF;
width: 695px;
padding-top: 50px;
margin: 0px;
}
</code>