Have your say in Community Polls: What was/is your greatest motivation to start your own business?

How to make header icon responsive

Solved

How to make header icon responsive

UTOPIA-PARIS
Excursionist
35 1 6

Hey ! 

 

actually my header icon look like this : 

 

Capture d’écran 2024-11-13 à 23.54.40.png

 

but it's not responsive actually it's look like this in certain dimensions(around 876 x 1810 ) close to tablet ones:

 

Capture d’écran 2024-11-13 à 23.57.34.png

 

Capture d’écran 2024-11-13 à 23.55.47.png

 

how can i make this responsive ? 

 

Thanks !!

Accepted Solution (1)

Dan-From-Ryviu
Shopify Partner
10241 2036 2106

This is an accepted solution.

Hi @UTOPIA-PARIS 

Please add this code to Custom CSS in Online Store > Themes > Customize  > Theme settings. This code will hide text and display only icons on small screen. 

@media (max-width: 900px) {
    .header__icon .small-hide { display: none !important; }
}

 

- Helpful? Like and Accept solution! Or Support me: Buy Coffees
- Reton: Loyalty & Rewards - Earn points through tasks, redeem for discounts, and enjoy exclusive VIP rewards!
- Ryviu - Reviews & QA app: Collect product reviews, import reviews from AliExpress, Amazon, Etsy, Walmart, Shopee, Dhgate and CSV.
- Lookfy Gallery: Lookbook Image: Easy and fast to create Photo Gallery, Lookbook, Shop The Look.
- Reelfy‑Shoppable Videos+Reels: Create shoppable videos to engage customers and drive more sales.
- Enjoy 1 month of Shopify for $1. Sign up now.

View solution in original post

Replies 4 (4)

Dan-From-Ryviu
Shopify Partner
10241 2036 2106

This is an accepted solution.

Hi @UTOPIA-PARIS 

Please add this code to Custom CSS in Online Store > Themes > Customize  > Theme settings. This code will hide text and display only icons on small screen. 

@media (max-width: 900px) {
    .header__icon .small-hide { display: none !important; }
}

 

- Helpful? Like and Accept solution! Or Support me: Buy Coffees
- Reton: Loyalty & Rewards - Earn points through tasks, redeem for discounts, and enjoy exclusive VIP rewards!
- Ryviu - Reviews & QA app: Collect product reviews, import reviews from AliExpress, Amazon, Etsy, Walmart, Shopee, Dhgate and CSV.
- Lookfy Gallery: Lookbook Image: Easy and fast to create Photo Gallery, Lookbook, Shop The Look.
- Reelfy‑Shoppable Videos+Reels: Create shoppable videos to engage customers and drive more sales.
- Enjoy 1 month of Shopify for $1. Sign up now.

UTOPIA-PARIS
Excursionist
35 1 6

hey ! thanks ! is work !

DaisyVo
Shopify Partner
816 103 119

Hi @UTOPIA-PARIS 

 

To complete your requests, please follow these steps:
  1. Go to Shopify Admin > Online Store > Theme > Customize > Theme Settings > Custom CSS https://prnt.sc/i8ljAMlHJUKl
  2. Paste the code provided into the Custom CSS section.

 

@media screen and (min-width: 749px){
.header__icon {
    width: unset !important;
}
.header__icons.header__icons--localization.header-localization details-modal.header__search details summary.header__icon {
    display: flex !important;
}
}

 

 
I hope this helps
 
Best,
 
Daisy

 

Please let us know if our reply is helpful by giving it a Like or marking it as a Solution!

Avada SEO & Image Optimizer - The #1 SEO solution
UTOPIA-PARIS
Excursionist
35 1 6

hey ! thanks this work !