> I'm very new to CSS, and have been toying with the look and feel of my
> poker forum. One problem I have run into is when users post articles
> with links within the article, the link color is too light for the white
> background of the article text.

selectors help

a:link {
   ....  styles all links
}

td a:link {
 .... styles all links inside a table cell
}

table#bla td a:link{
... styles all links inside a cell inside a table with the id "bla"

}

and so  on.

http://www.456bereastreet.com/archive/200509/css_21_selectors_part_1/

--
Chris Heilmann
Blog: http://www.wait-till-i.com
Writing: http://icant.co.uk/
Binaries: http://www.onlinetools.org/
______________________________________________________________________
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/

Reply via email to