PDA

View Full Version : Color of text in Custom Header


Hog Leg
Oct-02-2008, 07:47 PM
I have looked every where I know to look and cannot find the answer. I want to change the color if the "Go Bruins" ,to orange, in my custom header:

<h2>WELCOME TO MY HOME PAGE</h2>
<div align="center">
<h2>Go Bruins</h2>
</div>

Please be gentle, I'm not a programmer and I hope I'm posting in the right area. I would appreciate any help that you may offer.

http://www.tonyspic.com

Barb
Oct-03-2008, 07:40 AM
I have looked every where I know to look and cannot find the answer. I want to change the color if the "Go Bruins" ,to orange, in my custom header:

<h2>WELCOME TO MY HOME PAGE</h2>
<div align="center">
<h2>Go Bruins</h2>
</div>

Please be gentle, I'm not a programmer and I hope I'm posting in the right area. I would appreciate any help that you may offer.

http://www.tonyspic.com

Hi :)

I moved your post to the Customizing forum, FYI.

Do this -- change what you have above to the following:

<div id="myHeader">WELCOME TO MY HOME PAGE</div>
<div id="bruinsText">Go Bruins</div>

Then, in your CSS box in your customization, add this:

#myHeader {text-align: center; font-size: 22px; margin-bottom: 20px;}
#bruinsText {text-align: center; font-size: 22px; color: #FF630F;}

Also, to center your slideshow, add this to your CSS:

#userBio {text-align: center !important;}

Let's start with that and see how you like it :) You can, of course, change the font size in the above to what you want.

Hog Leg
Oct-03-2008, 08:27 AM
Thanks Barb!! I did just what you suggested and it was a success. I appreciate you taking your time to help me fix this. I was not sure where I needed to post.

Thanks again for the help!

Tony
Hi :)

I moved your post to the Customizing forum, FYI.

Do this -- change what you have above to the following:

<div id="myHeader">WELCOME TO MY HOME PAGE</div>
<div id="bruinsText">Go Bruins</div>

Then, in your CSS box in your customization, add this:

#myHeader {text-align: center; font-size: 22px; margin-bottom: 20px;}
#bruinsText {text-align: center; font-size: 22px; color: #FF630F;}

Also, to center your slideshow, add this to your CSS:

#userBio {text-align: center !important;}

Let's start with that and see how you like it :) You can, of course, change the font size in the above to what you want.