Hello,
I would like to align this text to be in the same row, clearly seperated and would also like to add another link for Terms of Service next to the Privacy Policy. I must’ve entered some code incorrectly as I am unsure why the text is purple and larger than the other text.
Any help would be much appreciated
Hi @BlankKanvas ,
I cannot see the changes you made in the footer? refer to the screenshot: https://i.imgur.com/rysUa88.png
Hi Liquid_xPert_SJ,
Here is the link https://two-birds-one-stone-home.myshopify.com/
I can’t see the payment options on my end that were in your screenshot either?
@BlankKanvas its password protected
DaisyVo
December 11, 2024, 5:56am
5
Hi @BlankKanvas
I hope you are well.
Could you please share the store link and entry password so we can check and provide you with a suitable solution?
Thank you!
Best,
Daisy - Avada Support Team.
Apologies, the password is irtiar
Hi DaisyVo,
The link is https://two-birds-one-stone-home.myshopify.com/ and the password is irtiar
Many Thanks
Moeed
December 11, 2024, 6:05am
8
Hey @BlankKanvas
Follow these Steps:
Go to Online Store
Edit Code
Find theme.liquid file
Add the following code in the bottom of the file above tag
RESULT:
If I managed to help you then, don’t forget to Like it and Mark it as Solution!
Best Regards,
Moeed
Hi @BlankKanvas ,
Go to Online Store → Theme → Edit code.
Open your theme.css / based.css file and paste the code in the bottom of the file.
.footer__copyright.caption {
display: flex;
align-items: center;
}
.powered-by a {
text-decoration: none !important;
margin-left: 10px !important;
font-size: 13px;
color: black;
opacity: .5;
}
If my reply is helpful, kindly click like and mark it as an accepted solution.
If you are happy with my help, you can help me buy a COFFEE
Thanks!
DaisyVo
December 11, 2024, 6:56am
10
Hi @BlankKanvas
I hope you are well. You can follow our instructions below:
Step 1: Shopify admin > Online store > Customize: https://prnt.sc/XQ6IDB99kUCd
Step 2: From the left menu > Theme settings > Open Custom CSS: https://prnt.sc/iDxwa8zBQ4Z-
Step 3: Copy the code below and paste it there
Here is the code for Step 3:
.footer__copyright.caption {
display: flex !important;
gap: 5px;
}
.footer__copyright.caption .powered-by a {
color: currentColor !important;
}
Please let me know if it works. Thank you!
Best,
Daisy - Avada Support Team.
This is Richard from PageFly - Shopify Page Builder App
Hi @BlankKanvas Please add code here to fix it:
Step 1: Online Stores > Themes > Edit code
Step 2: Choose file theme.liquid
Step 3: Add code above the tag
Hope my solution will help you resolve the issue.
Best regards,
Richard | PageFly
namphan
December 11, 2024, 1:25pm
12
Hi @BlankKanvas ,
1: Align: Please go to Actions > Edit code > Assets > base.css file and paste this at the bottom of the file:
.footer__copyright {
display: flex;
column-gap: 8px;
margin: auto;
flex-direction: column;
}
.powered-by a {
color: rgba(var(--color-foreground), 0.75);
}
@media screen and (min-width: 750px) {
.footer__copyright {
flex-direction: row;
}
}
2: Other link: You can refer link
I hope it helps!