• I’ve removed the “proudly powered by…” text in my footer by using

    .site-info {
    	display: none;
    }
    

    Now I’d like to add some different text (copyright, my name, etc.) and can’t figure out how to do it. Any ideas? Here’s my site: https://www.fourhensdesign.com/

    Thanks!

Viewing 2 replies - 1 through 2 (of 2 total)
  • You need to go to Appearances to Editor.
    Then look for Theme Footer on the left side and click on that link. ie should say something like
    Theme Footer (footer.php)

    Note make sure you make a copy of of the info before you make any changes.
    recommend you copy and paste the info on a note pad or word pad

    Also look at Customizing under Appearances and look for Widgets and select which could also have footer info

    Hope this helps
    damon

    You’ve got some options here:

    While hiding it with CSS is a way to remove that text, it still kinda exists.

    Screenshot with Skitch Markup:

    View post on imgur.com

    What I reccomend (intermediate difficulty), is to go to either
    1. (Hard) FTP/Cpanel/etc and head to your wp-content/themes/sketch folder
    or
    2. (Not as Hard) Dashboard > Appearance > Editor then look for footer.php

    then look for the <div id="site-info"> and contents inside of it.

    You can pretty much wipe out anything inside of it replace it with you what you need.

    e.g.
    <p id="site-info">Four Hens | All Rights Reserved &copy; <?php echo date("Y") ?></p>

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Change footer text (Sketch child theme)’ is closed to new replies.