Skip to main content

Opencart - css - set image thumbnail preview rectangle border to fit the image (ex. square)


Opencart - css - set image thumbnail preview rectangle border to fit the image (ex. square)


Add in your stylesheet.css


/*fix centering the product thumbnails and resizing to square*/
.thumbnail {
display: inline-block;

}
.thumbnails li {
    text-align: center;
}
/*end of fix*/

Comments