View Full Version : scroll bars
whitemok
02-07-2007, 09:18 PM
i don't want these scroll bars. i have the same pics on other areas of my site but not with scroll bars. the picture is not bigger than the area size.
here is the link to look:
http://www.hottunaint.com/product.html
PremiumBlend
02-07-2007, 09:49 PM
In your CSS, change:
#content A IMG
{
BORDER-RIGHT: 0px solid;
BORDER-TOP: 0px solid;
DISPLAY: block;
MARGIN: auto;
BORDER-LEFT: 0px solid;
BORDER-BOTTOM: 0px solid
}
to
#content A IMG
{
BORDER-RIGHT: 0px solid;
BORDER-TOP: 0px solid;
DISPLAY: block;
MARGIN: 0;
BORDER-LEFT: 0px solid;
BORDER-BOTTOM: 0px solid
}
by the margin being auto, it will go by browser default and expand the bounds of the image outside the div. You can also set the overflow property of #content to:
#content {
OVERFLOW: hidden;
}
one or both of those should solve it. I haven't tested these, but that should take care of it.
whitemok
02-07-2007, 10:00 PM
that was it. it works till change the content to hidden.
how can i do that with the left side panel?they don't need scroll bars either.
u r good
whitemok
02-07-2007, 10:02 PM
i did the same thing.for that too.
vBulletin® v3.8.2, Copyright ©2000-2012, Jelsoft Enterprises Ltd.