instagram kind of menu issue in mobile view

Solved

instagram kind of menu issue in mobile view

momsabhiruchi
Shopify Partner
22 1 3

hello every one! hope everyone are doing well. i have created a custom collection menu in circular form using custom code. but it is not displaying properly in mobile view. can anyone please help me with that?

 

my store details:

https://moortikar.myshopify.com/

store password: rtebra

 

Looking forward to a solution

Thanks in advance

Accepted Solutions (2)

Tech_Coding
Shopify Partner
309 80 71

This is an accepted solution.

Hello @momsabhiruchi 

You can add code by following these steps

1. Go to Online Store -> Theme -> Edit code.
2. Open your theme.liquid file

3. Paste the below code before </body> on theme.liquid
<style>
@media screen and (max-width: 767px){
  #shopify-section-template--23472004399393__circle_menu_xtgqjX ._circle_icon {
     margin: 30px 0 !important;
      overflow: scroll !important;
  }
  #shopify-section-template--23472004399393__circle_menu_xtgqjX .icon_circle-template--23472004399393__circle_menu_xtgqjX {
      margin-left: 0 !important;
   }
}
</style>

Tech_Coding_0-1726817455039.png

my reply helpful? Click Like to let me know!
your question answered? Mark it as an Accepted Solution.

my reply helpful? Click Like to let me know!
your question answered? Mark it as an Accepted Solution.
Shopify UI Developer
Your Coffee Tips adds a little sweetness to my day.

View solution in original post

momsabhiruchi
Shopify Partner
22 1 3

This is an accepted solution.

Thank you so much for the quick response.. it indeed helped me to reach the solution.. thanks once again

View solution in original post

Replies 8 (8)

Sangeetanahar
Explorer
541 36 69

hello @momsabhiruchi 

Delete this code from the section you have done that in.

#shopify-section-template--23472004399393__circle_menu_xtgqjX .icon_circle-template--23472004399393__circle_menu_xtgqjX {
     margin-left: 50px; 
}

result

Murtikaar.png

 

Buy me a Pizza


If this was helpful, hit the like button and accept the solution.
Thanks

Was I helpful?

Buy me a coffee



Want to modify or custom changes or bug fix on store . Or Need help with your store? Or -Want Complete Storefront
Email me [email protected] - Skype: live:sangeetarahuldhiman -Whatsapp: +917009811712
Checkout Some Free Sections Here
momsabhiruchi
Shopify Partner
22 1 3

Thanks for the reply....thank u so much

 

dws_pvt_ltd
Shopify Partner
330 65 92

Hello @momsabhiruchi, Please follow these steps to add this CSS code:
1. Go to your Online Store
2. Click on "Themes"
3. Select "Edit code"
4. Open your custom section file of this section.
5. Update the following code at the end of the file or add new as per your section id you put.

 

#shopify-section-{{ section.id }} ._circle_icon {
  margin: 30px auto;
  overflow: scroll;
}
#shopify-section-{{ section.id }} ::-webkit-scrollbar {
  display: none;
}
#shopify-section-{{ section.id }} {
  -ms-overflow-style: none;
  scrollbar-width: none; 
}
#shopify-section-{{ section.id }} .icon_circle-{{ section.id }} {
   margin: 0px 20px;
}

 

 

 

Screenshot from 2024-09-20 12-27-36.pngScreenshot from 2024-09-20 12-27-45.png

Feel free to reach out if you have any questions or need assistance.
Best Regards,
DWS.

Helpful? then please Like and Accept the Solution.
For any inquiries, please feel free to contact via WhatsApp and Email: [email protected].
For more information visit our website Dolphin Web Solution Pvt Ltd.
momsabhiruchi
Shopify Partner
22 1 3

Thank you so much for the solution

 

dws_pvt_ltd
Shopify Partner
330 65 92

@momsabhiruchi See the latest reply which i edited with new CSS. Please try this.

Helpful? then please Like and Accept the Solution.
For any inquiries, please feel free to contact via WhatsApp and Email: [email protected].
For more information visit our website Dolphin Web Solution Pvt Ltd.

Tech_Coding
Shopify Partner
309 80 71

This is an accepted solution.

Hello @momsabhiruchi 

You can add code by following these steps

1. Go to Online Store -> Theme -> Edit code.
2. Open your theme.liquid file

3. Paste the below code before </body> on theme.liquid
<style>
@media screen and (max-width: 767px){
  #shopify-section-template--23472004399393__circle_menu_xtgqjX ._circle_icon {
     margin: 30px 0 !important;
      overflow: scroll !important;
  }
  #shopify-section-template--23472004399393__circle_menu_xtgqjX .icon_circle-template--23472004399393__circle_menu_xtgqjX {
      margin-left: 0 !important;
   }
}
</style>

Tech_Coding_0-1726817455039.png

my reply helpful? Click Like to let me know!
your question answered? Mark it as an Accepted Solution.

my reply helpful? Click Like to let me know!
your question answered? Mark it as an Accepted Solution.
Shopify UI Developer
Your Coffee Tips adds a little sweetness to my day.
momsabhiruchi
Shopify Partner
22 1 3

This is an accepted solution.

Thank you so much for the quick response.. it indeed helped me to reach the solution.. thanks once again

Tech_Coding
Shopify Partner
309 80 71

your welcome @momsabhiruchi  glad to help you❤️

my reply helpful? Click Like to let me know!
your question answered? Mark it as an Accepted Solution.
Shopify UI Developer
Your Coffee Tips adds a little sweetness to my day.