Image width on homepage not adjusting

Hey guys

I have an issue with an image on my homepage, that doesn’t adjust to the width of the other images, even though it should have the potential to do so. I have checked margins (it only has top and bottom margin), and size of the image. I haven’t limited it, as far as I can tell in any setting. So why isn’t it wider? The site is www.rearviewteater.dk, and I’m using Pro theme.

I hope you can help, or perhaps give some me ideas on what to check. :wink:

Thanks
Astrid

Hi @Naztrida,

Thanks for reaching out.

Please inspect the row of where your image is, then turn off its inner container.

Then please add this CSS to your image’s Element CSS option

$el {
display: block;
}
$el img {
width: 100%;
max-width: none;
}

Thanks!

That did it - thanks! :slight_smile:

You are most welcome. :slight_smile:

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