-
AuthorPosts
-
April 17, 2016 at 3:39 pm #887129
How do I move my footer logo to the left?
My page is interactr.io/jv
April 17, 2016 at 3:41 pm #887133This reply has been marked as private.April 18, 2016 at 1:31 am #887594Hi 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!
April 18, 2016 at 7:11 am #888112Thanks.
Now how do I get the copyright text to the right?
April 18, 2016 at 8:37 am #888252Hi 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!
April 18, 2016 at 9:20 am #888346Thank you
April 18, 2016 at 6:53 pm #889088You’re more than welcome, glad we could help.
Cheers!
-
AuthorPosts