Log in

View Full Version : what happend to the scrollbar???



krembo
06-26-2008, 08:14 PM
Please help, I can't figure how to enable the horizontal scrollbar in my website:
http://www.agenda.co.il/1/
I was looking for everything but couldn't find the solution. please help. Thanks!:)

radostsguy
06-27-2008, 07:42 AM
Oops. URL didn't work! :mad:

But why should there be a horizontal scrollbar in the first place? Vertical, yes, but horizontal? I have an 8000 page Site, and the only ones who have them are oversized images. These are mounted as popups with JavaScript, and the scrollbars are there because I put "scrollbars=1" in the window properties.

var url_1 = 'http://whatever.com';
var wp = 'fullscreen=1,scrollbars=1,resizable=1,location=1';
win1=window.open(url_1, 'win1', wp);

Other than oversized images, which can be controlled with width='500' or so in the "img src=", about the only thing I can think of that MIGHT cause a horizontal scrollbar would be <table width='120%'> or something, but why would anyone do that? :rolleyes:

Mind you, I suppose that FRAMES might cause this. But then if you use frames, you deserve your fate! :p

krembo
06-27-2008, 08:45 AM
hi,
The url works now, maybe it was a temporary failure.
The problem is that the site is allowing the users to upload their images, but when the image is bigger than the screen, there is no scrollbar, just everything is being "cut" in the middle.
try to go to the link and then resize your browser to 800+-

Thanks

jscheuer1
06-27-2008, 01:57 PM
When I visited yesterday, there was a horizontal bar at 800x600. If you mean uploaded images don't evoke a scrollbar on larger windows when they overflow them, it probably has to do with the style of the element (and/or its parent element(s)) displaying the uploaded image.

Try not to use set width, overflow, or position styles for any of these elements.