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?
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…
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.
#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.
magistudio
Premium Plus
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.. :)
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.. :)