Links in the content area are indistinguishable from normal text (until you happen to hover over them). It seems a little tricky because we don't want to change the color of things in menus, just in place where the text isn't an obvious link.

I am using the following css as a starting point:

.content p>a, .content p>a:visited, .content p>a:active {
   color: #5493ff;
 }

I'm also using the following css to clean up the User List page

#profile .profile {
 clear: both;
 border: 1px solid #abc;
 padding: .5em;
 margin: 1em 0em;
}

#profile .profile .name {
padding-bottom: 0.5em;
}

#profile .profile .name a {
color: #5493ff;
}

CommentFileSizeAuthor
#2 mnfooty.tar_.gz714 bytesbkat
Support from Acquia helps fund testing for Drupal Acquia logo

Comments

dkocis’s picture

Where in style.css did you put

.content p>a, .content p>a:visited, .content p>a:active {
color: #5493ff;
}

And did you remove any other code?

bkat’s picture

FileSize
714 bytes

I created a sub theme based on Amity Island and set its style sheet to mystyle.css so that drupal will include the amity island style.css and my mystyle.css.

I'll attach my whole css file