How can I make the images in Part 3 of my site look like those in Part 1?
Someone on another thread kindly posted some CSS which created the effect on Part 1. Why does pasting this as Additional CSS not apply across all pages of my site?
The page I need help with: [log in to see the link]
I recommend asking at https://wordpress.org/support/theme/expound#new-post so the plugin’s / theme’s developers and support community can help you with this. However, also note that your theme hasn’t been updated in nearly 10 years. It might be time to find another.
Part 1 and Part 3 are using different blocks. You have used Gallery on Part 3, which has a different structure, therefore, the same CSS selector won’t work.
Ok, got it. Medium did it. I am left with different sized images. Do I need to recreate the gallery from scratch or is editing images within the media Library suffoicient?
That’s because your images have different dimensions. You can edit and make them all equal or close to equal. Or if you don’t want to do that, add this CSS:
#gallery-8 img {
aspect-ratio: 4/3;
}
The downside is that the images will be a little stretched and the last one (which has more height), will be squished: