Alright, here's my question: is there any way to put 2 CSS Styles (i.e., GLOW, SHADOW, and DROPSHADOW) together in one tag?
<table>
<tr>
<td style="filterROPSHADOW(color=darkred, OffX=10, OffY=5, Positive=1)">
<font style="font-family: Vladimir Script; color: red; font-size: 36px; font-weight: bold">Text Here</font>
</td>
</tr>
</table>
Like where I have the dropshadow going on, is there anyway I can put another one, like a glow, in there? I think there's a way to do it, I just never managed to find out how if there is a way.<font style="font-family:....
I nominate it for "The Most Confused Designer" award.
To answer your question: go back to basics and learn what HTML and CSS are about.typically you don't use styles in the font tag
i would try just sticking all your weird effects in at once
<table>
<tr>
<td style="filterROPSHADOW(color=darkred, OffX=10, OffY=5, Positive=1)">
<font style="font-family: Vladimir Script; color: red; font-size: 36px; font-weight: bold">Text Here</font>
</td>
</tr>
</table>
Like where I have the dropshadow going on, is there anyway I can put another one, like a glow, in there? I think there's a way to do it, I just never managed to find out how if there is a way.<font style="font-family:....
I nominate it for "The Most Confused Designer" award.
To answer your question: go back to basics and learn what HTML and CSS are about.typically you don't use styles in the font tag
i would try just sticking all your weird effects in at once