
Originally Posted by
favjola
hi
i installed the template , is good..
I, however, '2 problems
1 on the product page the box on the right go down '! right above the footer
I tried to change the settings (show box min-with on/off) but to not resolved
http://www.ganciotraino.eu/gancio-tr...mamc-p-72.html
-----------
2 even though I changed the layout setting the width of the box, this does not change reality in the frontend!
thanks
The box on the right that you are referring to, is it the one that begins with this text:
A partire da:
If so that is moved by rearranging the code between and including the <div id="cart"> declaration in the:
includes/templates/responsive_sheffield_blue/templates/tpl_product_info_display.php file (or if of a different product type then that particular product type's info display file.)
2) the width of the above box is determined primarily by the content of the box. You can force it to be of a particular size if you want to, but at the moment it expands or contracts based on the content within it. For example in the includes/templates/responsive_sheffield_blue/css/stylesheet.css at or around line 228 you could change
Code:
#productPrices {text-align: center;}
to:
Code:
#productPrices {text-align: center;width: 300px;}
and this would force the box to be larger for this product; however, the next product may have longer text and have to wrap around. Or could use
Code:
#productPrices {text-align: center;min-width: 300px;}
if want the box grow larger as necessary but not to be any smaller than that value.
Trust me there are other ways to accomplish this, and probably far better ways, but that is what I know, and the current limited extent of what I know how to do with CSS. :)
Bookmarks