tailchaser, it appears that you have a "nowrap" where there should be a "wrap". In your stylesheet, look for this code:
Code:
#navMain ul li, #navSupp ul li, #navCatTabs ul li {
display: inline;
white-space: nowrap;
}
and take the #navCatTabs ul li out of that block, putting it by itself making both blocks look like:
Code:
#navMain ul li, #navSupp ul li {
display: inline;
white-space: nowrap;
}
and:
Code:
#navCatTabs ul li {
display: inline;
white-space: wrap;
}
OR..........you could just take the white-space: nowrap out, as it shouldn't be needed anyway, making that block of code look like:
Code:
#navMain ul li, #navSupp ul li, #navCatTabs ul li {
display: inline;
}
Hope this helps.
Oh, by the way.........while I was looking at your stylesheet, I noticed SEVERAL 'slashes' that need to be taken out. For one example, you've got:
Code:
#productDetailsList, #productDetailsList li {
list-style-type:/;
margin-left:/;
padding-left:/;
}
for which if none of that is needed you really should take those out.
Another example is:
Code:
#whatsNew img {
border: /;
}
Having those slashes in there creates a parse error in your css.