Duane Johnson
2005-May-25 21:31 UTC
Anyone know how to remove the print/copy icons that pop over IE images?
In internet explorer there is a "feature" for certain (medium to large) sized images, that pops print / copy icons over top of such an image. Is there a way to disable this with css or some other tag? The icons are blocking some important image on our home page. Thank you, Duane Johnson (canadaduane)
Ramin
2005-May-25 21:34 UTC
Re: Anyone know how to remove the print/copy icons that pop over IE images?
Those icons only show up when you hover over the image for a few seconds. Its an IE "feature" and can''t be controlled using any html/css/javascript. I believe the user has the option to turn it off in the advanced settings. I don''t really remember, I''ve stopped using IE for a while now. On 5/25/05, Duane Johnson <duane.johnson-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote:> > In internet explorer there is a "feature" for certain (medium to > large) sized images, that pops print / copy icons over top of such an > image. Is there a way to disable this with css or some other tag? > The icons are blocking some important image on our home page. > > Thank you, > Duane Johnson > (canadaduane) > _______________________________________________ > Rails mailing list > Rails-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org > http://lists.rubyonrails.org/mailman/listinfo/rails >-- - Ramin http://www.getintothis.com/blog _______________________________________________ Rails mailing list Rails-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org http://lists.rubyonrails.org/mailman/listinfo/rails
Rick Olson
2005-May-25 21:36 UTC
Re: Anyone know how to remove the print/copy icons that pop over IE images?
On 5/25/05, Duane Johnson <duane.johnson-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote:> In internet explorer there is a "feature" for certain (medium to > large) sized images, that pops print / copy icons over top of such an > image. Is there a way to disable this with css or some other tag? > The icons are blocking some important image on our home page.I always add these 2 meta tags to my pages: <meta http-equiv="imagetoolbar" content="false" /> <meta name="MSSmartTagsPreventParsing" content="true" /> Turns off that stupid image toolbar and MS Smart Tags. -- rick http://techno-weenie.net
Nathan Colgate Clark
2005-May-25 21:37 UTC
Re: Anyone know how to remove the print/copy icons that pop over IE images?
> Is there a way to disable this with css or some other tag?Not that I''m aware of. However, it has been my experience that this only appears when you are viewing only the image. i.e. http://www.site.com/logo.jpg When the image is embedded in html, it *shouldn''t* do this. i.e. http://www.site.com/index.html If you want to display only the image, try doing a simple page with the image embedded. <html> <img src="/images/logo.jpg" /> </html>