Okay
  Public Ticket #1018264
Shopping cart sometimes not visible
Closed

Comments

  •  1
    Daniel started the conversation

    If the width of the webshop is between 1001px and 1080px, the shopping cart is not visible anymore.

    As soon as the width is exactly 1000px, the folded menu appears and the shopping cart is right aligned. If the width is below 1000px, the shopping cart and folded menu has around 20% padding from the right.

  •  8,998
    Tahir replied

    Hey Again,

    It is removed intentionally as Touch Devices dont have a hover state . 

    Add this into the Custom CSS box located in your Salient Options panel (Make Sure there are no red cross in the Box) :

    @media only screen and (max-width: 1080px) and (min-width: 1000px) {
        .cart-outer, body #header-outer[data-full-width="true"] .cart-outer {
            display: block !important;
        }
    }

    Thanks


    ThemeNectar Support Team 

  •  1
    Daniel replied

    But a hover state is not needed, to show the shopping cart - it would only be needed to show the contents but this is not what we were expecting.

    We added the suggested snippet and can confirm it works.