Shopify themes, liquid, logos, and UX
We're moving the community! Starting July 7, the current community will be read-only for approx. 2 weeks. You can browse content, but posting will be temporarily unavailable. Learn more
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
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
Hmm..that didn't seem to work. Thank you for your response though.
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
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;
}
}
My mistake! Must not have refreshed the page 😛 thank you!!