Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS Call name tag in CSS Re: Call name tag in CSS

#92255
jamygolden
Member

You could do this:

img[src="images/nav_help.gif"] { display: none; }
/* or */
img[alt="help"] { display: none; }
/* or */
img[name="help"] { display: none; }

Whichever you feel is best.