Adding image to footer
-
Hello, I am trying to add an image (with my contact info) to the footer of this page. I have the code to add text. Does anyone know if there’s a way to add an image?
Code to add text to footer:
.site-info:after {
content: ” This is my footer text.”;
}Thank you!
BonThe blog I need help with is: (visible only to logged in users)
-
How about using the Image Widget in the footer area? Much easier than forcing one in with CSS.
-
It would be easier to help if we could see your site (at the moment it is set to private but you can invite people to view it without making it public if you like). Or alternatively you could just let us know which theme you are using.
It would also give us a head start if you posted the URL to the image you have uploaded to your media library so we can test a few options out!
-
Hey, sorry about that. Thanks for the feedback. I ended up getting it to work with this code:
.site-info:after {
content: url(‘//image.png’);
float: right;
}Thank you again!
Bon
- The topic ‘Adding image to footer’ is closed to new replies.