Log in

View Full Version : Horizontal scroll ??


newtalker
02-08-2013, 11:48 PM
Hi,

I have the problem of a horizontal scroll bar which keeps coming back. Have tried setting the stylevars, Global-->doc_margin and put it to: top: 0, right: auto. bottom:0, left:auto.

this works for a while, but then it changes back to the figures of 191 for right and left, resulting in a horizontal scroll bar. According to a support member, I have used an image that is 1200 pixels wide in the header so it will correctly overflow if the browser window isn't wide enough.

In conclusion, I need some css [to overwrite] this, and get rid of the horizontal bar. Hope I can get help.

wbr,

Newtalker

CoffeeLovesYou
02-09-2013, 12:32 AM
Can you show us the current code you're using?

newtalker
02-10-2013, 11:02 PM
Can you show us the current code you're using?

Hi,

were do I find this code?

thnx for your reply

newtalker
02-11-2013, 11:45 PM
?? can someone please help me with this?

newtalker
03-19-2013, 04:46 PM
Can someone help me with this issue? Support department told me I could find help here with writing a custom code, so the horizontal scroll disappears.

snakes1100
03-19-2013, 05:01 PM
Read post #2 again or provide a link.

newtalker
03-19-2013, 05:23 PM
the link is
www.irshaad.nl

snakes1100
03-19-2013, 09:13 PM
Looks like something is setting the doc html to 1239px

newtalker
03-19-2013, 10:00 PM
Looks like something is setting the doc html to 1239px

:confused: I have no clue to be honest. Tried looking for it, but no solution yet

snakes1100
03-19-2013, 10:10 PM
chk your stylevars & additionall.css template.

newtalker
03-21-2013, 01:55 AM
chk your stylevars & additionall.css template.

Hi, I already did, the settings seem to be oke. My additionall.css is empty..

Digital Jedi
03-21-2013, 02:27 AM
Hi,

I have the problem of a horizontal scroll bar which keeps coming back. Have tried setting the stylevars, Global-->doc_margin and put it to: top: 0, right: auto. bottom:0, left:auto.

this works for a while, but then it changes back to the figures of 191 for right and left, resulting in a horizontal scroll bar. According to a support member, I have used an image that is 1200 pixels wide in the header so it will correctly overflow if the browser window isn't wide enough.

In conclusion, I need some css [to overwrite] this, and get rid of the horizontal bar. Hope I can get help.

wbr,

Newtalker

How wide is your forum supposed to be? You're 1200px wide header image is currently determining the minimum width of your forum. It can't go any smaller than that. If you want a background that scales to users browsers, you need to use a background image instead. Right now you have one large static image with no flexibility and which will create the a scrollbar for anyone browsing your forum with a screen resolution smaller that 1200px.

snakes1100
03-21-2013, 03:24 AM
DJ
Actually yesterday, he had about 300/400px to the left of the entire forum, including his header image, it was reported from the doc html, which was weird.

newtalker
03-26-2013, 07:33 PM
I really appreciate your answers. So the obvious thing to do would be to use a background image instead of the banner?

sadiq6210
06-09-2013, 05:03 AM
Try to add this in template (additional.css)

html {
overflow-x: auto !important;
}