How can I format the debut footer into columns?

Hi everyone,

can anyone help to make the debut footer in a column manner just like the footer on this website? currently it’s going across instead of columns.

Thanks!

Fabian

Hello, @Fabian23

Welcome to the Shopify Community.
I read your problem and it seems that I need to analyze your website to provide the solution here.
Would you please share your website URL and if your website is password protected then also provide the password.

Hi HardikDavra,

sure here’s the url.
https://royal-cavalry.myshopify.com/password

pw: passwordroyal

@Fabian23

Please go to Online store → themes → Edit theme → Assets → theme.scss.liquid and paste this code at the end of this file

ul.site-footer__linklist {
columns: 1 !important;
-webkit-columns: 1 !important;
    -moz-columns: 1 !important;
    -moz-column-count: 1 !important;
}

It worked! Thanks so much Hardik!