GreatestSwordsman
GreatestSwordsman

Reputation: 1185

Large White Space at bottom of website

Every so often when I'm visiting my website, I notice that there is a large white space at the bottom of the site. If I refresh the page, the white space disappears and everything is normal. This is happening quite frequently now, at least once a day when I visit my site.

I have noticed this on Google Chrome (for mac). This problem may happen on other browsers, but I don't use other browsers often.

Here is a screenshot: enter image description here

note the scroll bar ^

My site is http://www.animefushigi.com

Upvotes: 0

Views: 4926

Answers (3)

user3668508
user3668508

Reputation: 11

Just add {overflow:hidden;} in css to your main container holding the info. Worked for me in chrome and firefox :)

Upvotes: 1

Max Z.
Max Z.

Reputation: 811

I had a similar problem when using captcha. It turns out that captcha's PHP script adds an iframe to your page. My firefox did not display the frame, but safari did. Try and add some css to make possible iframes non visible, that did the trick for my website:

iframe { display:none; }

Otherwise try "Inspect element" from the menu in Chrome, which should allow you to debug CSS (but not JavaScript). That should though allow you to find the error and you should then be able to change the CSS to make it look nicer.

PS: Website works great on my Safari & Firefox

Upvotes: 1

ulukai
ulukai

Reputation: 138

Try #master_wrapper{overflow:hidden!important;} in your style sheet :)

Upvotes: 4

Related Questions