Hi Janet,
In your case, this has another cause, namely the way that your menu creates the sliding effect.
this code should solve that for you:
a.wpmenucart-contents span.menu_text,
a.wpmenucart-contents span.menu_slide {
display: block !important;
}
Also, if you set the alignment setting to “default” instead of right, it will display in one line with the rest of the menu items.
One note here: because your theme creates that slide-in effect on the fly, this is not compatible with the live-update feature of the cart. Whenever someone adds an item to the cart, it will revert to the default, non-animated version (this is probably what Jeremiah saw). After they navigate to another page, it will animate again…
this makes the none-animated version look a little bit better:
a.wpmenucart-contents > span.cartcontents {
padding-top: 14px;
padding-right: 18px;
}
a.wpmenucart-contents > i {
padding-left: 18px;
}