UBB.Dev
Posted By: ADWOFF Link Color - 08/29/2004 8:13 PM
This is probably a sinfully easy question/answer, but I honestly don't KNOW the answer, so I have to ask the question! tipsy

If I want a link color to be different in one area of a regular Web page from the rest of the page, how would I do that? I would also need to have the "visited link" color different from the rest of the page, too.

Remember to KISFSS (keep it simple for stoooopid Sue) and be kind and don't laugh too hard at my question.

Thanks!
Posted By: Ian Spence Re: Link Color - 08/29/2004 10:43 PM
enclose the area in an id.

ie, if this entire area is enclosed in a single table, change to


Now, add this to the top of the page

Code
<style type="text/css">
#special_links a:link, #special_links a:visited, #special_links a:active, #special_links a:hover
{
color: #whatever;
}
</style>
Posted By: ADWOFF Re: Link Color - 08/30/2004 2:01 AM
Thanks, Ian.
© UBB.Developers