orchid1
04-21-2003, 12:05 PM
??
|
View Full Version : can we make glowing text with css? orchid1 04-21-2003, 12:05 PM ?? Shaneo 04-21-2003, 12:15 PM Yes you can.. Instead of putting {text-decoration:blah blah;} Use {filter: glow(color=dodgerblue, strength=5); height:0;} Eg. A:link {filter: shadow(color=dodgerblue, strength=5); height:0;} The color and strength can be customized to suit ur site :) orchid1 04-21-2003, 01:56 PM where do I put the {filter: glow(color=dodgerblue, strength=5); height:0;} to make text glow though? I mean what if it isn't a link. Where do I put it? toosweet4u 04-21-2003, 08:56 PM <span style="filter: shadow(color=dodgerblue, strength=5); height:0;">some text</span> BTW, I don't think filters work in Mozilla & Netscape. =/ orchid1 04-21-2003, 10:00 PM no, I mean the css codes. I need some codes that can make the text glow but stay in the heads tags epolady 04-21-2003, 10:45 PM Try <style type="text/css"> p { width:100%; filter:glow(color=#fff000, strength=5); } </style> <p>asdfadfasfd</p> orchid1 04-21-2003, 11:47 PM OMG it works! thank you so much! I've been trying to find that code all day lol One more question, how can I set the text color? right now my text is color black and the it glow yellow around it. How can I make my text color blue? epolady 04-21-2003, 11:53 PM <style type="text/css"> p { width:100%; filter:glow(color=#fff000, strength=5); color: #0000FF; } </style> <p>asdfadfasfd</p> |