• Resolved kerdezo

    (@kerdezo)


    Hi friends,
    How can I add a short text ( contact mail) to the footer-bottom area, above the copyright text, or between the copyright and credit text?

    thx.

Viewing 2 replies - 1 through 2 (of 2 total)
  • Hi kerdezo. In Customizer > Footer > Footer > Footer Design you can use the break tag in your copyright content:

    This is my contact email <br /> Copyright @2016 mySite

    Or you could use jQuery to replace the copyright at run time:

    // Create dynamic copyright; replace text in footer
    jQuery( document ).ready( function( $ ) {
      var startYear = '2014';
      var thisYear = new Date().getFullYear();
      var myText = ' My Cool Blog &nbsp;&nbsp; All Rights Reserved';
      $('#copyright p').html('Contact me [email protected] <br> Copyright &copy; ' + startYear + '-' + thisYear + myText);
    })
    Thread Starter kerdezo

    (@kerdezo)

    Thanks bdbrown!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Adding text to footer-bottom’ is closed to new replies.