How to Add credit or edit Karuna's footer copyright with CSS

  • Unknown's avatar

    Hi everyone,
    i am using the new wordpress.com theme Karuna, and I would appreciate if anyone can give a help on how to add a website copyright at the bottom of the footer using the CSS Style.

    Many thanks for your help. I am a beginner but understand quickly.

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

  • Unknown's avatar

    Howdy parcoursinspirant!

    Here’s a simple code you can add to your CSS to add a website copyright footer!

    #colophon:before {
      content: "© This is a sample copyright footer";
      display: block;
      text-align: center;
      position: relative;
      top: 425px;
      color: #fff;
    }

    Explanation:

    • Content — This is the most important part for you. This is where you’ll input the Copyright statement
    • Top — The lower the number, the higher up it’s place. The higher the number, the lower it’s placed. Feel free to change this how you would like. I chose 425px because it seemed like a good location.
    • Color — The color of the text. #fff is the hex for white.

    Let me know if you run into any problems!

  • The topic ‘How to Add credit or edit Karuna's footer copyright with CSS’ is closed to new replies.