Wordpress CSS HELP!!!!

Last Update: August 11, 2012
Ok I thought I'd try putting this in here and see if some of you HTML /CSS experts might be able to help me out.

I am using the theme Blogolife for a local business site I created http://boisecleaningservices.com.

All I need to change is the ""SITE TITLE"" Color and then the font to a different style. I have looked up and down my style.css coding and changed just about everything that says site title or header to #000000 and where it say's Boise Cleaning Services in grey will not change.

Can anyone tell me which part of the style.css I need to update to change the site title to black and use a different style font?
Join the Discussion
Write something…
Recent messages
burton4550 Premium
OH wait it didn't seem to work its still in grey, maybe I put it in wrong
#site-title {
margin: 0px 0 10px 0;
text-shadow: 1px 2px 1px #000000;
font-size: 30px;
font-family: Arial;
font-color:#000000;
}

And just so there's no confusion on which part I'm talking about, I'm referring to the "Page" title that says boise cleaning services in grey, not the one at the top that's already in black.
CSmith1 Premium
Just go to the blog dashboard "Appearance / Header" scroll down and you can edit title text color.
mama2karsten Premium
oops... looks like Jay and others already covered that... good luck
CSmith1 Premium
Just so happens that Blogolife is a theme I do test videos on. Go to /wp-admin/themes.php?page=custom-header scroll down and change text color
Apina Premium
it's black here, have you hit F5 or cleared your cache?
magistudio Premium
It is located here:
http://boisecleaningservices.com/wp-content/themes/blogolife/style.css

On line 93:
#site-title
{
margin-top: 0px;
margin-right: 0pt;
margin-bottom: 10px;
margin-left: 0pt;
text-shadow: #000000;
font-size: 30px;

}

Add the following:

font-family: Arial;
font-color:#000000;

Change it to your own font and color.. :)
magistudio Premium
You're welcome.
FYI, I found it by using a Firefox plugin called Web Developer.
http://chrispederick.com/work/web-developer/
CSmith1 Premium
But it's not going to work as the theme has some custom options that must override css details or something
Top