How to add a space between these two elements? (Image in thread)

Hi,

In my footer I have a disclaimer. In mobile view ONLY the disclaimer is too close to the currency selector below.

How can I introduce a line break only in mobile view to improve the look of the footer?

Thanks

Hello @AndreHairRight

Can you share your store URL?

Hi @AndreHairRight ,

This is Richard from PageFly - Landing page builder, I’d like to suggest this idea:
Step 1: Go to Online Store->Theme->Edit code
Step 2: Asset->/theme.css->paste below code at the bottom of the file:

@media screen and (max-width: 899px) {
    .footer__aside #localization_form_footer {
        margin-top: 20px;
    }
}

I hope it would help you
Best regards,

Richard | PageFly

Thanks Richard, that worked well.

Is there a way to centre the DISCLAIMER text also?

1 Like

Hi @AndreHairRight ,

Sure, I’m happy to help you. Let’s try this solution:
Step 1: Go to Online Store->Theme->Edit code
Step 2: Asset->/theme.css->paste below code at the bottom of the file:

.footer__copyright {
    text-align: center !important;
}

I hope it would help you
Best regards,

Richard | PageFly