How do I add VIEW CART button in a cart drawer?

Solved

How do I add VIEW CART button in a cart drawer?

IhorBulhakov
Shopify Partner
20 0 3

So I basically want to add VIEW CART button in a cart drawer. What would be the best way?

IhorBulhakov_0-1712047007912.png

 

https://phonixiems.myshopify.com/()

Accepted Solution (1)

Raj-webdesigner
Shopify Partner
343 83 82

This is an accepted solution.

Follow My Step:-

 

Rajwebdesigner_0-1712048302955.png

 

 <a href="{{ routes.cart_url }}" class="view-cart">
    View Cart
 </a>

 

Like This

Rajwebdesigner_1-1712048385115.png

than add Css in base.css

 

 .view-cart{
    font-family: Montserrat, sans-serif;
    font-size: 20px;
    line-height: 32px;
    font-weight: 100;
    width: 100%;
    display: flex;
    justify-content: center;
    color: #faf7f7;
    background-color: #646464;
    text-decoration: none;
    border-style: solid;
    border-radius: 0;
    margin: 10px 0 0;
    transition-duration: .4s;
    padding-top: 10px;
    padding-bottom: 10px;
}       

 

 

Are you looking for Shopify Developer then your search is over I will help you


If you require further help to optimize your store, please don’t hesitate to reach out.


This contribution will always benefit you and you will get my full help easily and you can contact me easily.


Your Willpower Contribution Link

:-

❤️Tip❤️

Contect On My Mail :-Mail@gmail.com


View solution in original post

Replies 2 (2)

Raj-webdesigner
Shopify Partner
343 83 82

This is an accepted solution.

Follow My Step:-

 

Rajwebdesigner_0-1712048302955.png

 

 <a href="{{ routes.cart_url }}" class="view-cart">
    View Cart
 </a>

 

Like This

Rajwebdesigner_1-1712048385115.png

than add Css in base.css

 

 .view-cart{
    font-family: Montserrat, sans-serif;
    font-size: 20px;
    line-height: 32px;
    font-weight: 100;
    width: 100%;
    display: flex;
    justify-content: center;
    color: #faf7f7;
    background-color: #646464;
    text-decoration: none;
    border-style: solid;
    border-radius: 0;
    margin: 10px 0 0;
    transition-duration: .4s;
    padding-top: 10px;
    padding-bottom: 10px;
}       

 

 

Are you looking for Shopify Developer then your search is over I will help you


If you require further help to optimize your store, please don’t hesitate to reach out.


This contribution will always benefit you and you will get my full help easily and you can contact me easily.


Your Willpower Contribution Link

:-

❤️Tip❤️

Contect On My Mail :-Mail@gmail.com


IhorBulhakov
Shopify Partner
20 0 3

Grazie!!!