I’m having a problem with a huge gap in between the content and the footer ad. I can’t quite figure out how to fix it. I suspect it may be to do with the content on the right as it is generated by another site (indeed.com).
Here’s the link:
http://www.immediatestarts.co.uk/
Much appreciated if anyone can help.
It is actually the Javascript file you are embedding within that is writing an iframe out to the screen with a height of 2000px. I’m guessing you don’t have control over that since it’s coming from a third-party site, so you could try writing a CSS rule on your page to control the iframe, such as
Edit: Alternatively if that isn’t working, you could just set the height of
#indeedjobsitself toheight:1000px, then setoverflow:hiddenon the div as well if you want to prevent the iframe from spilling outside of it.