operamom
Junior Member   Posts: 13 Registered: 10/7/2003 Status: Offline
|
posted on 1/29/2004 at 04:46 AM |
I've been trying to figure this out all evening. How can I change the
style for just, say, Area4Blocks? I want to change the A:Link, A:Hover,
A:Active, & A:Visited styles, but only for this block, not the rest of
the page.
Thanks in advance.
Laura |
| |
| |
Shawn
Administrator   Posts: 4608 Registered: 10/7/2002 Status: Online
|
posted on 1/31/2004 at 04:14 AM |
Set the td that holds the block content to a class and then set a style for
the links in that class. Example:
<td class="area4"><!-- [block-content] --></td>
then in style.css
.area4 a:link { stuff }
-Shawn |
| |
operamom
Junior Member   Posts: 13 Registered: 10/7/2003 Status: Offline
|
posted on 1/31/2004 at 05:57 AM |
Worked like a charm! Thanks muchly! |
| |