View Full Version : Still Having Troubles


CooksChicken
08-11-2003, 04:58 PM
As I had posted before I am trying to find a code that disables the image toolbar that displays over an image when you hover your mouse on the image. To see an example of this visit my site (http://ritamoreno.glorious-day.net) if you put your mouse over the image to the left you may see a little box pop-up/appear in the top left-hand corner. I have tried using Lissa's code to disable image toolbars and it did not help whatsoever. Please help me if you are able to.

Thanks,
Alex

Cherchezlafemme
08-11-2003, 05:34 PM
Check out www.dynamicdrive.com

and

www.javascriptkit.com


Even if you protect your images, you can always take them by saving the web page itself ;)


Oh yes please remove what it says on your signature, it advertising and that's against the rules

stargrl329
08-11-2003, 06:05 PM
lissa's code is for the image right-click.. i think the code you're looking for is the one that disables the IE6 box (save, print, etc.) if that's what you want to get rid of, just add galleryimg="no" to your image tag. :)

pb&j
08-11-2003, 06:19 PM
your frames are pointed to the image itself.

if you put the image onto a webpage by itself, you can then add the coding given to you before to that webpage.
<META HTTP-EQUIV="imagetoolbar" CONTENT="no">

so your image webpage would look like...
<html>
<head>
<META HTTP-EQUIV="imagetoolbar" CONTENT="no">
</head>
<body style="margin:0;">
<img src="ritamoreno.jpg">
</body>
</html>

save that as "ritamoreno.html" then change your frames coding to point to the html page instead of the image itself.

CooksChicken
08-11-2003, 08:17 PM
Thanks for both of your ideas, I combined them together and got what I wanted. Thank you especially for helping me.