Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #542645

    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

    #542697

    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

    #543057

    Hi Elliot!
    I added the code provided, but the second logo (the right one) is not displayed!

    Kind regards
    Simone

    #543392

    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

    #543520

    Hi Elliot! You’re great, it works like a charm!

    Thank you so much for your help!

    Cheers!
    Simone

Viewing 5 posts - 1 through 5 (of 5 total)
  • The topic ‘Footer customization’ is closed to new replies.