How to add to Copyright at bottom of page

  • I need help with the CSS code to add to the footer copyright where it says Blog at WordPress.com | Purpose Theme

    The blog I need help with is: (visible only to logged in users)

  • We have a couple of ways to do this from looking at the footer in Purpose. My first thought would be to add it after the name/phone with the following.

    .footer p:first-of-type:after {
        content: " | © Odeh Law All Rights Reserved.";
    }

    The second would be to add it before that with this.

    .footer p:first-of-type:before {
        content: "© Odeh Law All Rights Reserved. | ";
    }

    We could also put it on its own line before the name/phone with this.

    .footer p:first-of-type:before {
        content: "© Odeh Law All Rights Reserved.";
        display: block;
    }

    Let me know your thoughts if one of the above doesn’t get you what you are looking for.

  • The topic ‘How to add to Copyright at bottom of page’ is closed to new replies.