Site logo

[Resolved] Center align add to cart field and button

Home Forums Support [Resolved] Center align add to cart field and button

Home Forums Support Center align add to cart field and button

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

    Hi,

    I’m struggling with centered alignment on single product page with Add to cart and field on mobile display.

    Here is what I have actually :

    @media (max-width: 768px) {
        .woocommerce div.product .product_title,
        .price,
        .posted_in,
    	.woocommerce div.product form.cart {
    		text-align: center;
    	}
    }

    but I can’t figure out how to align field & Add to cart button

    Thanks your excellent support, as usual !!

    #812869
    Tom
    Lead Developer
    Lead Developer

    Hi there,

    Try adding this CSS as well:

    @media (max-width: 768px) {
        .woocommerce div.product form.cart div.quantity,
        .woocommerce div.product form.cart .button {
            float: none;
            display: inline-block;
        }
    
        .woocommerce div.product form.cart .button {
            margin-top: -4px;
        }
    }
    #812902
    Alexandre

    Excellent,

    Thanks a lot

    #813125
    Tom
    Lead Developer
    Lead Developer

    You’re welcome 🙂

Viewing 4 posts - 1 through 4 (of 4 total)
  • You must be logged in to reply to this topic.