Adding text in footer [below widgets]
- The topic ‘Adding text in footer [below widgets]’ is closed to new replies.
Need help? Check out our Support site, then
Hi,
Is it possible to add a small amount of text – [just our company name and a few words] so that it appears just above “Blog at WordPress.com …”
Thanks
Gail
The blog I need help with is: (visible only to logged in users)
Hi Gail,
Please try the following CSS Code Snippet,
/* Footer Site Info */
.site-info:before {
content: 'Your Text';
display: block;
margin: 0 0 30px;
Thanks
Hi,
I have just tried this, but it does not do anything.
I have just replaced Your Text, but left the ‘ marks either site. Do I need to do anything else?
Thanks, Gail
Hi Gail,
It should work.
I have re-tested it.
Above CSS code snippet has missing end parentheses. Please try this one,
/* Footer Site Info */
.site-info:before {
color: #fff;
content: 'Your Text';
display: block;
margin: 0 0 30px;
}
Thanks
Hi – that works fine
Many thanks, Gail