Need Help with determining where extra space is coming

Can someone help with determining where this extra space is coming from.

Click on the “Work” from the main nav. Then scroll down a bit and you will see the space highlighted in yellow beneath the thumbnails.

Any help is greatly appreciated.

Hi,

The portfolio container has this applied to it:

position: relative;
height: 3495px;

It’s probably being done by whatever plugin you are using to display the images.
Remove the height declaration and your problem vanished (or override it with !important)

Which plugin are you using to display the images?

How is Javascript calculating the height?

Edit-I’m assuming Pullos CSS he posted is indeed coming from Javascript (I hope it is…)

Aye. At least it wasn’t in the source.

1 Like

It is coming from one of the scripts, most likely the isotope.min.js script, but its not clear how to override it via CSS.

You could try:

height: auto !important;

Now it’s giving off some 6000px height. Odd.

Anyway, do this.

#portfolio-container{height:auto!important;}
2 Likes

Lol. Great minds …

1 Like

Thanks! That worked!

This topic was automatically closed 91 days after the last reply. New replies are no longer allowed.