I want to change the location / adjust it on mobile devices for it to look properly aligned from left and right,
Store: shopbreakthrough.com
I want to change the location / adjust it on mobile devices for it to look properly aligned from left and right,
Store: shopbreakthrough.com
Hi,
@media only screen and (min-width: 768px) {
.header__icon–cart {margin-right: -2.5rem !important}
}
Let me know if it work by marking it as a solution.
Didn’t work after I pasted in base.css, any idea why?
Try this one. I decrease a bit.
@media only screen and (max-width: 749px){
.header {
padding: 0px 1rem 0px 1.5rem !important;
}
header-drawer {
padding-left: .8rem;
}
}
But if you really like to take all the space. Try this one, same instruction.
@media only screen and (max-width: 749px){
.header {
padding: 0px !important;
}
header-drawer {
padding-left: .8rem;
}
.header__icons {
padding-right: 0rem;
}
}
This is perfect!! Worked like a charm!
Thank you, Please dont forget to hit Like if my post helped you.