开发者

CSS - my page is too long

There's a ton of blank space at the bottom of my page - http://shop.promaholics.com/? (It loads slow on the dev server, sorry).

I've been through the CSS lots looking for min-height type attributes but can't find any that would be causing this. Perhaps I've gone blind.

Any ideas what I can do to reduce that blank space at the bottom?

开发者_如何学C

Thanks!


its the UL with class level0

right... you have a dropdown menu in "favours" in the menu that is causing the problem... its got too many elements (see if you mouseover "favours" it will be the length of your page).

Its because the script isn't hiding the element - its just moving it 10000 px to the right... :/ can you change this by using display:none;?


Change to this...

/* 2nd Level */

#nav ul { position:absolute; width:15em;  display:none; border:1px solid #452915; }

/* Show menu */

#nav li ul.shown-sub,
#nav li div.shown-sub { display:block; top:39px; z-index:999; }


I tried it with disabling javascript and it removes the blank space at the bottom. I'm not sure in which script it's affecting it yet.


If you remove the class from the main-container col1-layout div then the blank space is greatly reduced - try looking for stray CSS in that class.

Edit: Wait, that's just because the images are no longer displaying inline. Whoops.

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜