Viewing 2 replies - 1 through 2 (of 2 total)
  • Anonymous User 9055193

    (@anonymized-9055193)

    In your style.css file, try adding:

    img { max-width: 100%; height: auto; }

    You should probably remove any hard-coded widths/heights and control your styles only through an external stylesheet.

    Also, you can try to add important declarations:

    img { max-width: 100% !important; height: auto !important; }

    Notes: this will override ALL img elements. If you wish to target specific divs or other elements, you should define them in your template files and control with style.css.

    https://www.google.com/#q=css+img+max-width+-w3schools

    Thread Starter kylefall

    (@kylefall)

    They are already set, yet the images still overflow and its hidden so some of it is cut off.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘My images are all cut off on the right hand side?’ is closed to new replies.