Archived topic
Product Description text wrap around image not working
1 reply · Started by Avinash on November 3, 2019
Hi,
In the woocommerce product short description, the text does not seem to wrap around the image(right align) in the mobile version. It seems to work fine in the desktop version though.
The text wrap worked fine in the older theme in both mobile and desktop versions.
(Ref: Wild Caught Img in the product description)
Thanks
Hi there,
add this CSS to make the alignright class apply the float on all device sizes - this applies only to images in the Woo description:
.woocommerce-product-details__short-description img.alignright {
display: inline;
float: right;
margin-left: 1.5em;
}