Remove or edit "BLOG AT WORDPRESS.COM" using CSS
-
Hi Guys,
I am looking to edit or hide the footer note BLOG AT WORDPRESS.COM. | THE MOTIF THEME.
Basically looking for a bit of CSS to change it to:
© 2014 BID Marketing Ltd. All Rights Reserved. | Powered by The Motif Theme at WordPress.com
Still keeping the linkable credits “The Motif Theme” & “WordPress.com”as per the terms and conditions.
Thanks in advance :)
The blog I need help with is: (visible only to logged in users)
-
You can’t eliminate the WP alerts. If you have the Custom Domain, you can add other issues.
-
@jaypowellbid, the footer credits have to stay intact, as they are, but you can add text before those credits with the following CSS. To do this, you would need to have the Custom Design upgrade, but you can try out this CSS to see what it looks like. I’ve limited this to 575px wide and above since things go awry below that point. What the second bit of code does is to then stack the two lines (your text on top and the WordPress/theme credits on the bottom.
.site-info:before { content: "© 2014 BID Marketing Ltd. All Rights Reserved. | " !important; color: #000000; font-weight: bold; } @media screen and (min-width: 575px) { .site-info { display: flex; } } -
- The topic ‘Remove or edit "BLOG AT WORDPRESS.COM" using CSS’ is closed to new replies.