• Here’s a link to the video with my issues https://imgur.com/a/IVRZ2Sl

    I have some questions about the navbar on mobile

    1: It doesn’t seem to work. Whenever I click on the cart, the person, or the search bar the screen goes white then it reloads the page. How do I stop this from happening.

    2: Is there a way to remove the cart and the person thing so it’s just the search? Thanks.

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

Viewing 1 replies (of 1 total)
  • Saif

    (@babylon1999)

    Hello @kieronbishop,

    1: It doesn’t seem to work. Whenever I click on the cart, the person, or the search bar the screen goes white then it reloads the page. How do I stop this from happening.

    This behaviour only happens in the customizer, if you try accessing the page from a mobile device, the page will reload normally.

    2: Is there a way to remove the cart and the person thing so it’s just the search? Thanks.

    You can add the following CSS snippet by navigating to Appearance > Customize > Additional CSS. ??

    /*  Remove my_account and cart pages from footer menu on mobile  */
    
    @media only screen and (max-width: 768px) {
      .storefront-handheld-footer-bar .columns-3 li:not(.search) {
        display: none;
      }
      .storefront-handheld-footer-bar ul.columns-3 li {
      width: 100%;
    }
    }
    


    Link to image: https://d.pr/i/xFafZn



    Hope this helps!

Viewing 1 replies (of 1 total)
  • The topic ‘Questions about the navigation bar at the bottom on mobile’ is closed to new replies.