• Resolved 150

    (@150-1)


    Hi,

    I’m having an issue with removing the entire .navbar-cart section from my site (ShopIsle theme). I can hide the search thing and the cart thing no problem, but I want to remove it completely so the .navbar-cart div box doesn’t shunt the navigation menu to the left. (I hope that makes sense?!)

    Link to site

    The problem seems to be that the display of the div is already set to “!important” (display: table-cell !important).

    .navbar-cart {
    display: none !important;
    }

    As above, when I try to change it to “display: none !important;” with CSS on the stylesheet, it doesn’t override. So I tried this….

    .navbar-cart {
    display: table-cell !important;
    display: none !important;
    }

    …with the “none !important;” after the “table-cell !important”, but it just won’t work!

    Any help with this would be much appreciated.

Viewing 1 replies (of 1 total)
  • I don’t see the class you’re mentioning within your code, are you trying to make the nav menu span the full width of the theme?

Viewing 1 replies (of 1 total)
  • The topic ‘Cannot remove cart from navbar’ is closed to new replies.