Why Does My 'View Cart' Button Only Appear on Mobile? Need Help Making It Show on Desktop Too!

Topic summary

A Shopify store owner using the Yuva theme encountered an issue where the ‘View Cart’ button appeared on mobile but was missing on desktop, despite having the cart drawer enabled.

Troubleshooting Steps:

  • Initial attempts to fix via CSS and Liquid files were unsuccessful
  • Store URL and password were shared for diagnosis

Solution Provided:

  • Add custom CSS code to theme.min.css file (Online Store > Actions > Edit Code > Assets)
  • The code adjusts padding for .yv_side_drawer_title element

Outcome:

  • Initial test appeared unsuccessful and code was removed
  • After retrying the same solution, it worked successfully
  • Another user with the same issue found the thread helpful
Summarized with AI on November 1. AI used: claude-sonnet-4-5-20250929.

@petza You need to add this code in the theme files. For which you need to go to Online Store > Actions (Active theme) > Edit Code > Assets, under assets add the code at the bottom of theme.min.css file.

.yv_side_drawer_title{
padding: 20px 35px !important;
}