Quote:
Originally posted by Boofo
The following is an example of how I have mine:
vB Code tag: glow
vB Code replacement: <span id="glowtext">{param}</span>
vB Code example: [GLOW]Glow[/GLOW]
vB Code explanation: whatever you want to add
Use {option} ?: no
Go to Styles: [edit style properties] on whatever style you want
Head Insert:
Look for:
Code:
.thtcolor {
COLOR: { tableheadtextcolor};
}
and add after: and before </style>
Code:
#glowtext{
filter:glow(color=FFFF00,strength=3);
width:100%;
}
and there you have it. 
|
The big problem with that is you're stuck with yellow as your glow colour. I tried it that way, then tried this:
vB Code tag: glow
vB Code replacement: <table border="0" cellspacing="0" cellpadding="2" style="filter:glow(color={option},strength=2)"><tr ><td>{param}</td></tr></table>
vB Code example: [GLOW="#fedcba"]glowing nicely[/GLOW]
vB Code explanation: This adds a user specified coloured glow around text.
Use {option} ?: yes
It adds a specified HTML colour code or named coloured glow around text and puts it inside a table - which can be troublesome - but I'm working on a sneaky workaround on the method you posted.