Hi I have this click function to show a :before and for some reason it wont show it ? Here is my code thank you! Also the .cart-toggle:before class is display:none; so it can show.
$( ".cart-toggle" ).click(function() {
$( ".cart-toggle:before" ).show( "slow", function() {
// Animation complete.
});
});
Thank you !