• Resolved jasminecross11

    (@jasminecross11)


    Hi, I’m sure this is fairly easy to do, but I can’t seem to find where to do it! I want to add my copyright information & some legal text to the bottom of my site. Any help would be appreciated.

    Thanks

Viewing 6 replies - 1 through 6 (of 6 total)
  • Thread Starter jasminecross11

    (@jasminecross11)

    Hi, can anyone help?

    Gary Bairead

    (@gary-barrett)

    Hi there,

    Please try adding the css below to your site in Appearance > Customize > Additional CSS.

    You can change the “Your © copyrigth info here” here text in the css to whatever you prefer, but keep it inside the quotation marks.

    .site-info {
        visibility: hidden;
    }
    
    .site-info:before {
        content: "Your © copyrigth info here";
        visibility: visible;
    }

    If the css doesn’t work, please post a link to your site.

    Thanks 🙂

    Thread Starter jasminecross11

    (@jasminecross11)

    It worked, but the wording is all in capital letters and quite large. How do I make it sentence case and a bit smaller?

    Gary Bairead

    (@gary-barrett)

    Please replace:

    .site-info:before {
        content: "Your © copyright info here";
        visibility: visible;
    }

    with

    .site-info:before {
        content: "Your © copyright info here";
        visibility: visible;
        text-transform: none;
        font-size: 12px;
    }

    If the css doesn’t work, please post a link to your site.

    Thanks 🙂

    Thread Starter jasminecross11

    (@jasminecross11)

    That’s worked beautifully, thanks so much!

    Gary Bairead

    (@gary-barrett)

    You’re welcome, have a great weekend 🙂

Viewing 6 replies - 1 through 6 (of 6 total)

The topic ‘adding copyright information to footer’ is closed to new replies.