You’re welcome!
1. Default home page you may set in Settings > Reading > Your homepage displays. Other pages you may simply add in menu if it is needed.
2. Please add this code in custom.css:
.widget_shopping_cart_content:after {
content: "";
display: block;
right: 25px;
width: 27px;
height: 14px;
background-image: url(images/after-arrow.png);
background-position: center center;
background-repeat: no-repeat;
margin: -1em 0 0 2em;
position: absolute;
top: 0;
}
How to create custom.css you can watch in this tutorial https://www.youtube.com/watch?v=Qok2zRedRMY.
2.1
.woocommerce-mini-cart.cart_list.product_list_widget .bottom-btn a.btn {
border: 1px solid #dddddd;
}
.woocommerce-mini-cart.cart_list.product_list_widget .bottom-btn a.btn.active {
border: 1px solid #ed1c2e;
}
.woocommerce-mini-cart.cart_list.product_list_widget .bottom-btn a.btn.active:hover {
text-decoration: underline;
}
.woocommerce-mini-cart.cart_list.product_list_widget .bottom-btn a.btn:hover{
border-color: #ed1c2e;
}
.product_list_widget img:hover {
opacity: 1 !important;;
}
Regards