Hi, @tristup
I figured out how to edit the colors for the background and buttons for the mini cart and now it looks like this:
If you can assist with adjusting the code to add a space between the view cart and checkout button that would be awesome.
Additionally, I have figured out how to increase the size of the font for item list and dollar amounts. Can you assist with font size increase for the subtotal line? Also, I would still like to know how to shift the search and items count a bit to the right because it still appears cut off from where the cart menu link is positioned.
/* Change mini cart background color */
.widget_shopping_cart_content {
background-color: #f0f0f0;
}
/* Style the “View Cart” button */
.widget_shopping_cart_content .buttons .button.wc-forward {
background-color: #000000;
color: #fff;
border-radius: 5px;
font-size: 13px;
}
}
I used this CSS to change the size of the item count for the cart and search icon size:
.x-cart .inner {
font-size: 15px;
}
.x-icon-search {
font-size: 15px;
}
/* Change mini cart font size */
.cart_list .mini_cart_item {
font-size: 13px;
}