- This topic has 1 reply, 2 voices, and was last updated 13 years, 3 months ago by .
Viewing 2 posts - 1 through 2 (of 2 total)
Viewing 2 posts - 1 through 2 (of 2 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 › CSS for Cart widget
Tagged: cart widget, css
Hello
Using version 5.5.5 of the plugin and struggling to find the css for control the look of the cart widget.
Can’t find wp_shopping_cart_style.css and the css in wp_eStore_style.css doesn’t seem to do anything?
Many just need to reduce the width of the widget and remove the border lines around the table cells.
Any ideas?
Thanks
The shopping cart has fluid width so it can adjust to the width of the parent content. If your sidebar is too narrow then the shopping cart wont’ be able to fit because it needs to show 3 columns (the product name, price and quantity amount).
With that said, look for the following CSS in the “wp_eStore_style.css” file:
.shopping_cart {
font-size:12px;
}
When you find it change it to the following to specify a width:
.shopping_cart {
font-size:12px;
width:250px;
}
The CSS of the table comes from your theme’s CSS (eStore does not specify any border for table).