Jump to content

[SOLVED] how to change the width of category page


Recommended Posts

in this case it is necessary to increse width of the css styles for objects inside <li> object in product-list.tpl file

 

change float:left; to float:right; in:

#product_list li .right_block {
position: relative;
float: left;
width: 145px;
text-align: right;
}

it's a part of http://www.lovejewelrystore.com/themes/default/css/product_list.css

 

 

and change width: 342px; to width 542px;

#product_list li .center_block {
float: left;
padding: 0 7px;
width: 342px;
border-right: 1px dotted #ccc;
}

the same file as above

Link to comment
Share on other sites

in this case it is necessary to increse width of the css styles for objects inside <li> object in product-list.tpl file

 

change float:left; to float:right; in:

#product_list li .right_block {
position: relative;
float: left;
width: 145px;
text-align: right;
}

it's a part of http://www.lovejewelrystore.com/themes/default/css/product_list.css

 

 

and change width: 342px; to width 542px;

#product_list li .center_block {
float: left;
padding: 0 7px;
width: 342px;
border-right: 1px dotted #ccc;
}

the same file as above

it is done , thank you

Link to comment
Share on other sites

×
×
  • Create New...