Unfortunately I can't show you the page in question at this stage but I can show you the ONLY thing I changed in the code. Note that I have NOT altered the original CSS files in any way.
Here's the way the code for the tabs portion is without the icons and which works fine in IE:
Code:
<ul id="maintab" class="shadetabs">
<li class="selected"><a href="#" rel="tcontent1">World</a></li>
<li><a href="#" rel="tcontent2">CA</a></li>
<li><a href="#" rel="tcontent3">US</a></li>
<li><a href="#" rel="tcontent4">UK</a></li>
<li><a href="#" rel="tcontent5">OZ</a></li>
<li><a href="#" rel="tcontent6">ENT</a></li>
<li><a href="#" rel="tcontent7">WEB</a></li>
</ul>
And this is all I have done to add in the icons. As you can see in the earlier illustrations, works beautifully in Firefox... rubbish in IE...
Code:
<ul id="maintab" class="shadetabs">
<li class="selected"><a href="#" rel="tcontent1"><img src="../images/browser_omniweb.png" alt="World News" hspace="5" border="0" />World</a></li>
<li><a href="#" rel="tcontent2"><img src="../images/icon-cbc.gif" alt="CBC" hspace="3" border="0" />CA</a></li>
<li><a href="#" rel="tcontent3"><img src="../images/icon-nbc.gif" alt="NBC" hspace="3" border="0" />US</a></li>
<li><a href="#" rel="tcontent4"><img src="../images/icon-bbc.gif" alt="BBC" hspace="3" border="0" />UK</a></li>
<li><a href="#" rel="tcontent5"><img src="../images/icon-abc.gif" alt="ABC" hspace="3" border="0" />OZ</a></li>
<li><a href="#" rel="tcontent6"><img src="../images/icon-movie.gif" alt="BBC" hspace="3" border="0" />ENT</a></li>
<li><a href="#" rel="tcontent7"><img src="../images/cursor.png" alt="ABC" hspace="3" border="0" />WEB</a></li>
</ul>
HELP ME!!!!!
Bookmarks