Home Forums WoodMart support forum Product layout breaks

Product layout breaks

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #534340

    sander907
    Participant

    Hello. I’m currently testing out a plugin from woocomerce Product Bundles.
    https://woo.com/products/product-bundles/

    When I apply it to a product. The add to cart buttons move.

    Please help me solve this.

    Thank you.

    #534552

    Luke Nielsen
    Member

    Hello,

    You may try this custom CSS for help :

    .single-product  .cart {
        display: flex;
        gap: 10px;
    }
    
    .single-product .wd-buy-now-btn {
        max-width: 160px;
    }

    Define it in Theme Settings -> Custom CSS -> Desktop CSS area.

    Kind Regards

    #535982

    sander907
    Participant

    Unfortunately. But this doesn’t solve the problem.

    Then he breaks other goods. Which are not created with. Product Bundles

    Is there another option?

    #536088

    Luke Nielsen
    Member

    Hello,

    In general, that plugin changes our structure of the product page so you can try the below one code below:

    .single-product  .cart {
        display: flex;
        flex: unset;
        gap: 10px;
    }

    It should not affect simple products.

    Kind Regards

Viewing 4 posts - 1 through 4 (of 4 total)