Shopify themes, liquid, logos, and UX
We're moving the community! Starting July 7, the current community will be read-only for approx. 2 weeks. You can browse content, but posting will be temporarily unavailable. Learn more
The cart icon eventually overlaps the menu based on the resolution scaling until it hits the mobile switch. I'm not sure why.
I tried these below and changed them from 50% to 100%, which DOES fix it, but it breaks the product pages and makes the sliders (Slick Slider) full page.
@media only screen and (min-width: 1015px)
.medium-up--one-half {
width: 100%;
}
@media only screen and (min-width: 750px)
.medium-up--one-half {
width: 100%;
}
Solved! Go to the solution
This is an accepted solution.
Hello,
Online store > theme > edit code.
Assets > open custom.css file.
At the bottom copy and paste this code:
.site-nav {
display: flex;
gap: 20px;
align-items: center;
justify-content: end;
}
.site-nav .site-nav__link {
padding: 0;
}
Hope this helps,
This is an accepted solution.
Hello,
Online store > theme > edit code.
Assets > open custom.css file.
At the bottom copy and paste this code:
.site-nav {
display: flex;
gap: 20px;
align-items: center;
justify-content: end;
}
.site-nav .site-nav__link {
padding: 0;
}
Hope this helps,
I think that did it! Thank you so much!
You are welcome!