Add text to footer

Solved

Add text to footer

Daniel19901
Shopify Partner
296 2 88

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
10132 2403 3037

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 are highly appreciated. Coffee tips fuel my dedication.
Get experienced Shopify developers at affordable rates—visit Made4Uo.com for a quick quote!
Need THEME UPDATES but have custom codes? No worries, for an affordable price.

View solution in original post

Reply 1 (1)

Made4uo-Ribe
Shopify Partner
10132 2403 3037

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 are highly appreciated. Coffee tips fuel my dedication.
Get experienced Shopify developers at affordable rates—visit Made4Uo.com for a quick quote!
Need THEME UPDATES but have custom codes? No worries, for an affordable price.