• Resolved Daniel

    (@marketinggreenpaint)


    Hello,

    On the mobile version of my website, I want to move the search bar to the mobile side bar menu because it is currently sitting on top of my logo on the mobile version.

    hope you can help me.
    Thank you,
    Daniel

    The page I need help with: [log in to see the link]

Viewing 3 replies - 1 through 3 (of 3 total)
  • Thread Starter Daniel

    (@marketinggreenpaint)

    I managed to add the search bar to the mobile side menu (on the mobile version obviously), but I failed miserably to remove it from on top of the logo (on the mobile version only!).

    ??

    Plugin Author wpdreams

    (@wpdreams)

    Hi Daniel,

    I think using a media query custom CSS could be the best and easiest solution, something like this:

    @media only screen and (max-width: 640px) {
        .categories-wrap .asl_m {
            display: none !important;
        }
    }

    It will hide the top search bar on screens lower than 640px. You can of course adjust this value as you like.

    Best,
    Ernest M.

    Thread Starter Daniel

    (@marketinggreenpaint)

    @wpdreams
    Ernest

    Thank you so much for your help!
    Was having a hard time fixing this.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Search bar on the mobile side menu’ is closed to new replies.