Posted on: 08/28/02 06:53pm
By: Anonymous (Anonymous)
I've created a block that links to static pages in my site... I would like these links to be a certain color (and would also like ALL hyperlinks to be the same color across all pages). Where can I change this? thanks
Changing default font color for regular links
Posted on: 08/29/02 12:28am
By: Dirk
This is best done with CSS in a stylesheet (style.css), e.g.
a:link {
color: green;
}
will make all your links green.
bye, Dirk