Help Needed with Two Bug Fixes in My Shopify Theme

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

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;
    }
}
1 Like

Thanks

1 Like

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;
}
1 Like