- This topic has 19 replies, 7 voices, and was last updated 9 years, 8 months ago by .
- 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 › Template code for Compact Cart Display Option 2?
Tagged: Compact Cart
The following CSS should align the compact cart to the right.
.eStore_compact_cart4{
float: right;
}
It worked. Thank you!
Me again ***hands on face***.
Still using compact_cart4 – When the value of the items in the cart is more that 2 figures, for example; 3 Items £174.00 View Cart, the number of items runs into the image of the little basket.
You can recreate this by going to:
[http://www.jenjenscupcakery.co.uk/cakes/cakes-for-adults/cakes-for-him/]
Add the first cake to the basket twice and you’ll see what I mean.
Thanks,
Jen.
You can apply the following CSS tweak to counter that:
.eStore_compact_cart4_container{
min-width: 240px;
}
Thank you.