How to relocate payment icons in Broadcast theme?

Hello

Does anybody know how I can move the payment icons from the bottom to the top in the footer?
Thanks :grinning_face_with_smiling_eyes:

Hi @Eskild can you please share your store URL so I can provide a solution here for you!

1 Like

@Eskild

Please share your Sections/footer.liquid file code .

Thanks!

@Eskild

Please add the following code at the bottom of your assets/theme.css file.

@media screen and (min-width:990px) {
.footer__payment {
    margin: 68px 63% 41px;
    text-align: right;
    top: 24px;
    position: absolute;
    float: right;
}
}

Hope this work.

Thanks!

Hii, @Eskild
Kindly share your store URL so,
I can solve it perfectly.
Thank you.

2 Likes

Thank you! :slightly_smiling_face: It worked, but do you know how to make them a little bit bigger?

@Eskild

Please share screenshot waht do you want !

Thanks!

I would like to have the payment icons a little bit bigger, if possible :slightly_smiling_face:

@Eskild

Please add the following code at the bottom of your assets/theme.css file.

.footer__payment .payment-icon {
    width: 60px !important;
    height: 60px !important;
}

Thanks!

1 Like

Now one the VISA electron icon has jumped a line down, is it possible to get It on the same line as the others?

@Eskild

Please share store URL.

Thanks!

https://lulo-dk.myshopify.com
Password: craegi

@Eskild

In my compter screen footer payment icon display same line Please check following screenshot

@Eskild

css for mobile

Please add the following code at the bottom of your assets/theme.css file.

@media only screen and (max-width: 749px){
.footer__payment li { padding: 0 2px 5px 0 !important;}
.footer__payment .payment-icon {
    width: 50px!important;
    height: 50px!important;
}
}

Thanks!