How to remove cart addition dropdown in Symmetry theme?

Hi, working on a shop that uses the Symmetry theme and I’d like to remove the notification dropdown generated by adding to cart. I don’t see where in the theme code that mechanism is being activated, I can only find the labels for button copy and such in the window.theme script.

Hi @cndccui ,

Can you share your store url

Hi @cndccui ,

Please go to Actions > Edit code > Assets > styles.css file and paste this at the bottom of the file:

.pageheader--sticky .added-notification {
    display: none !important;
}

Hope it helps!

Thank you for replying but unfortunately this didn’t seem to work and caused a few fields to disappear in the dropdown of our “quick buy” product options.

Hi @cndccui ,

Please change code:

#cart-summary-overlay {
    display: none !important;
}

Hope it helps!