Ilja
Ilja

Reputation: 46479

Lots of unexpected space appears under the content

I just noticed that on my website I have lots of unexpected space, and I don't know where it is coming from.

Here is my web: http://freshbeer.lv/new/latvian/index.php

As I am unsure where problem comes from I can't post code (if I post all code it would be to damn long)

So if someone can suggest are that's causing a problem, I'll post code here for you.

Upvotes: 0

Views: 260

Answers (3)

Jack
Jack

Reputation: 1472

enter image description here

here is the issue, it was a TYPO only 1 ruined this

    #slideshow-right {
    height: 1511px 
}

it was supposed to be 151px only ; :)

one suggestion use Firebug to such issue they detect problems easily.

hope this will help you in future also.

in-case you don't know : what is firebug and how to use this

Upvotes: 1

w3uiguru
w3uiguru

Reputation: 5895

Remove the height:1511px from style.css line 287

See below image

enter image description here

Upvotes: 2

Smamatti
Smamatti

Reputation: 3931

This is creating pretty much space from your CSS file (style.css):

#slideshow-right {
    height: 1511px 
}

It's working fine if you simply remove the height attribute from that CSS rule.

Upvotes: 1

Related Questions