Reace Posted October 24, 2010 Share Posted October 24, 2010 Hi there, basically I have found a small bug in the 'all products' view.looking at it now , I can see that the botton's and text should be on the right-hand-side of each item.what is causing this?... css.. Link to comment Share on other sites More sharing options...
rocky Posted October 24, 2010 Share Posted October 24, 2010 I've never noticed this issue myself. Did you change the width of the center column? It's hard to help without actually looking at your code, but my guess would be that you need to adjust the following code on line 1449 of global.css (in PrestaShop v1.3.2): ul#product_list li div.center_block { float: left; width: 74% } ul#product_list li div.right_block { float: left; width: 11em; text-align: right; margin-left: 1em; margin-top: 0 } Try adjusting the widths until the problem goes away. Link to comment Share on other sites More sharing options...
Reace Posted October 24, 2010 Author Share Posted October 24, 2010 this is with the default template , I have not edited anything as yet.is there a template builder or plugin for DW for use with this cart?.only removed the items from the cart and added new one'sI am noticing a few odd things , that I will recheck after a new install (without items)also I will see if this happens again. Link to comment Share on other sites More sharing options...
rocky Posted October 25, 2010 Share Posted October 25, 2010 No, I'm not aware of any Dreamweaver plugins for PrestaShop. I just use "Code View" and edit the code manually. Link to comment Share on other sites More sharing options...
Zenith Posted October 25, 2010 Share Posted October 25, 2010 The bug is caused when having HTML tags in the description. It's in the product_list.tpl... {$product.description_short|truncate:360:'...'|strip_tags:'UTF-8'} If you change it to the older code of {$product.description_short|strip_tags:'UTF-8'|truncate:360:'...'} Need to strip the HTML tags before truncating the text, for some reason it was switched around Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now