How do I make copyright and payment icons on same line? and how do I add All Rights Reserved? My Site is www.endlessmeans.com
1 Like
Hi @Aryy ,
Try this one.
- 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:
- And Save.
.footer__content-bottom {
display: flex;
}
.footer__content-bottom-wrapper.page-width {
order: 2;
}
.footer__content-bottom-wrapper.page-width:nth-child(2) {
order: 1;
justify-content: center;
}
Result:
Which side you like to insert the all rights reserve?
I hope it help.
1 Like
@Made4uo-Ribe Thank you, that worked!
I would like to put the All Rights Reserved. Right infront of Endless Means
so I want it to say © 2023 Endless Means, All Rights Reserved.
1 Like
Hi,
I manage to put the all right reserved.
#shopify-section-sections--20274629673262__footer > footer > div.footer__content-bottom > div:nth-child(2) > div > small:nth-child(1) > a:after {
content: "All Rights Reserved.";
}
.footer__content-bottom-wrapper.page-width {
padding-right: 0px;
}
i just you to one thing. The last code that I give can you change this code.
.footer__content-bottom {
display: flex;
}
.footer__content-bottom-wrapper.page-width {
order: 2;
}
.footer__content-bottom-wrapper.page-width:nth-child(2) {
order: 1;
justify-content: left;
}
So the Terms of service will come in line.
I hope it help.
One thing, the comma on the @2023 , I cant change that one. Check if there is an option for you to change.
the “all rights reserved” doesn’t work. I duplicated my theme and put the code in assets > base.css