We're moving the community! Starting July 7, the current community will be read-only for approx. 2 weeks. You can browse content, but posting will be temporarily unavailable. Learn more

Re: Change look of the footer - Stiletto Theme

Solved

Change look of the footer - Stiletto Theme

stinem123
Trailblazer
166 0 30

Hi, I am making a new upgrade to my store, and just bought Stiletto Theme

 

Anyone who can help with some coding, so the bottom of the footer will have same look as my previous webshop? I want it to look more like the second picture, where card icons are placed in the left side, link to social medias (only facebook & Instagram) in the right side and small copyright text below that. And then the thin line that divides the footer in two sections. 

 

I have made pictures for you. First picture is my webshop now: 

https://l5xe7beo5c7cqxqo-57068945600.shopifypreview.com

(Preview only available in two days)

 

Second picture is my original webshop that I want the same look from:

https://www.melchiorjewelry.com/

 

Thank you very much! I really hope someone can help!

 

Skærmbillede 2023-05-29 kl. 11.20.47.jpg

 

Skærmbillede 2023-05-29 kl. 11.21.14.jpg

 

.

.

.

.

.

.

.

.

Accepted Solution (1)
Moeed
Shopify Partner
7764 2082 2568

This is an accepted solution.

Hey @stinem123 
Remove the previous code and add this updated code by following the same steps.

<style>
@media screen and (min-width: 1024px) {
.apicons.apicons-desktop {
    display: flex;
    border-top: 1px solid #a79828;
    border-style: solid;
    border-image-slice: 1;
    border-bottom: 0;
    border-left: 0;
    border-right: 0 !important;
    padding-top: 30px;
}
.footer__bottom {
    justify-content: flex-end;
    margin-bottom: -70px;
}
}
</style>

Capture.JPG

If I managed to help you then, don't forget to Like it and Mark it as Solution!


Best Regards,
Moeed



- Need a Shopify Specialist? Chat on WhatsApp

- Get a quick Shopify quote – Click here!

- Custom Design | Advanced Coding | Store Modifications


View solution in original post

Replies 9 (9)

stearis
Shopify Partner
23 3 5

Hi @stinem123 

if your theme does not give you the option to display it like this, you will have to code it with CSS.

I can try to write the CSS code, however, you will have to add the social media icons.

 

Oh and nice relaunch you did there!

Kind regards, 
Najam

Developer at stearis
stinem123
Trailblazer
166 0 30

Hi @stearis thanks for your reply!

 

Yes, it will be very helpful if you could try write the CSS code, I really appreciate. Also I just tried to add the social media icons, but I can´t find how to show them anymore.. You can see the theme editor here, but I can´t find the option to show the icons in the footer. Do you know where or how this can be done?

 

And thank you so much, glad you like the new relaunch design. So happy about that!

 

Skærmbillede 2023-05-29 kl. 11.56.46.png

 

 

stearis
Shopify Partner
23 3 5

It should be in the global theme settings, usually if you don't add the links it is not shown.

You have to click on the brush on the upper left (2nd icon)

Developer at stearis
stinem123
Trailblazer
166 0 30

Hi @stearis

I tried that too, but nothing happens.. both links for facebook an Instagram are added, but there are no social media icons. Any other suggestions?

 

https://nf2d0v1w8yzwjkof-57068945600.shopifypreview.com

 

Skærmbillede 2023-05-29 kl. 17.17.58.png

Moeed
Shopify Partner
7764 2082 2568

Hey @stinem123 

Follow these Steps:

1) Go to Online Store
2) Edit Code
3) Find theme.liquid file
4) Add the following code in the bottom of the file above </body> tag.

<style>
.apicons.apicons-desktop {
    display: flex;
    border-top: 2px solid #a79828;
    border-style: solid;
    border-image-slice: 1;
    border-bottom: 0;
    border-left: 0;
    border-right: 0 !important;
}
@media screen and (min-width: 1024px) {
.footer__bottom {
    justify-content: flex-end;
    margin-bottom: -70px;
}
}
</style>

Capture.JPG
For further changes, Feel free to contact me and I will do them for you.

If I managed to help you then, don't forget to Like it and Mark it as Solution!

Best Regards,
Moeed

- Need a Shopify Specialist? Chat on WhatsApp

- Get a quick Shopify quote – Click here!

- Custom Design | Advanced Coding | Store Modifications


stinem123
Trailblazer
166 0 30

Hi @Moeed, thank you  very much! Is it possible to make the line thinner, so it is just slightly visible? And then if it is possible to make some spacing between the line and payment icons?

 

And can the placement of the payment icons be parallel with the text above?

Just like in this picture: 

 

Thank you so much for your help!

Skærmbillede 2023-05-29 kl. 11.21.14.jpg

Moeed
Shopify Partner
7764 2082 2568

This is an accepted solution.

Hey @stinem123 
Remove the previous code and add this updated code by following the same steps.

<style>
@media screen and (min-width: 1024px) {
.apicons.apicons-desktop {
    display: flex;
    border-top: 1px solid #a79828;
    border-style: solid;
    border-image-slice: 1;
    border-bottom: 0;
    border-left: 0;
    border-right: 0 !important;
    padding-top: 30px;
}
.footer__bottom {
    justify-content: flex-end;
    margin-bottom: -70px;
}
}
</style>

Capture.JPG

If I managed to help you then, don't forget to Like it and Mark it as Solution!


Best Regards,
Moeed



- Need a Shopify Specialist? Chat on WhatsApp

- Get a quick Shopify quote – Click here!

- Custom Design | Advanced Coding | Store Modifications


stinem123
Trailblazer
166 0 30

@Moeed Thank you so so much works perfect, looks great!

Ujjaval
Shopify Partner
1242 197 215

@stinem123 add below css into theme.css file 

.footer__bottom {
 border-top: solid 1px;

}
.apicons-desktop {
    text-align: left !important;
}

.fs-body-50 {
   position: absolute;
    right: 0;
    bottom: 0;
}

Ujjaval_0-1685357675576.png