Archived topic
Remove entire copyright bar
3 replies · Started by Sabine Houlden on February 15, 2015
Hi,
Can you help with how to remove the entire copyright bar? I have Generate Press premium installed. Various posts say 'add css' but not where to add it.
thank you,
Sabine
Hi Sabine,
You can add CSS using the plugin linked below in my signature.
This should work:
.site-info {
display: none;
}
Hi Tom, Thanks for your reply.
I put your code at the bottom of the file (see below) on your simple-custom-css which I had already installed and it gave me this:
This plugin has been deactivated because your changes resulted in a fatal error.
Parse error: syntax error, unexpected '.' in /home/sabine606/public_html/dev/wp-content/plugins/simple-custom-css/simple-custom-css.php on line 43
define( 'SCCSS_FILE', __FILE__ );
if( ! is_admin() ) {
require_once dirname( SCCSS_FILE ) . '/includes/public.php';
} elseif( ! defined( 'DOING_AJAX' ) ) {
require_once dirname( SCCSS_FILE ) . '/includes/admin.php';
}
.site-info {
display: none;
}
Is that the place to put it? Thanks, Sabine
Hi Sabine,
CSS can't be placed inside a PHP file.
Once the plugin is activated, you should see a "Custom CSS" link under the "Appearance" tab in your Dashboard - that's where you want to add it.