Instead of using a graphic I want to use CSS to style my header. for instance, AbbyAteSalad I would want Abby and AteSalad to be different colors and fonts. Can someone explain how btw does anyone know a tall skinny font
You would define a css style for each different font/color and apply it to the word/letters i.e. <span class="redfont">Red</span> <span class="bluefont">Blue</span>however, you should stick to very basic fonts like arial or times because the font will only display correctly if the end user has the font installed on their computer - this is why logos are usually done as a graphic.
BJ, you're asking very elementary questions about issues that should be a part of your knowledge base. I seriously suggest you find some tutorials and dig in. Google is your friend. cheers, gary
Something like this: .blue { color: #0000FF; } .green { color: #008080; } <span class="blue">HelloBlue</span><span class="green">AndGreen</span> Would show: HelloBlueAndGreen