PDA

View Full Version : Custom header


dconnelly
Jan-19-2007, 04:00 PM
Okay...here is an interesting question. How can I make the header two words (my name) with different colors and boldness. For example, if the header were to say "tom smith" how can the "tom" be a different color than "smith" and how can smith be bold while "tom" is not bold? :scratch

Pupator
Jan-19-2007, 06:13 PM
Okay...here is an interesting question. How can I make the header two words (my name) with different colors and boldness. For example, if the header were to say "tom smith" how can the "tom" be a different color than "smith" and how can smith be bold while "tom" is not bold? :scratch

You can use html to do this - but really, I think you should just create a banner in photoshop (or similar program) that has your name in the color/style that you want and then use your banner as your header.

dconnelly
Jan-20-2007, 06:07 PM
Anyone want to offer to make one up for me or suggest a free program to make it?

You can use html to do this - but really, I think you should just create a banner in photoshop (or similar program) that has your name in the color/style that you want and then use your banner as your header.

Allen
Jan-20-2007, 06:36 PM
Anyone want to offer to make one up for me or suggest a free program to make it? Try this.

<*div id="myHeader"><*font color=blue>Darrell <*/font>
<*font color=yellow><*b>Connelly<*/b><*/font>
<*/div>
<*div id="myHeader2"> PHOTOGRAPHY<*/div>

Remove the *'s
Al

dconnelly
Jan-20-2007, 07:17 PM
And replaced with something?

Try this.

<*div id="myHeader"><*font color=blue>Darrell <*/font>
<*font color=yellow><*b>Connelly<*/b><*/font>
<*/div>
<*div id="myHeader2"> PHOTOGRAPHY<*/div>

Remove the *'s
Al

Allen
Jan-20-2007, 07:24 PM
And replaced with something? You have this in your header code box. That's what I was refering to.

<div id="myHeader">darrellconnelly</div>
</div> <---- extra closing div?
<div id="myHeader3"> PHOTOGRAPHY</div>

To this
<div id="myHeader"><font color=blue>Darrell </font>
<font color=yellow><b>Connelly</b></font>
<div id="myHeader2"> PHOTOGRAPHY</div>
The changes give you color options.
Al