Customising Copyright Notice?

  • Unknown's avatar

    Hello.

    Is it possible using the Shelf theme to customise the copyright notice in the footer?

    Thanks.

  • Unknown's avatar

    Hi there,

    With the Custom Design upgrade, you can add text before or after the existing footer text with CSS.

    This would add a copyright before the existing footer text:

    footer ul:before {
    content: "Copyright George Williams. All Rights Reserved.";
    font-weight: bold;
    margin-right: 25px;
    }

    This would add the copyright after the existing footer text:

    footer ul:after {
    content: "Copyright George Williams. All Rights Reserved.";
    font-weight: bold;
    }

    You can preview the above two examples, if you wish, by going to Appearance > Custom Design in your dashboard and click on the “Preview for Free” button in the CSS pane at right. Then copy and paste each of the above into the CSS edit window to see the results.

    I hope that helps.

  • The topic ‘Customising Copyright Notice?’ is closed to new replies.