PDA

View Full Version : How to change post title and link color?


Blogger
10-19-2008, 03:25 PM
Hi, may i know how can i change current post title color and also the link color?

The post title color is black and the link color now is green. I wanna make them both blue.

Can someone help? Thanks.

sarahG
10-19-2008, 03:41 PM
You'll need to edit your CSS but without seeing any markup or any site there's not much else I can say except target the tag or id/class for your title to have a colour of blue and the link colour to be blue too.

Your link will need something like

a:link { color: blue }

Your title could be any number of things.

You'll need to post up a link to your site for us to help you more.

Kevin
10-19-2008, 03:43 PM
Are you using a BloggingTips theme? If so, please let ue know which one :)

Blogger
10-19-2008, 04:25 PM
Are you using a BloggingTips theme? If so, please let ue know which one :)

Ya Kevin, I'm using Evolution Theme by Blogging Tips.

What should i do?

sarahG
10-19-2008, 05:11 PM
For your post title you need to find the rule in your CSS

.title h2 a {

and change the value of the color selector to be the colour you want eg. blue or #00c

For your links find the selector 'a' and change the colour of this to the same as above. ('a' comes after a:focus if it's easier to search for that, however it's near the top of the CSS file).