
11-21-2008, 07:35 PM
|
|
Junior Member
|
|
Join Date: Nov 2008
Posts: 4
|
|
Use CSS
Use CSS rules designed specifically for the link in question.
You could have a rule such as .content div a:link { color:#990000;} to control all active links in divs contained in an area assigned with the content class.
Or create a class like .redlink a:link { color:#990000; }
Then apply the class to the div. Obviously you can add other attributes to the rule if need be.
I guess if you were using tables with divs inside you could add the a:link color rule to the table, but to be specific to a div I think you will have to use CSS.
Hopefully I didn't miss anything or misunderstand the question.
|