I'd like to centre just the brand information section in my footer on mobile view only on Dawn theme

Hi there, I’d like to centre the ‘brand information’ section in my footer on mobile view only, I’m using Dawn theme. It currently says follow along and has the social media icons in this section. Thanks!

Hi @dani250 ,

Could you please share your store url link?

Thanks

Yes of course it’s www.daniledo.co.uk and the password is 250dani250 - thanks!

Hello @dani250 ,

Step 1: Online Stores > Themes > Edit code

Step 2: Choose file base.css

Step 3: Add code to the bottom of the file

@media only screen and (max-width: 425px) {
.footer-block__brand-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
}

Thanks

That’s worked perfectly, thank you so much! :blush:

Welcome! @dani250