URL is www.ahly.com.au
- how to move menu hamburger to right and hide checkout box only in mobile version?
thanks
cecilia
URL is www.ahly.com.au
thanks
cecilia
Hello there,
@media only screen and (max-width: 750px){
header-drawer {
display: flex;
grid-area: icons;
justify-self: end;
}
.header__icons {
padding-right: 40px;
}
.header__icons a#cart-icon-bubble {
display: none;
}
}
Hi @aus-10188 ,
You can follow the instruction below:
@media (max-width: 749px) {
.header {
grid-template-areas: "heading icons left-icon"!important;
}
.header__icon--cart {
display: none !important;
}
}
If you feel like my answer is helpful, please mark it as a SOLUTION. Let me know if you have any further questions.