I created a skin and a html based page in the skin. In one table cell, there will be a html/text module that will have a dark background with text links typed in. I want the links to be white text. (before and after being clicked). We'll call this the LeftPane
Elsewhere in the page, the background will be white, and there will be links there too. I want them to be blue.
There is already the 4 default css classes for making links blue (A:link, A:Hover, A:Visited, A:Active)
I want to create a CSS class that will format ONLY the links in the LeftPane as white.
This is the important part: Can I create this class such that I can apply it to the table-cell instead of each link (<a class="mywhite"> MyLinkText </a>)
The reason for this is I am creating a commercial skin and I don't want to require the user to edit the html for each link in this section that has the dark background just so the links there will be different from the standard for the page.
Sorry for the long post. Thanks for reading...