Hey guys, I’ve managed to resolve the above issue with the following CSS pseudo element:
.site-info:after {
content: “image: ‘a storms approaching – women’s lib’ © Sally Edelstein http://www.sallyedelstein.com”;
display: block;
}
It currently looks like this at the bottom of my home page: http://www.toppadalist.com.
I realize you can’t add HTML elements with the CSS3 “after and :before selectors, and the content:”” property only accepts plain text, but I’d like to make the URL a link to that page.
Anyone have any advice they can offer?
Much appreciated!