What's your biggest current challenge? Have your say in Community Polls along the right column.

Move logo to bottom right corner in footer?

Move logo to bottom right corner in footer?

LaDolce-vid-des
Shopify Partner
15 0 3

I need to move the "Made in the USA" logo to the bottom right hand corner of the footer. Site is: https://historyamerica.myshopify.com/, pass is: frotho

Code used for logo image:

<div class="site-footer__item site-footer__item--one-quarter">
<div class="grid__item medium-up--one-quarter">
<img class="logo_footer" src="https://cdn.shopify.com/s/files/1/0526/0800/8380/files/made-in-USA-web.png?v=1620836146" width="100px">
</div>
</div>

See screenshot for where I need the logo to be

Screen Shot 2021-05-12 at 12.29.27 PM.png

Replies 6 (6)

RajatWeb
Shopify Partner
197 46 62

Hi @LaDolce-vid-des 

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

@media (min-width: 768px) and (max-width: 1280px){
.site-footer .logo_footer{
   float: right;
    position: relative;
    right: 90px;
    top: 110px;
}
    }

 Thanks

If helpful then please Like and ✔️ Accept Solution.
Do you need custom changes on store ? please send me a personal message and we can discuss.
Email: rajatsharma.web@gmail.com
Skype: rajatsharma.web
LaDolce-vid-des
Shopify Partner
15 0 3

Hmm..that didn't seem to work. Thank you for your response though.

RajatWeb
Shopify Partner
197 46 62

Hello @LaDolce-vid-des 

Would you please insert code inside this file : Go to Online Store->Theme->Edit code then go to assets/theme.css . Don't insert code into footer.liquid file.

Thanks

If helpful then please Like and ✔️ Accept Solution.
Do you need custom changes on store ? please send me a personal message and we can discuss.
Email: rajatsharma.web@gmail.com
Skype: rajatsharma.web
RajatWeb
Shopify Partner
197 46 62

Hi @LaDolce-vid-des ,

Please use this css code.

@media (min-width: 768px){
.site-footer .logo_footer{
   float: right;
    position: relative;
    right: 90px;
    top: 110px;
}
    }
If helpful then please Like and ✔️ Accept Solution.
Do you need custom changes on store ? please send me a personal message and we can discuss.
Email: rajatsharma.web@gmail.com
Skype: rajatsharma.web
RajatWeb
Shopify Partner
197 46 62

Screenshot 2021-05-12 at 11.17.15 PM.png

If helpful then please Like and ✔️ Accept Solution.
Do you need custom changes on store ? please send me a personal message and we can discuss.
Email: rajatsharma.web@gmail.com
Skype: rajatsharma.web
LaDolce-vid-des
Shopify Partner
15 0 3

My mistake! Must not have refreshed the page 😛 thank you!!