Solved

What is the process of moving the copyright position to the left in Shopify?

Juztean
Excursionist
39 0 8

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: 

<div class="grid__item small--one-whole {{ copyright_show_class }} site-footer-item-align-right">
<small class="site-footer__copyright-content">&copy; {{ 'now' | date: "%Y" }}, {{ shop.name | link_to: routes.root_url }}</small>
<small class="site-footer__copyright-content site-footer__copyright-content--powered-by">{{ powered_by_link }}</small>
</div>

 

Store: https://juz-fitness.myshopify.com/
Pass: JuzPass

Thanks in advance!

Accepted Solution (1)

ZestardTech
Shopify Expert
5393 970 1291

This is an accepted solution.

Hello There,

1. In your Shopify Admin go to online store > themes > actions > edit code
2. 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;
}
}
Want to modify or develop new app, Hire us.
If helpful then please Like and Accept Solution .
Email: support@zestard.com
Shopify Apps URL :- https://apps.shopify.com/partners/zestard-technologies
Custom Modifications Into Shopify Theme | Shopify Private App | SEO & Digital Marketing

View solution in original post

Replies 2 (2)

ZestardTech
Shopify Expert
5393 970 1291

This is an accepted solution.

Hello There,

1. In your Shopify Admin go to online store > themes > actions > edit code
2. 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;
}
}
Want to modify or develop new app, Hire us.
If helpful then please Like and Accept Solution .
Email: support@zestard.com
Shopify Apps URL :- https://apps.shopify.com/partners/zestard-technologies
Custom Modifications Into Shopify Theme | Shopify Private App | SEO & Digital Marketing
Juztean
Excursionist
39 0 8

Hi @ZestardTech ,

 

It worked! is it possible to make it in the middle instead of top as it is now? Thanks in advance!

Juztean_0-1636445076984.png