Using the default display settings, when I view a blog page, the shopping cart widget in the sidebar doesn’t display correctly.
This can also currently be seen on our website:
http://rednovamedia.com/arabella/blog-2/
Hey rednovaMeUp!
Please try adding following code to Quick CSS in Enfold theme options under Styling tab
#top div .widget_shopping_cart .button {
width: 100%;
}
Best regards,
Yigit
Thank you!
I ended up having to add a bit more to get it to match the rounded corners and white outline of the other buttons.
The final code turned out this way:
#top div .widget_shopping_cart .button {
display: block;
float: left;
width: 151px;
text-align: center;
border-color: #ffffff;
border-width: 1px;
border-style: solid;
border-radius: 3px;
margin-bottom: 3px;
}
Just in case someone else could use it!