PDA

View Full Version : How to change a color of a title in PHP?


boron
02-19-2007, 06:32 AM
http://amazingindiaexperience.info

Above site uses a b2evolution script and it's PHP. How can I change a color of a title?

rjp
02-19-2007, 07:57 AM
Which title? That looks like a Wordpress site, so modify the template stylesheet for the appropriate HTML tag.

boron
02-19-2007, 08:23 AM
Which title? That looks like a Wordpress site, so modify the template stylesheet for the appropriate HTML tag.

A title of a website which is: Amazing India . It is a b2evolution blog script. OK, will try with template stylsheet.

camuk19
02-19-2007, 10:29 AM
Yeah its nothing to do with the PHP itself, look into the stylesheets.

Mystic
02-19-2007, 11:02 AM
I used to use b2evo for my blog couple of years back. But, got fedup of its lack of expandability.
I think you want to change the colour of Amazing India at the top.
I believe this is what you need to do :
Edit the file : http://amazingindiaexperience.info/skins/andreas01/andreas01.css

You would find this
#header h1 {
width: 250px;
margin: 0 0 10px 0;
float: left;
}

Add this line
color: #ffffff;
Here replace #ffffff with the hexadecimal code of the desired colour. ffffff will return white.