Reputation: 613
I've obviously screwed up somewhere with the height in my webpage. I'm getting a massive amount of white space at the bottom of the page, way after the content. I can't find the specific problem, I've tried many different things. I thought it was time for someone else to take a look.
Here's the url:
Thanks!
Upvotes: 0
Views: 297
Reputation: 3663
Somewhere on your page, you have this CSS:
img {
width: 110%;
height: 150%;
}
This is making a 1x1 image from PayPal form extremely big, and causing that big space. You should edit that code and make it apply only to the images you want, and not every image in your website.
Upvotes: 0
Reputation: 532
It looks like this is the issue:
img {
width: 110%;
height: 150%;
}
Which is causing this image to enlarge greatly:
<img alt="" border="0" src="https://www.paypalobjects.com/en_US/i/scr/pixel.gif" width="1" height="1">
For images, I tend to use the following:
img {
height: auto;
max-width: 100%;
}
Upvotes: 1