Hi,
How do I make the (© 2021, Juz Fitness) move to the left of the footer? I tried changing align-right to align-left but it doesn’t work. The code is:
© {{ 'now' | date: "%Y" }}, {{ shop.name | link_to: routes.root_url }}
{{ powered_by_link }}
Store: https://juz-fitness.myshopify.com/
Pass: JuzPass
Thanks in advance!
Hello There,
- In your Shopify Admin go to online store > themes > actions > edit code
- Find Asset >theme.scss.css and paste this at the bottom of the file:
@media only screen and (min-width: 750px){
.site-footer-item-align-right {
text-align: left!important;
}
}
Hi @ZestardTech ,
It worked! is it possible to make it in the middle instead of top as it is now? Thanks in advance!