Large images cause layout to break

Solved5.56K viewsCore
0

See attached. Images when they are too large, (over 600px wide) seem to break the layout and cause the right-side column to get pushed out of the content area.

Maybe add a max-width css class to all images?

0

Yes, same thing happening for me in Google Chrome. The UI for replies also becomes stretched and broken (off screen so you can’t click the submit button).

0

Just fixed the issue. you can see the commit here: Commit link

0

Hi Rahul

Can add in a css style to fix this.

.question-content img, .answer-content img{
max-width:100%;
}

That will make it so the image doesn’t break out of the content wrapper frame

–Chad