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 🙂
It worked, but the wording is all in capital letters and quite large. How do I make it sentence case and a bit smaller?
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 🙂
That’s worked beautifully, thanks so much!
You’re welcome, have a great weekend 🙂