How can I position my logo above the copyright in mobile footer?

Hey guys!

Currently, the mobile version of my footer looks like this:

but I want the logo to be above the copyright and store name without making changes to the desktop version if possible.

If there is a solution to this, please let me know!

Store name: fitness-sleeves.myshopify.com PW: ohthau

1 Like

@dano3333

yes please share your footer code so i will check and update

1 Like

hello @dano3333

please Go to Online Store->Theme->Edit code then go to assets/theme.css ->paste below code at the bottom of the file.

@media screen and (max-width: 729px){
.site-footer  .site-footer__hr{
display: none !important;
}
.site-footer  .small--hide{
display: block !important;
}
.site-footer .small--hide .site-footer__copyright-content{
display: none !important;
}
}
1 Like

Thanks, that worked!