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:
See screenshot for where I need the logo to be
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:
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!!