How to center featu…
 
Notifications
Clear all

How to center featured products in module CSS

1 Posts
1 Users
0 Reactions
151 Views
(@cipher5)
Posts: 152
Member Admin
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
Share: