Add text to footer

Solved

Add text to footer

Daniel19901
Shopify Partner
244 0 65

Hi, how can I add "we accept" text just above my payment methods in the footer like in the image? 

https://nagerteppich.de/

Daniel19901_0-1726762802419.png

 




Accepted Solution (1)

Made4uo-Ribe
Shopify Partner
8443 2018 2478

This is an accepted solution.

Hi @Daniel19901 

Check this one. 

From you Admin page, go to Online Store > Themes

Select the theme you want to edit

Under the Asset folder, open the main.css(base.css, style.css or theme.css)

Then place the code below at the very bottom of the file.

 

.shopify-section-footer > div .l4pm:before {
    content: 'We accept';
    margin: 0 var(--dist) 10px 0;
}
@media only screen and (max-width: 749px){
.shopify-section-footer > div .l4pm:before {
    content: 'We accept';
    position: absolute;
    left: 50%;
    transform: translate(-50%);
    top: 5px;
}
.shopify-section-footer > div .l4pm {
    padding-top: 30px;
}
}

 

And Save.

Result:

Made4uoRibe_0-1726763766045.pngMade4uoRibe_1-1726763779237.png

 

 

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

If this fixed your issue Likes and Accept as Solution is highly appreciated. Coffee tips fuels my dedication.
Get EXPERIENCED Shopify developers at affordable rates—visit Made4Uo.com for quick quote!
Do not lost your Shopify store! Get FREE trial with ✔️ Rewind Backup: Automatic, reliable, stress-free.
Need THEME UPDATES but has custom codes? No worries, contact us for affordable price.

View solution in original post

Reply 1 (1)

Made4uo-Ribe
Shopify Partner
8443 2018 2478

This is an accepted solution.

Hi @Daniel19901 

Check this one. 

From you Admin page, go to Online Store > Themes

Select the theme you want to edit

Under the Asset folder, open the main.css(base.css, style.css or theme.css)

Then place the code below at the very bottom of the file.

 

.shopify-section-footer > div .l4pm:before {
    content: 'We accept';
    margin: 0 var(--dist) 10px 0;
}
@media only screen and (max-width: 749px){
.shopify-section-footer > div .l4pm:before {
    content: 'We accept';
    position: absolute;
    left: 50%;
    transform: translate(-50%);
    top: 5px;
}
.shopify-section-footer > div .l4pm {
    padding-top: 30px;
}
}

 

And Save.

Result:

Made4uoRibe_0-1726763766045.pngMade4uoRibe_1-1726763779237.png

 

 

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

If this fixed your issue Likes and Accept as Solution is highly appreciated. Coffee tips fuels my dedication.
Get EXPERIENCED Shopify developers at affordable rates—visit Made4Uo.com for quick quote!
Do not lost your Shopify store! Get FREE trial with ✔️ Rewind Backup: Automatic, reliable, stress-free.
Need THEME UPDATES but has custom codes? No worries, contact us for affordable price.