Site logo

Archived topic

add to cart not centered

3 replies · Started by Heinrich on April 9, 2020

Viewing posts 1–4 of 4

hi team, on a shop page we have a snippet in place which ads the "add to cart" function. in desktop anything fine, but in mobile the "quantity.buttons-added" is not centered. screenshot attached. any idea?

screenshot mobile

following css is in place:

/*menge direkt auf der shop seite eingeben - zentrieren */
.quantity.buttons-added {
display: flex;
justify-content: center;
align-items: center;
}

snippet:

/**
* Bestellmenge auf der WooCommerce Archivseite
*/
add_filter( 'woocommerce_loop_add_to_cart_link', 'quantity_inputs_for_woocommerce_loop_add_to_cart_link', 10, 2 );
function quantity_inputs_for_woocommerce_loop_add_to_cart_link( $html, $product ) {
if ( $product && $product->is_type( 'simple' ) && $product->is_purchasable() && $product->is_in_stock() && ! $product->is_sold_individually() ) {
$html = '<form action="' . esc_url( $product->add_to_cart_url() ) . '" class="cart" method="post" enctype="multipart/form-data">';
$html .= woocommerce_quantity_input( array(), $product, false );
$html .= '<button type="submit" class="button alt">' . esc_html( $product->add_to_cart_text() ) . '</button>';
$html .= '</form>';
}
return $html;
}

Hi there,

Give this CSS a shot:

@media (max-width: 768px) {
    .do-quantity-buttons div.quantity {
        justify-content: center;
    }
}

its working perfect.
tks a lot

You're welcome :)

This archived topic is closed to new replies.