Horizontal Footer Prestige Theme

Hello Everyone!

I am using shopify prestige theme. I want to keep the footer section menu like below image, Is it possible? Thank you.
Store: https://puppies-paws-shop.myshopify.com/
Password: Admin

1 Like

Yes, it’s possible to customize the footer section menu in the Prestige theme to match the layout shown in the image.

Great, How can I do this? Send me the code. Thank you.

Hi @dreamtechzone_5

Do you mean like this?

If it is I use this code.

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 (min-width: 749px){
.Footer__Block ul.Linklist {
    display: flex;
}
.Footer__Block.Footer__Block--links {
    width: 80%;
}
h2.Footer__Title.Heading.u-h6 {
    text-align: center;
}
}

And Save.

1 Like

Thank you

Great. It worked. I want to reduce space in desktop and mobile mode. Thank you very much.

Desktop Mode

Mobile Mode

One More thing, When I add multiple menus the texts get mixed up. I want to put 8 menus on the first line and put the rest at the bottom and will start from the center.

Check this one if its good.

footer#section-footer {
    padding-top: 30px;
}
.Footer__Block.Footer__Block--links {
    margin: 0px;
}
.Footer__Inner+.Footer__Aside {
    margin-top: 40px;
}
@media only screen and (min-width: 749px){
.Footer__Block.Footer__Block--links {
     display: flex;
     flex-direction: column;
}
.Footer__Block ul.Linklist {
    display: flex;
}
}
@media only screen and (max-width: 1170px){
.Footer__Block ul.Linklist { 
    flex-wrap: wrap;
    }
.Footer__Block li.Linklist__Item {
    flex: 0 1 20%;
}
}
@media only screen and (max-width: 749px){
    .Footer__Inner+.Footer__Aside {
    margin-top: 25px;
}
    .Footer__PaymentList {
        margin-top: 25px;
}
}

And Save.

Result:

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

1 Like

I have pasted the code. Only the space is fixed. The menu is not fixed.

Result

I add on screen size 1170px you can change into 1485px.

this one.

1 Like

Great. It worked. Can 8 menus be placed in one line?

It will fit but not responsive. In one line when the screen gets smaller they are more closer to. If it 2 words it automatic to go down.

Im not sure which screen size it will last. Do you want me to try? You need to save the 8menus so I can give you the result.