• Resolved slworrell

    (@slworrell)


    Hi there.

    I thought I was done asking questions, but I have one more!

    https://www.talaconsulting.com

    I would like to edit the footer text from:

    “Proudly powered by WordPress · Theme: Pique by WordPress.com.” to
    “Tala Consulting Group Copyright 2016 All Rights Reserved.”

    I tried to do it myself and made a mess! I put it back to what it originally was, but still need to change it.

    Thanks in advance for your continued help.

    Sherree

Viewing 3 replies - 1 through 3 (of 3 total)
  • Hi Sherree,

    You can replace the text in you footer by adding the following custom CSS to your plugin’s editor:

    .site-info {
        visibility: hidden;
    }
    
    .site-info:before {
        visibility: visible;
        display: block;
        content: "Tala Consulting Group Copyright 2016 All Rights Reserved.";
    }

    In case you’d like to remove the existing footer text completely (rather than hiding it from view via CSS) then you would need to create a child theme and edit the theme’s footer.php file.

    Let me know how you get on or if you have any extra questions.

    Thread Starter slworrell

    (@slworrell)

    Hi Siobhan,

    Perfect! This is exactly what I wanted.

    Thank you!

    Sherree

    (I tried to edit the footer.php file but made a mess. I’m not sure what I did, but at least I was able to put it back).

    I’m glad to hear that worked out for you, Sherree! You know where to find us if extra questions come up, too.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Editing Footer Text’ is closed to new replies.