Any help would be much appreciated.
I have my navigation sorted for the mobile which includes the cart icon (treasure chest) on the right. I would like this set up reflected in my desktop version. The cart icon (treasure chest) is not showing. I would like it to show.
See images attached.
This is my css:
.header .header-burger{display:flex} .header-nav, .header-actions {display:none} .header--menu-open .header-menu { opacity: 1; visibility: visible;}
.header .header-burger{display:flex}
.header-nav, .header-actions {display:none}
.header--menu-open .header-menu {
opacity: 1; visibility: visible;
width: 75%;
margin-right: 50%;
box-shadow: -5px 5px 10px #000}
I also used code to replace the standard cart icon with my own icon:
.header .header-actions-action--cart svg {
stroke:transparent!important
}
.header .header-actions-action--cart {
background-image: url(https://static1.squarespace.com/static/622eb7bbc5cdba1674350529/t/634b803da1ccbf4e187e2020/1665892413588/Cart_1.png);
background-size: 25px 25px;
background-repeat: no-repeat;
}