You misunderstood me. If you can apply a class to the list item but not to the anchor tag, you can use CSS to target all anchor tags inside list items with a certain class value. The markup would look like this:
HTML Code:
<ul id="countrytabs" class="shadetabs">
<li class="classvalue"><a href="external2.htm" rel="countrycontainer">Page 2</a></li>
</ul>
and the CSS like this:
Code:
li.classvalue a {
font-size: 22px;
}
You could also target all anchor tags in the unordered list:
Code:
ul.shadetabs a {
font-size: 22px;
}
Oh, and don't use Dw preview to code or test your sites, use the code view to write the markup and then use a real browser to test the pages.
Good luck!
Bookmarks