View Full Version : Removing Annoying Browser Stuff


bncrew
12-08-2005, 05:29 PM
does anyone know of a code i can throw onto my page in order to stop those little icons coming up on the top left side of the images when you hover over them... you know, the i cons for save, print, send etc...

Lydia
12-08-2005, 05:37 PM
Do you want to remove the menu for the purpose of people not taking the images?

Anyways, this is it:

<META HTTP-EQUIV="imagetoolbar" CONTENT="no">

Put it in your head tag.

bncrew
12-08-2005, 05:39 PM
nah, i have that option on already, im just real sick of the sight of those silly little icons there, they kinda ruin the look of the page

benjibo
12-08-2005, 05:39 PM
the code is

<meta http-equiv="imagetoolbar" content="no">

bncrew
12-08-2005, 05:43 PM
I want to remove just the vertical scrollbar ability on my page but i wish to leave the horizontlal one, is this at all possible?

Lydia
12-08-2005, 05:52 PM
I want to remove just the vertical scrollbar ability on my page but i wish to leave the horizontlal one, is this at all possible?

Try putting this is your style sheet:

.active-scroll-bars{ overflow-y: hidden }

Monkey Bizzle
12-08-2005, 05:57 PM
.active-scroll-bars{ overflow-y: hidden }


that is a class... unless you have class="active-scroll-bars" in your HTML then that won't work...

in your style sheet, put:

body
{overflow-y: hidden;}