Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

CSS Filter GURU required

Status
Not open for further replies.

joelwenzel

Programmer
Jun 28, 2002
448
0
0
I am learning css but I'm having a terrible time learning filters. I have copied code from pages where I can see the filters working but for some reason they don't work for me. The only thing I've gotten to work is the follow code.

this works

<span style=&quot;width: 357; Filter: Glow(Color=#00FF00, Strength=20)&quot;>Glowing Text</span>

but this doesn't

<STYLE type=text/css>
#banner {
border-top:1 solid silver;
border-bottom:1 solid silver;
letter-spacing: 35pt;
margin: 15px 0px 0% 0px;
color: blue ;
text-indent: 30%;
width: 100%;
Filter: Glow(Color=#00FF00, Strength=20);

font: Bolder 20pt;
padding-bottom: 5px;
}
</style>
<div id=banner>glowing text</div>

Any ideas?

Also, I noticed that for the one that works, if I remove the width: 357;, it stops working. Why?
 
hmm...
works fine here both ways in IE 6.0
======================================

if (!succeed) try();
-jeff
 
Well, thanks for trying it out. I guess I'll have to give er another go
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top