Notifications
Clear all
Topic starter
Locate your stylesheet.css – catalog/view/theme/default/stylesheet
Find: [PHP]}
/* box products */
.box-product {
width: 100%;
overflow: auto;
}[/PHP]
Now just add:
[PHP]text-align: center;
[/PHP]
Under overflow: auto;
When done it will look like this:
[PHP]}
/* box products */
.box-product {
width: 100%;
overflow: auto;
text-align: center;
}[/PHP]
Posted : 17/02/2020 12:40 pm