Ok. http://dirtywaternews.com/site

The active link colors and visited link colors, I can't find them in the theme CSS and change them. I've managed to change the hover color but I looked everywhere for the color number for the active and visited and I can't find where it is.

Would it be somewhere in the main drupal folders? If so, why is the hover seperated from the visited and active?

Also, the text seems so large and bulky. Where would I change the size? CSS? (This question comes from not being around my cpu and cannot access my ftp so I can't find out)

Appreciate any help.

Comments

Mihai Chiriac’s picture

If you are talking about the "Dirty Water News is almost here" heading you can style it by playing with these lines in your http://dirtywaternews.com/site/themes/SEOposition/style.css

a, a:visited { border-bottom: 1px dotted #ff0502 color: #ff0502; text-decoration: none; }
a:active, a:hover { border-bottom:1px solid #000000; color:#994D00; text-decoration:none; }

and

#content h2 {
	color: #ff0502;
	font-size: 1.8em;
	font-family: helvetica,verdana,arial,sans-serif;
	line-height: 1em;
	padding-bottom: 0.1em;
	margin-bottom: 0.5em;
	border-bottom: 2px solid #414141;
}

#content h2 a {
	border-bottom: none;
}

Btw, in this line border-bottom: 1px dotted #ff0502 color: #ff0502; you have an error. Remove the color: #ff0502 so it will be only border-bottom: 1px dotted #ff0502; or add a ';' so it will be border-bottom: 1px dotted #ff0502; color: #ff0502;