Space between images

Posted in: Newspaper
Post count: 3

Hi!
I have a quick question. I’d like the spacing between my images to be smaller, how can I do that?
All of these pictures are in blog posts, and that’s where I’d like the spacing to be smaller between each images.
Here is how it looks like right now:http://furiouslychic.ch/wp-content/uploads/2017/08/Screenshot.jpg

I already took a look in the forum and tried a few things in the CSS, but nothing worked… 🙁

Thanks! 😉

Post count: 22421

Hi,

Please provide a link to your site so I can inspect it and see if a css solution is found.

Thank you!

Post count: 3

Hi,

Here is the link: http://furiouslychic.ch/

Have a nice day 🙂

Post count: 22421

The bottom margin is added for every post image at the same time. Removing from all of the site at once is not a good idea as it will break other layouts. I will provide a code that affects just this one post based on the post ID:

#post-5 .td-post-content img{
margin-bottom:0;
}

Add this code in the theme panel-> custom css box.
If you want to remove the bottom margin for every image in your post sontent, use the code like so:

.td-post-content img{
margin-bottom:0;
}

Thank you!

Post count: 3

Hi!
It works perfectly!
Thanks a lot!

Viewing 5 posts - 1 through 5 (of 5 total)
The forum ‘Newspaper’ is closed to new topics and replies.