Solved

Hey You! Do you know how to move the search icon (on mobile) from left to right?

Noblec
Shopify Partner
54 3 14

Hello, been trying to figure out how to move the search Icon to the right side. Was able to do it on desktop but not sure how to do it on mobile.

Site in development: https://nsimerch.myshopify.com/

Thank you.

Accepted Solution (1)

KetanKumar
Shopify Partner
36845 3636 11978

This is an accepted solution.

@Noblec 

sorry for that issue can you please try this code

1. Go to Online Store->Theme->Edit code
2. Asset->/theme.scss.liquid->paste below code at the bottom of the file.

@media screen and (max-width: 769px) {
.nav-container-left-icons a.site-nav__link.site-nav__link--icon.js-drawer-open-button-top {
    display: none;
}
.nav-container-right-icons li.site-nav__item.medium--hide.small--hide {
    display: inline-block !important;
}
}

After Code Layout

KetanKumar_0-1627871201098.png

 

 

If helpful then please Like and Accept Solution.
Want to modify or custom changes on store Hire me.
- Feel free to contact me on bamaniyaketan.sky@gmail.com regarding any help
Shopify Partner | Skype : bamaniya.sky
PSD to Shopify | Shopify Design Changes | Shopify Custom Theme Development and Desing | Custom Modifications In to Shopify Theme | SEO & Digital Marketing

View solution in original post

Replies 2 (2)

KetanKumar
Shopify Partner
36845 3636 11978

This is an accepted solution.

@Noblec 

sorry for that issue can you please try this code

1. Go to Online Store->Theme->Edit code
2. Asset->/theme.scss.liquid->paste below code at the bottom of the file.

@media screen and (max-width: 769px) {
.nav-container-left-icons a.site-nav__link.site-nav__link--icon.js-drawer-open-button-top {
    display: none;
}
.nav-container-right-icons li.site-nav__item.medium--hide.small--hide {
    display: inline-block !important;
}
}

After Code Layout

KetanKumar_0-1627871201098.png

 

 

If helpful then please Like and Accept Solution.
Want to modify or custom changes on store Hire me.
- Feel free to contact me on bamaniyaketan.sky@gmail.com regarding any help
Shopify Partner | Skype : bamaniya.sky
PSD to Shopify | Shopify Design Changes | Shopify Custom Theme Development and Desing | Custom Modifications In to Shopify Theme | SEO & Digital Marketing
Noblec
Shopify Partner
54 3 14

Legend! Thank you very much and sorry for the late reply. Much appreciated Ketan.