Image not entire width of page

I am having a problem with the width of my images not expanding the entire page. When on a wide screen, the right side of the image is truncated. This happens on all pages with an image at the top. An example is below. Please help!

Hi @eutaw,

That is because the maximum width of the image is 1600px so in screens with larger resolution than that, the image will not fill the entire width.

As a workaround, try adding this code to the Element CSS of the image element:


$el img {
    width: 100%;
}

Hope this helps.

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