Support » Theme: Customizr » Removing the bar below the Footer Credit Area

  • Resolved tangobest

    (@tangobest)


    HI Customizr support teams
    first of all I thank you so much for the support you give me when ever i request.
    I want to remove the bar with color #d0f2a5 below the footer credit . or if i can make it similar color like the footer credit area which is green. I tried to hid it many times but not successful.
    please assist.
    my link

Viewing 6 replies - 1 through 6 (of 6 total)
  • Try to add

    #wpstats {
    display:none;
    }

    to your custom css or child theme style.css

    This should help http://wordpress.org/support/topic/avoid-wp-stats-little-face-at-the-bottom-of-my-pages?replies=10

    Should just need to add img#wpstats{display:none} to your themes CSS

    The issue is the little smiley face in the bottom left corner coming from the WP Stats plugin

    Add

    img#wpstats { display: block; height: 0; }

    to your custom CSS panel in Dashboard > Appearance > Customize or in your child theme’s style.css

    By the way, you have an error on your website:

    Failed to load resource: the server responded with a status of 404 (Not Found) http://www.welkessa.com/wp-content/themes/customizr-child/–/customizr/style.css

    If you’re trying to load style.css from the parent theme using an import command in the child theme’s style.css, you don’t need it with Customizr, it’s auto loaded for any child theme.

    Thread Starter tangobest

    (@tangobest)

    Hi team;
    what a great support.Problem solved with img#wpstats
    I thank you so much.

    ACUB
    Thank you for your support, I have noticed delay of my website the whole loading time is taken by the css loading . What I did load was this one to the child them. I used the import as below .
    advise me what do.

    template: customizr

    Customizr WordPress Theme, Copyright 2013 Nicolas GUILLAUME, Nice, France.
    Customizr is distributed under the terms of the GNU General Public License v2.0
    License URI: license.txt
    */
    @import url(‘–/customizr/style.css’);

    That’s wrong. Here’s how your child theme’s style.css header should look like:

    /*
     Theme Name:     Customizr Child
     Theme URI:      [Put your site's link here]
     Description:    Child theme for Customizr
     Author:         [Put your name here]
     Author URI:     [Put your personal link here]
     Template:       customizr
     Version:        1.0.0
    */

    You may change all values except Template. Delete the

    @import url('--/customizr/style.css');

    command. Normally all child themes need to import the parent theme’s stylesheet, but Customizr is auto-loading it. Actually, if Customizr didn’t load it for you, your website would have been broken now, as the command should have been

    @import url('../customizr/style.css');

    So delete that import command and add to this file any custom CSS you need for your child theme.

    Thread Starter tangobest

    (@tangobest)

    Hi Acub,
    Thank you for the great support and I did as per your advise.
    what I have in the style.css is
    /*
    Theme Name: Customizr child
    Theme URI: http://www.welkessa.com
    Description: child theme for Customizr
    Author: tango
    Author URI: http://www.welkessa.com/
    template: customizr
    Version: 3.0.13
    */
    and the website is working fine .
    THANK YOU AGAIN.

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘Removing the bar below the Footer Credit Area’ is closed to new replies.