New Shopify Certification now available: Liquid Storefronts for Theme Developers

Remove cart icon

Solved
tareekshawi
Shopify Partner
45 0 6

Hi i want to remove cart icon from header

theme is minion

 

Link: https://trading-worldd.myshopify.com

 

pass: 0

Accepted Solutions (2)
Guleria
Shopify Partner
2787 555 795

This is an accepted solution.

Follow these steps:

1. Go to Online Store -> Theme -> Edit code

2. Open your base.css file and paste the following code below:

 #cart-icon-bubble {
    display: none;
}
-

Need a Shopify developer? Email: guleriathakur43@gmail.com

,
- Skype: navrocks1
- Try GEMPAGES a great page builder
-Advance Search Filter

View solution in original post

PageFly-Richard
Shopify Partner
3675 807 1454

This is an accepted solution.

Hi @tareekshawi 

This is Richard from PageFly - Shopify Page Builder App, I’d like to suggest this idea:
Online Store ->Theme ->Edit code
Assets ->Base.css

 #cart-icon-bubble, #cart-icon-bubble--mobile {
    display: none !important;
}

Hope you find my answer helpful!
Best regards,
Richard | PageFly

 

Please let me know if it works by giving it a Like or marking it as a solution!


PageFly - #1 Page Builder for Shopify merchants.


All features are available from Free plan. Live Chat Support is available 24/7.

View solution in original post

Replies 7 (7)
Guleria
Shopify Partner
2787 555 795

This is an accepted solution.

Follow these steps:

1. Go to Online Store -> Theme -> Edit code

2. Open your base.css file and paste the following code below:

 #cart-icon-bubble {
    display: none;
}
-

Need a Shopify developer? Email: guleriathakur43@gmail.com

,
- Skype: navrocks1
- Try GEMPAGES a great page builder
-Advance Search Filter
tareekshawi
Shopify Partner
45 0 6

@Guleria doesnt work.. 

Guleria
Shopify Partner
2787 555 795

Issue in your css rule.
Your previous media query 

@media (max-width: 992px){

 missing closing tag.

Just before my code close it with curly bracket
this one



-

Need a Shopify developer? Email: guleriathakur43@gmail.com

,
- Skype: navrocks1
- Try GEMPAGES a great page builder
-Advance Search Filter
tareekshawi
Shopify Partner
45 0 6

its works now! but only on desktop not on mobile

Guleria
Shopify Partner
2787 555 795

Update the css with this  

 

 #cart-icon-bubble, #cart-icon-bubble--mobile {
    display: none;
}
-

Need a Shopify developer? Email: guleriathakur43@gmail.com

,
- Skype: navrocks1
- Try GEMPAGES a great page builder
-Advance Search Filter
tareekshawi
Shopify Partner
45 0 6

Thank you so much bro!!

PageFly-Richard
Shopify Partner
3675 807 1454

This is an accepted solution.

Hi @tareekshawi 

This is Richard from PageFly - Shopify Page Builder App, I’d like to suggest this idea:
Online Store ->Theme ->Edit code
Assets ->Base.css

 #cart-icon-bubble, #cart-icon-bubble--mobile {
    display: none !important;
}

Hope you find my answer helpful!
Best regards,
Richard | PageFly

 

Please let me know if it works by giving it a Like or marking it as a solution!


PageFly - #1 Page Builder for Shopify merchants.


All features are available from Free plan. Live Chat Support is available 24/7.