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

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.

1 Like

@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

2 Likes

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