How to modify my footer with Copyright info

  • Unknown's avatar

    I would like to remove the text that is currently in my footer and add my copyright information. Any code to do that?

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

  • Unknown's avatar

    Hi there, you are not allowed to hide or edit the WordPress.com and theme footer credits per our Terms of Service (#1 Attribution). See the Frequently Asked Questions on the Custom Design support page for more information.

    You are allowed to restyle the footer credits to better fit with your design as long as they remain readable, and you are also allowed to add text to the footer, such as a copyright statement. If you need help restyling, or adding to, the existing footer credits, let us know and we would be happy to help.

    Give the following a try. The first rule makes the existing footer credits grey and the second adds the copyright above and sets it to red so it is more noticeable. I also set it to bold and increased the font size a bit.

    .site-info, .site-info a {
        color: #888;
    }
    .site-info:before {
        content: "This is my Copyright";
        display: block;
        font-size: 120%;
        color: #d10909;
        font-weight: bold;
    }
  • Unknown's avatar

    thanks, that worked great.

  • Unknown's avatar
  • The topic ‘How to modify my footer with Copyright info’ is closed to new replies.