All Collections
Widgets and Advanced How-to's
How to Make Image Wider Than Column
How to Make Image Wider Than Column

Sometimes it's nice to have an image appear wider than the text column. Here's some CSS to do that.

Charlene Abranilla avatar
Written by Charlene Abranilla
Updated over a week ago

You'll need to identify the block ID of the image by inspecting the code on the page so that you can target particular images.

Add this CSS to Code:

#block-ID.notion-image.normal {
overflow: visible !important;
width: 200% !important;
max-width: initial !important;
}
Did this answer your question?