How can I adjust the footer alignment on the Prestige theme?

Hi there,

I am using prestige theme and my url is www.maternallyhappy.com

I was just hoping to change the layout on the phone so where the column shipping starts can be moved up to where contact us is but to the right hand side. I want to try and get rid of the 1 long column as shown and make it into 2. They are seperate menus so its not a menu issue.

Thanks heaps,

Caitlin

1 Like

Hi @maternallyhappy

Try this.

  • From your Shopify admin dashboard, click on “Online Store” and then “Themes”.
  • Find the theme that you want to edit and click on “Actions” and then “Edit code”.
  • In the “Assets” folder, click on “base.css, style.css or theme.css” file, depending on which file your theme uses to store its CSS styles. At the bottom of the file, add the following CSS code:
@media only screen and (max-width: 699px){
.footer__block-list {
    grid-template-columns: repeat(2, 1fr);
}
}

Please don’t forget to Like and Mark Solution to the post that helped you. Thanks!

1 Like

Hi @maternallyhappy

This is Henry from PageFly - Landing Page Builder App

You can try this code by following these steps:

Step 1: Go to Online Store->Theme->Edit code.

Step 2: Search file theme.css

Step 3: Paste the below code at bottom of the file → Save

@media (max-width: 767px){

.footer__block-list {

display: flex !important;

flex-wrap: wrap;

justify-content: space-evenly;

}

}

Hope that my solution works for you.

Best regards,

Henry | PageFly

Thank you so much for your help!!