Hi! I need help to customize footer. At the moment I put all the infos in the socket, under Enfold theme options – Footer. I also put one single image with two logos.
What I need to do, if possible, is to split the original image now in the socket, in two images (the logos), with the same alignment in the footer, with two different links.
Kind regards
Simone
Hi ilsymo!
Add HTML into the copyright field like so.
<img src = "URL to first image" style = "position: relative;" />
<img src = "URL to second image" style = "position: absolute; right: 0px; bottom: 5px;" />
Regards,
Elliott
Hi Elliot!
I added the code provided, but the second logo (the right one) is not displayed!
Kind regards
Simone
Hi!
Your HTML is a bit different. Remove the styling on the second image and add this to your custom CSS.
#socket .copyright {
float: left;
position: relative;
width: 100%;
}
And for the link surrounding the second image use this CSS instead.
style = "display: block; position: absolute; right: 0px; bottom: 0px; overflow: visible;"
Cheers!
Elliott
Hi Elliot! You’re great, it works like a charm!
Thank you so much for your help!
Cheers!
Simone