Author Topic: [SOLVED] Display Name Style: How do I make these styles:  (Read 2469 times)

Offline Teun

[SOLVED] Display Name Style: How do I make these styles:
« on: August 20, 2007, 07:04:15 pm »
I was wondering if I can make these namestyles with the Display Name Style item:

- Rainbow Every character another colour (red/blue/orange/yellow/purple)
- Shadow: some shadow effect, that works in every browser? (probably impossible)
- Marquee: the name slides from left to right?
- Basically anything other then Bold, Italic, Underlined and a different colour?

Thanks!  O0

Offline Daniel15

Re: Display Name Style: How do I make these styles:
« Reply #1 on: August 24, 2007, 04:55:30 pm »
Quote
- Rainbow Every character another colour (red/blue/orange/yellow/purple)
It's not possible to do a rainbow or similar with this item. The item applies one style to the whole name, and a rainbow would require a separate style for each letter.

Quote
- Shadow: some shadow effect, that works in every browser? (probably impossible)
Yep, that's impossible. Shadow only works in Internet Explorer ;)

Quote
- Marquee: the name slides from left to right?
I have no idea if this is possible using CSS...

Quote
- Basically anything other then Bold, Italic, Underlined and a different colour?
Strikethrough?
Code: [Select]
text-decoration: line-through"overline"?
Code: [Select]
text-decoration: overlineBorders?
Code: [Select]
border: 1px dashed #000000I'm sure there's others, but I can't think of any at the moment. Take a look at w3schools.com for a full CSS reference.

Offline Teun

Re: Display Name Style: How do I make these styles:
« Reply #2 on: August 24, 2007, 10:34:23 pm »
Thanks, that will do! :)