Would someone help me make the header triangle icons I have pointer arrows to in the picture below, without making the basket icon rotate too?
https://clair-de-lune.co.uk/
i used this code, however it make the basket icon spin too, how do i prevent this?
div.header__action-item-content:hover .icon {
transform: rotate(180deg);
color: #98D1C9 !important;
}
Hi!
Try this:
div.header__action-item-content:hover .icon--arrow-bottom {
transform: rotate(180deg);
color: #98D1C9 !important;
}
@WoodyDev thanks mate really appreciate that! helped alot
You’re very welcome!
You just needed to target the specific icon rather than all icons, so you nearly had it 
If you could spare a moment to read through my signature below, I would highly appreciate it 