mollie / Magento

Mollie Payments for Magento 1.x
https://www.mollie.com/
BSD 2-Clause "Simplified" License
39 stars 30 forks source link

Increase button size? quick method or tips #163

Closed seansan closed 4 years ago

seansan commented 4 years ago

Hi, we are changing from psp X to Mollie. All is clear and works fine.

1 thing we see on desktop the icons are very very small (almost too small)

Appreciate it

image

Frank-Magmodules commented 4 years ago

HI @seansan ,

Thank you for opening this question. This is not a specific option. The images are externally loaded from Mollie but the image quality allows you to load them larger using CSS.

Depending on your theme you can simply load them with 50px instead of your current-theme size. A CSS code example to overwrite your theme on this can be something as;

.sp-methods label img {
    max-width:50px!important;
}

Disclaimer: This is just an example based on the default RWD theme on how to enlarge the images.

seansan commented 4 years ago

thx we made it this

/* MOLLIE */
.sp-methods label img { max-width:40px!important; }
.sp-methods dt { padding-bottom: 10px; }