Hi there!
After quite a while, I figured out how to add icons to my drop down menu on desktop, using the code below, screenshot added below.
I would also like to get these icons on mobile as they’re not showing (screenshot attached), any ideas?
Thanks!
ul#HeaderMenu-MenuList-1 > li {
padding-left: 30px;
}
#HeaderMenu-supplements-view-all {
position: relative;
}
#HeaderMenu-supplements-view-all::before {
content: '';
position: absolute;
left: -20px;
top: 50%;
transform: translateY(-50%);
width: 14px;
height: 14px;
background-image: url('https://cdn.shopify.com/s/files/1/0795/6093/3705/files/view-all.svg?v=1711797818');
background-size: cover;
background-size: contain;
background-repeat: no-repeat;
}