View Full Version : Font Help, Need It Bad.


stolenkiss
03-21-2006, 09:25 PM
Hey everybody. I have a question about font and stuff.

Okay, you know how on some profiles people have their words underlined, but there are two lines underneath the word and sometimes one line is dashed? I've also seen people have different colored underlines. I also see people with different colors for the bold and italic words. I would love to know how to customize my bold, underlined and italic stuff.

Does anyone have the code for all this stuff, or any idea where I can get the codes? It'd be very much appreciated.:)

SSPrincess
03-23-2006, 03:26 AM
Sounds like CSS to me. CSS allows people to customize things like text to have lines underneith it and etc. Lissa's CSS page (http://www.lissaexplains.com/css.shtml) should be what you want.

I hope this helps you. Have a nice day! :)

stolenkiss
03-24-2006, 08:59 PM
Um...that didn't really answer my question...
But thanks anyway.:)

westernrider
03-24-2006, 11:15 PM
Um...that didn't really answer my question...
But thanks anyway.:)

Everything on there is all you need to know about CSS - or not all - but at least all of the basics.

See this:

A:link
{ text-decoration: value; [underline, overline, underline overline, line-through, blink, none] color:#000000; }
A:visited
{ text-decoration: value; [underline, overline, underline overline, line-through, blink, none] color:#000000; }
A:active
{ text-decoration: value; [underline, overline, underline overline, line-through, blink, none] color:#000000; }
A:hover
{ text-decoration: value; [underline, overline, underline overline, line-through, blink, none] color:#000000;

That is part of the code that you use to change around the text. If you want there to be a line through it ect. you would use:

A:link
{ text-decoration: value; line-through color:#000000; } ect. ect.

But to figure out how to put together the whole CSS style sheet you would have to study that page. And if you need any help putting the whole thing together you can always just keep asking questions :)