Jump to content

Resize all page and products icon!


Emanuel91

Recommended Posts

Having a look id do the following in product_list.css in your themes/ folder this would be more specific for the grid on the home page without affecting the rest of the theme.

 

look for

ul.product_list .product-image-container {
  text-align: center; }

replace with i used 10px 


ul.product_list .product-image-container {
  text-align: center;margin:10px; }

hope this helps

  • Like 1
Link to comment
Share on other sites

Having a look id do the following in product_list.css in your themes/ folder this would be more specific for the grid on the home page without affecting the rest of the theme.

 

look for

ul.product_list .product-image-container {
  text-align: center; }

replace with i used 10px 


ul.product_list .product-image-container {
  text-align: center;margin:10px; }

hope this helps

 

thank you, your advice was awesome, but the change is just in main page. Inside the categories everything is in the margin of page. How can do all to be 10px ??

Link to comment
Share on other sites

from what i see in the category the images and margin seem fine how ever in the product page itself there still is a problem

 

try this in product.css

 

 

find

.pb-left-column #image-block {
position: relative;
display: block;
cursor: pointer;
padding: 5px;
border: 1px solid #dbdbdb;
background: white;}

and add the margin:10px see below

.pb-left-column #image-block {
position: relative;
display: block;
cursor: pointer;
padding: 5px;
border: 1px solid #dbdbdb;
background: white;
margin: 10px;
}

best regards

Edited by Leap-IT (see edit history)
Link to comment
Share on other sites

from what i see in the category the images and margin seem fine how ever in the product page itself there still is a problem

 

try this in product.css

 

 

find

.pb-left-column #image-block {
position: relative;
display: block;
cursor: pointer;
padding: 5px;
border: 1px solid #dbdbdb;
background: white;}

and add the margin:10px see below

.pb-left-column #image-block {
position: relative;
display: block;
cursor: pointer;
padding: 5px;
border: 1px solid #dbdbdb;
background: white;
margin: 10px;
}

best regards

 

Unfortunately, this code isn't good. Wasn't any change on the page. Any ideas??

Link to comment
Share on other sites

×
×
  • Create New...