From: Matthew Velic <[EMAIL PROTECTED]>

>problem getting rid of some text and replacing it with the background
>image.  I have been trying a couple of different techniques to get it to
>work in Firefox, but nothing seems to have been working.
>
>http://home.gwu.edu/~mvelic/dccub2/index.html

>#intro span {
>  text-indent: -5000;
>}
>
>#intro h1, h2 {
>  left-indent: -5000px;
>}


Try

#intro span {text-indent: -5000px;} /* value needs the unit */

#intro h1, 
#intro h2 {text-indent: -5000px;} 

The h2 needs the #intro in front of it if you want the property to apply only 
to the intro h2. 

Also, there is no property "left-indent" so you'll need to change the property 
to the correct one.

hth,

~holly 
 
                   
______________________________________________________________________
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/

Reply via email to