What's your biggest current challenge? Have your say in Community Polls along the right column.

Help Needed with Two Bug Fixes in My Shopify Theme

Solved

Help Needed with Two Bug Fixes in My Shopify Theme

pfenniger
Tourist
17 1 7

Hi,

I recently updated the debutify theme and encountered two bugs that I’m struggling to fix. I’d really appreciate some guidance on these issues:

Header Alignment Issue: After the update, my header is no longer centered. I’ve tried several CSS adjustments, including suggestions from ChatGPT, but nothing has worked so far. Any ideas on how to fix this? Screenshot

Product Page Adjustments:

I want to remove the quantity bar entirely and only display the quantity breaks options.
I’d like to move everything upwards and eliminate unnecessary spacing below the product details for a cleaner look. Screenshot 

Accepted Solution (1)

namphan
Shopify Partner
2019 267 295

This is an accepted solution.

Hi @pfenniger,

Please go to Actions > Edit code > Assets > theme.css file and paste this at the bottom of the file:

@media screen and (min-width: 768px) {
    .header.header--center .header__menu-wrapper {
        justify-content: center !important;
    }
}
Coffee tips fuels my dedication.
Shopify Development Service
PageFly Page Builder Optimize your Shopify store (Free plan available)
Need help with your store? namphan992@gmail.com

View solution in original post

Replies 3 (3)

namphan
Shopify Partner
2019 267 295

This is an accepted solution.

Hi @pfenniger,

Please go to Actions > Edit code > Assets > theme.css file and paste this at the bottom of the file:

@media screen and (min-width: 768px) {
    .header.header--center .header__menu-wrapper {
        justify-content: center !important;
    }
}
Coffee tips fuels my dedication.
Shopify Development Service
PageFly Page Builder Optimize your Shopify store (Free plan available)
Need help with your store? namphan992@gmail.com
pfenniger
Tourist
17 1 7

Thanks

namphan
Shopify Partner
2019 267 295

Hi @pfenniger,

For Product Page Adjustments: Please add code:

.product-quantity .product-quantity__input {
    display: none !important;
}
.product-quantity .product-quantity__button {
    display: none !important;
}
Coffee tips fuels my dedication.
Shopify Development Service
PageFly Page Builder Optimize your Shopify store (Free plan available)
Need help with your store? namphan992@gmail.com