Posted - 08/21/2022 : 19:24:36
Hi Patrick, you might want to set some css for the class detailreviewimage Right now, it seems the image is taking on the css you have set for the following
img.catimage, img.prodimage.allprodimages, img.csprodimage.allprodimages { position: absolute; display: block; max-width: 100%; max-height: 100%; left: 0; right: 0; top: 0; bottom: 0; margin: auto; }
in your style.css file.
Using the inspector, I unset the following and the image slid into the top left nicely.
position: absolute; display: block;
Thanks, David
|