Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author Payment Plugins

    (@mrclayton)

    @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

    (@lphd)

    Yes, that would be great. The link to the side is: youwells.com

    Plugin Author Payment Plugins

    (@mrclayton)

    @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.