I have been searching everywhere and can’t figure out how to add a small logo to the right side of the footer, in the same black box as the copyright line. When I add my image to the footer using the widgets, it creates another much larger footer above the copyright footer. I would greatly appreciate any ideas. Thank you.
Here is a link to the site. http://kville.org/preview
You can use for example in your custom css (dashboard wordpress)
#copyright {
background: url("replace-with-url-of-your-image.png") no-repeat 99% center #111111;
}
Horizontal align, You can replace 99% per right or 90% i dunno.
vertical align, You can replace center per xx%, top or bottom.
Perhaps you have to set a right padding or margin for the credits links, because links will ovelaps your image…
Myleene,
Your awesome! That worked perfectly. Thank you for your help.