@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
@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;
}