- This topic has 2 replies, 3 voices, and was last updated 14 years, 9 months ago by .
Viewing 3 posts - 1 through 3 (of 3 total)
Viewing 3 posts - 1 through 3 (of 3 total)
- You must be logged in to reply to this topic.
Support site for Tips and Tricks HQ premium products
by
Tips and Tricks HQ Support Portal › Forums › WP eStore Forum › Tip for Shopping Cart widget and narrow column
Thought I would share this. I have a narrow right hand column in my theme munsongmusic.com and some long product names. What that was doing was pushing the “empty cart” and “delete item” buttons out of the column and into the background with those items in the cart. My fix was to go into wp-cart-for-digital-products/languages/eng.php and changing:
define(“ESTORE_QUANTITY”, “Quantity”);
define(“ESTORE_QUANTITY”, “Qty.”);
It tightens up the spacing between the Quantity column and the Price column.
Really appreciate the tip! I tried it & it helped a little. Now I’m shortening the titles to see if that adds to the fix.
Thanks again!
The shopping cart is pretty flexible and will try to adjust to the container that it is in but if the sidebar is too narrow then it will have a hard time fitting all the 4 columns in.
Thank you for sharing the nice tip Artmuns.
You can also make the “remove item” and “empty cart” buttons smaller by specifying the dimension in the CSS file.
.eStore_remove_item_button{
width:20px;
height:20px;
}
.eStore_empty_cart_button{
width:28px;
height:20px;
}