Can i use an image on the footer?
- The topic ‘Can i use an image on the footer?’ is closed to new replies.
Need help? Check out our Support site, then
Hello!
I would like to know if it is possible to put an image instead of a solid color on the footer.
Thank you!
The blog I need help with is: (visible only to logged in users)
Hi there!
Yes, that is certainly possible. It can be achieved with some CSS. You’ll first have to upload the image you want to use to your site. Next, grab the URL for it and replace the xxx
with it in the background: URL(xxx);
CSS below:
.site-footer {
background: url(xxx) no-repeat;
background-size: cover;
}
.site-info{
background: transparent;
}
.footer-block {
border: none;
}
I hope that helps!
Sonia