Centre added text to bottom ribbon
-
Hi
I have yet to figure out this CSS stuff!
Can you please tell me how to centre the added text to my bottom ribbon (the wordpress.com text is already centred).
Thanks.The blog I need help with is: (visible only to logged in users)
-
Hi,
In your current custom CSS you already have this to add the extra text:
.site-info:before { content: "You may not take any images or content from this site without written permission."; color: #fffff; font-size: 100%; }You will need to add another line of CSS there to center it, like this:
.site-info:before { content: "You may not take any images or content from this site without written permission."; color: #fffff; font-size: 100%; width: 100%; } -
-
- The topic ‘Centre added text to bottom ribbon’ is closed to new replies.