Content wider than screen for mobile

Hello,

Google Search Console has the error message that my content wider than screen.

This is the site:

And this is the code of my content-attachment.php which is displaying the image:

<a href="<?php echo wp_get_attachment_url( get_the_ID() ); ?>" ><?php echo wp_get_attachment_image( get_the_ID(), 'full', "", array( "class" => "img-responsive" ) ); ?> </a>

Did you know what is wrong and how can I fix that?

Michael

Hello Michael,

Thanks for writing in!

The image has a width and height attribute that is wider than the smaller screen. You may need to add an additional CSS code in the X > Theme Options > Global CSS (http://prntscr.com/evui3r)

.img-responsive {
  max-width: 100% !important;
}

Hope this helps. Please let us know how it goes.

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