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

Cart icon overlaps menu responsively - Debut Theme

Solved

Cart icon overlaps menu responsively - Debut Theme

JaredH
Tourist
6 0 0

The cart icon eventually overlaps the menu based on the resolution scaling until it hits the mobile switch. I'm not sure why.

 

https://betterblends.com/

 

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%;
}

 

 

Accepted Solution (1)

dannyelo
Shopify Partner
188 38 39

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,

 

❤️ Enjoyed my Shopify customization assistance? If I've helped you achieve your goals, consider showing your appreciation with a coffee tip! It means the world to me! ️ Thank you!
Buy me a coffee here

View solution in original post

Replies 3 (3)

dannyelo
Shopify Partner
188 38 39

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,

 

❤️ Enjoyed my Shopify customization assistance? If I've helped you achieve your goals, consider showing your appreciation with a coffee tip! It means the world to me! ️ Thank you!
Buy me a coffee here
JaredH
Tourist
6 0 0

I think that did it! Thank you so much!

dannyelo
Shopify Partner
188 38 39

You are welcome!

❤️ Enjoyed my Shopify customization assistance? If I've helped you achieve your goals, consider showing your appreciation with a coffee tip! It means the world to me! ️ Thank you!
Buy me a coffee here