Hi!
Derek | mobileStorm schrieb:
> I have added a <ul> element to each section and it looks OK is IE. But when
> I view the page in firefox, it adds a little '>>' before each category that
> looks like crap.
> Here is the page in case you forgot: pumpupthevalium.com
Derek, you have in yout html for example:
<div class="sidewrap">
<ul>
<li><h2>Theme Switcher</h2>
<ul>
<li class="ts_current_theme">
<a href='http://www.pumpupthevalium.com?ts_theme=default'>blue</a>
</li>
<li >
<a href='http://www.pumpupthevalium.com?ts_theme=green'>green</a>
</li>
<li >
<a href='http://www.pumpupthevalium.com?ts_theme=red'>red</a>
</li>
</ul>
</li>
</ul>
</div>
This makes <h2>Theme Switcher</h2> a list item, therefor it is formatted like an <li>.
If you shorten your code like this:
<div class="sidewrap">
<h2>Theme Switcher</h2>
<ul>
<li class="ts_current_theme">
<a href='http://www.pumpupthevalium.com?ts_theme=default'>blue</a>
</li>
<li >
<a href='http://www.pumpupthevalium.com?ts_theme=green'>green</a>
</li>
<li >
<a href='http://www.pumpupthevalium.com?ts_theme=red'>red</a>
</li>
</ul>
</div>
then you get rid of your problem. Do the same with all the other .sidewrap
HTH
Lothar
--
www.markupmarks.de
www.design-dragon.de
--
No virus found in this outgoing message.
Checked by AVG Anti-Virus.
Version: 7.0.308 / Virus Database: 266.8.4 - Release Date: 27.03.2005
______________________________________________________________________
css-discuss [EMAIL-REMOVED]]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/