Title: Checkout logos not aligned CSS
Last modified: December 27, 2021

---

# Checkout logos not aligned CSS

 *  Resolved [lphd](https://wordpress.org/support/users/lphd/)
 * (@lphd)
 * [4 years, 8 months ago](https://wordpress.org/support/topic/checkout-logos-not-aligned-css/)
 * [Picture](https://ibb.co/3ddrvDn)
    the logos are not aligned properly, is there
   a css script to adjust it?
 * Best regards

Viewing 3 replies - 1 through 3 (of 3 total)

 *  Plugin Author [Clayton R](https://wordpress.org/support/users/mrclayton/)
 * (@mrclayton)
 * [4 years, 8 months ago](https://wordpress.org/support/topic/checkout-logos-not-aligned-css/#post-15196739)
 * [@lphd](https://wordpress.org/support/users/lphd/) your theme might be adding
   some right margin to the img tag.
 * You would need to share your website URL if you want an exact css.
 * Kind regards
 *  Thread Starter [lphd](https://wordpress.org/support/users/lphd/)
 * (@lphd)
 * [4 years, 8 months ago](https://wordpress.org/support/topic/checkout-logos-not-aligned-css/#post-15198377)
 * Yes, that would be great. The link to the side is: youwells.com
 *  Plugin Author [Clayton R](https://wordpress.org/support/users/mrclayton/)
 * (@mrclayton)
 * [4 years, 8 months ago](https://wordpress.org/support/topic/checkout-logos-not-aligned-css/#post-15198750)
 * [@lphd](https://wordpress.org/support/users/lphd/),
 * Your theme has the following CSS:
 *     ```
       #payment .payment_methods li img {
           float: right;
           max-height: 1.618em;
           padding: 0;
           border: 0;
       }
       ```
   
 * The max-height value in your theme’s css is what’s causing the miss-alignment
   so you need to add an auto width.
 *     ```
       #payment .payment_methods li img {
           float: right;
           max-height: 1.618em;
           padding: 0;
           border: 0;
           width: auto;
       }
       ```
   

Viewing 3 replies - 1 through 3 (of 3 total)

The topic ‘Checkout logos not aligned CSS’ is closed to new replies.

 * ![](https://ps.w.org/woo-stripe-payment/assets/icon-256x256.png?rev=2611337)
 * [Payment Plugins for Stripe WooCommerce](https://wordpress.org/plugins/woo-stripe-payment/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/woo-stripe-payment/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/woo-stripe-payment/)
 * [Active Topics](https://wordpress.org/support/plugin/woo-stripe-payment/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/woo-stripe-payment/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/woo-stripe-payment/reviews/)

 * 3 replies
 * 2 participants
 * Last reply from: [Clayton R](https://wordpress.org/support/users/mrclayton/)
 * Last activity: [4 years, 8 months ago](https://wordpress.org/support/topic/checkout-logos-not-aligned-css/#post-15198750)
 * Status: resolved