Hi I am trying to style the special product listing so it has box and background image with specials etc. I have it set to display 3 special products per row but since adding the border, it seems to push the third product onto a third line, I know this is an automatic setting it has set at 33%. looked up thread and found that if I change the following in special_index.php it might solve it but no
SHOW_PRODUCT_INFO_COLUMNS_SPECIALS_PRODUCTS == 0 ) {
$col_width = floor(100/$num_products_count)-3;
} else {
$col_width = floor(100/SHOW_PRODUCT_INFO_COLUMNS_SPECIALS_PRODUCTS)-3;
}
I added the following to the css:
.specialsListBoxContents {
border-left:1px solid #2c130f;
border-bottom:1px solid #2c130f;
border-top:1px solid #2c130f;
padding-top:3px;
background-image : url(../images/offer.png);
background-repeat : no-repeat;
position:top;
}
and this is what I get
but cannot get space between boxes and if I put in right border it throws it off and only allows 2 on one line and the third box on another. Any ideas how this can be made more presentable. thanks.


Reply With Quote

