How to remove space under images?
- by user2831652
So here's my problem, there's a small white space showing up under the pictures on my tumblr, but the space only shows up under photosets, not under photos.
I have on my CSS:
#post{padding:10px;}
#post img{display:block;}
And then on my html:
{block:Posts}
<div id="post">
{block:Photo}<img src="{PhotoURL-500}"/>{/block:Photo}
{block:Photoset}{Photoset-500}{/block:Photoset}
</div>
{/block:Posts}
But the photoset adds a 3px space under the images, turning the padding to 13px for no reason. Can someone help me figure out this?