Support » Theme: Customizr » Add Alternate Logo in Footer

Viewing 4 replies - 1 through 4 (of 4 total)
  • Do you mean an additional logo to the one already there?

    You mastered the snippet so it’s just some further coding in the function to include a similar structure looking like
    <a class="parent" href="....."><img src="...."></img></a> and then styling it with .parent {}

    Thread Starter iheartthefly

    (@iheartthefly)

    Yes, essentially Dave.

    I wish to have another logo appear on the bottom LH side of the footer. If I upload this image to my media, where would I place the image URL in that code and ensure that it appears in the correct location?

    Thanks in advance!
    Brendan

    Here’s the code you have for your original image:

    <a rel="bookmark" title="Australian Fly Fishing Museum" href="http://www.affm.net.au/wordpress">
    <img alt="Australian Fly Fishing Museum" src="http://www.affm.net.au/wordpress/wp-content/uploads/2013/12/AFFM-Mono-invert.png">
    </a>

    This could be simplified to:

    <a href="http://www.affm.net.au/wordpress">
    <img src="http://www.affm.net.au/wordpress/wp-content/uploads/2013/12/AFFM-Mono-invert.png"></a>

    So now with your new image, my code in previous post becomes:
    <a class="parent" href="http://www.affm.net.au/wordpress"><img src="http://www.affm.net.au/wordpress/wp-content/uploads/2013/12/NewImageName.png"></img></a>

    Having added that ahead of the code you added, you should then be able to relocate it using something like:
    .parent {float: left;} or more likely:
    .parent {position:relative; top: 0px; left: 0px;} and change the 0px to get it positioned where you need.

    Phew. If that works, go and get a beer 😉

    Thread Starter iheartthefly

    (@iheartthefly)

    Goodness me – Thanks for your efforts Dave…

    I did try mucking around with some of that code, then disabled the site due to a fatal error! After reinstating everything pretty quickly, I’ve now found that it’s just as easy to place an image widget in the sidebar.

    I will still have that beer though, if that’s ok! 🙂

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Add Alternate Logo in Footer’ is closed to new replies.