How can I improve footer alignment and make menus collapsible?

HELLO,

  1. I want to center align my footer on desktop version. How to do that?
  2. How can I make the footer menus collapsable?

theme: impulse, thestateplate.com

Please help.

Adjust .site-footer width only on desktop version

Hi

Do you want to make footer links center aligned like this screenshot?

Or want to make footer 4 section in the center?

To make it footer collapsible we need to add accordion JS so, it will become collapsible

1 Like

from where to do this?

I want to do both, center align and then also to make it spread throughout

please Go to Online Store->Theme->Edit code then go to assets/theme.css ->paste below code at the bottom of the file.

@media only screen and (min-width: 960px){
.footer__item--1494301487049 ,
.footer__item--80f90459-8c2a-4fce-8f16-9d7598b2f90d,
.footer__item--3684da0d-295d-481f-b5a0-acc133b7f59b,
.footer__item--1494301487048 {
    width: 25% !important;
    text-align: center !important;
}
}
1 Like

Thank you so much for the help

Hello,
I am sorry but i don’t want to center alight text

Can you please help?

I have pasted your code already though

I want the text to be left aligned and the gap between all the columns to be spread evenly, please advise

Remove below code:

@media only screen and (min-width: 960px){
.footer__item--1494301487049 ,
.footer__item--80f90459-8c2a-4fce-8f16-9d7598b2f90d,
.footer__item--3684da0d-295d-481f-b5a0-acc133b7f59b,
.footer__item--1494301487048 {
    width: 25% !important;
    text-align: center !important;
}
}

please Go to Online Store->Theme->Edit code then go to assets/theme.css ->paste below code at the bottom of the file.

@media only screen and (min-width: 960px){
#shopify-section-footer .site-footer .page-width .grid .grid__item{
  width: 25% !important;
    text-align: left !important;
}
}

Thank you, you are great