Hi there,
on my site:
the pictures suddenly to small in my browser…
or on a product:

do you have an idea of the issue?
Thanks
Christian
Hi there,
on my site:
the pictures suddenly to small in my browser…
or on a product:

do you have an idea of the issue?
Thanks
Christian
Hi There,
Most of the images became smaller because of this css.
The css says that all the images’ width will be 25%. So I think you should remove that.
If you want to set some of the images to 25% width then you should add a class to the image. In this example we gave the image a class small-image.
<img src="https://handyklingel24.de/wp-content/uploads/2018/05/xamazon-pay.png.pagespeed.ic.UM7v02LWPt.webp" class="small-image">
after that we can target the css to the images with that class, so only those images will have 25% width.
img.small-image{
width: 25%;
}
Hope it helps. Please send as message if something is not clear. Thanks.
DAM RIGHT 
Thank you!!!
i have make the issue in a css for pictures on a special place.
Now i work with css class 
You are welcome 
This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.