Page 1 of 1

Color of the name in header

Posted: Sun Nov 20, 2016 6:53 pm
by roze
I use tp_3colavantgardeXH as my template.
How can I change the color of the "site title" in the header in white.

The url is

http://Www.perfectsound.org

Re: Color of the name in header

Posted: Sun Nov 20, 2016 7:32 pm
by lck
stylesheet.css line 870

Code: Select all

#tp_headerin h1, #tp_headerin h2, #tp_headerin h3, #tp_headerin h4, #tp_headerin h5, #tp_headerin h6 {
color: #000000; /* change to #fff */
font-family: arial, sans-serif;
} 
or only h1, add below:

Code: Select all

#tp_headerin h1 {
color: #fff;
} 

Re: Color of the name in header

Posted: Sun Nov 20, 2016 7:52 pm
by roze
Ics,

I mean the header as the top from my homepage. http://Www.perfectsound.org.
You can see the image of our choir with black letters "vocalgroup perfect sound". White letters would be nicer.

Re: Color of the name in header

Posted: Sun Nov 20, 2016 11:17 pm
by cmb
Ludwig's suggestions should work fine; you have to refresh your browser after making the changes in the stylesheet.

Re: Color of the name in header

Posted: Mon Nov 21, 2016 9:46 am
by lck
@roze
There is an error in your code:

Code: Select all

#tp_headerin h1, #tp_headerin h2, #tp_headerin h3, #tp_headerin h4, #tp_headerin h5, #tp_headerin h6 {
color: #fff */
font-family: arial, sans-serif;
}
Please change it to:

Code: Select all

#tp_headerin h1, #tp_headerin h2, #tp_headerin h3, #tp_headerin h4, #tp_headerin h5, #tp_headerin h6 {
color: #fff;
font-family: arial, sans-serif;
} 

Re: Color of the name in header

Posted: Tue Nov 22, 2016 7:22 pm
by roze
Ick:

OK: now its the right color!

Thankx.