Navigation
This is archived content. Visit our new forum.
  • Author
    Posts
  • #887129

    ryanonline1
    Participant

    How do I move my footer logo to the left?

    My page is interactr.io/jv

    #887133

    ryanonline1
    Participant
    This reply has been marked as private.
    #887594

    Rupok
    Member

    Hi there,

    Thanks for writing in! You can add this under Custom > CSS in the Customizer.

    .x-colophon-content > img {
      float: left;
      margin-top: -22px;
    }

    Hope this helps.

    Cheers!

    #888112

    ryanonline1
    Participant

    Thanks.

    Now how do I get the copyright text to the right?

    #888252

    John Ezra
    Member

    Hi there,

    Thanks for writing in! We will need to enclose the text in a div so we can control it separately. We can use jQuery for that.

    You can add this under Custom > Javascript in the Customizer.

    jQuery( document ).ready(function( $ ) {
    $("div:contains('Copyright 2016 interactr. All Rights Reserved.')").html(function(_, html) {
       return html.replace(/(Copyright 2016 interactr. All Rights Reserved.)/g, '<div class="ftrC">Copyright 2016 interactr. All Rights Reserved.</div>');
    });
    });

    Then you can add this under Custom > CSS in the Customizer or in your child theme’s style.css file.

    .ftrC {
        float: right;
    }

    Hope this helps – thanks!

    #888346

    ryanonline1
    Participant

    Thank you

    #889088

    Friech
    Moderator

    You’re more than welcome, glad we could help.

    Cheers!