Hide Statistics on the footer Hitskin_logo Hitskin.com

This is a Hitskin.com skin preview
Install the skinReturn to the skin page

The forum of the forums
Would you like to react to this message? Create an account in a few clicks or log in to continue.
4 posters

    Hide Statistics on the footer

    Maki1
    Maki1
    Hyperactive


    Male Posts : 2529
    Reputation : 442
    Language : English »» CSS Stylesheet
    Location : The » Support » forum » Section! • No support by PM If you need custom theme please contact me!

    Hide Statistics on the footer Empty Hide Statistics on the footer

    Post by Maki1 October 5th 2010, 11:08 am

    Where can I Hide Statistics on the footer cuz I have put a image on the Statistics and that shows on the footer.
    Darren1
    Darren1
    Helper
    Helper


    Male Posts : 11853
    Reputation : 566
    Language : English

    Hide Statistics on the footer Empty Re: Hide Statistics on the footer

    Post by Darren1 October 5th 2010, 11:18 am

    Hi,

    You can't "hide" it completely from everyone, as the option allows admin, member, mod.
    Admin panel >> users & Groups > Special rights > Forum Statistics :

    I don't think that that would hide the image, you would have to remove the image it's self.
    Maki1
    Maki1
    Hyperactive


    Male Posts : 2529
    Reputation : 442
    Language : English »» CSS Stylesheet
    Location : The » Support » forum » Section! • No support by PM If you need custom theme please contact me!

    Hide Statistics on the footer Empty Re: Hide Statistics on the footer

    Post by Maki1 October 5th 2010, 12:12 pm

    Hi, Darren1

    I already know that but I want to hide it since I am the only one on the forum.
    kirk
    kirk
    Forumaster


    Male Posts : 11037
    Reputation : 653
    Language : English,Vulcan,Klingon, Romulan,& Gorn

    Hide Statistics on the footer Empty Re: Hide Statistics on the footer

    Post by kirk October 5th 2010, 7:04 pm

    do you have any footer options in your css?
    because other then that you wont be able to edit the footer because you can only edit templates with phpbb2 and punbb

    there may be a couple different ways to do it with css but i would have to see your css or see exactly what you want to put to possibly create a css code to add.
    Maki1
    Maki1
    Hyperactive


    Male Posts : 2529
    Reputation : 442
    Language : English »» CSS Stylesheet
    Location : The » Support » forum » Section! • No support by PM If you need custom theme please contact me!

    Hide Statistics on the footer Empty Re: Hide Statistics on the footer

    Post by Maki1 October 5th 2010, 7:26 pm

    Hi, kirk

    Here is the code for it

    Code:
    a[href="/stats.htm"] {
        background-image:url("http://icons.iconarchive.com/icons/dryicons/aesthetica-2/24/chart-icon.png");
        background-position:left middle;
        background-repeat:no-repeat;
        padding-top:10px;
        padding-left:27px;
        padding-bottom:10px;
        }

    But I want to hide the Statistics where I have mark with the arrow.
    Hide Statistics on the footer Thisaa10
    kirk
    kirk
    Forumaster


    Male Posts : 11037
    Reputation : 653
    Language : English,Vulcan,Klingon, Romulan,& Gorn

    Hide Statistics on the footer Empty Re: Hide Statistics on the footer

    Post by kirk October 5th 2010, 7:36 pm

    Maki1 wrote:Hi, kirk

    Here is the code for it

    Code:
    a[href="/stats.htm"] {
        background-image:url("http://icons.iconarchive.com/icons/dryicons/aesthetica-2/24/chart-icon.png");
        background-position:left middle;
        background-repeat:no-repeat;
        padding-top:10px;
        padding-left:27px;
        padding-bottom:10px;
        }

    But I want to hide the Statistics where I have mark with the arrow.
    Hide Statistics on the footer Thisaa10

    try this

    Code:
    a[href=""] {
        background-image:url("");
        background-position:left middle;
        background-repeat:no-repeat;
        padding-top:10px;
        padding-left:27px;
        padding-bottom:10px;
        }
    Maki1
    Maki1
    Hyperactive


    Male Posts : 2529
    Reputation : 442
    Language : English »» CSS Stylesheet
    Location : The » Support » forum » Section! • No support by PM If you need custom theme please contact me!

    Hide Statistics on the footer Empty Re: Hide Statistics on the footer

    Post by Maki1 October 5th 2010, 8:00 pm

    Now isn't show on both => http://makisforum.forumotion.com/
    Maki1
    Maki1
    Hyperactive


    Male Posts : 2529
    Reputation : 442
    Language : English »» CSS Stylesheet
    Location : The » Support » forum » Section! • No support by PM If you need custom theme please contact me!

    Hide Statistics on the footer Empty Re: Hide Statistics on the footer

    Post by Maki1 October 7th 2010, 6:16 pm

    Bump!!
    kirk
    kirk
    Forumaster


    Male Posts : 11037
    Reputation : 653
    Language : English,Vulcan,Klingon, Romulan,& Gorn

    Hide Statistics on the footer Empty Re: Hide Statistics on the footer

    Post by kirk October 7th 2010, 7:27 pm

    ok well you have it out of the footer.
    now look and see if you have css for the (who's online section.)
    should be almost the same thing for stats.. you would just remove it like i did in the first code then hit save.
    RoNo
    RoNo
    Active Poster


    Male Posts : 1270
    Reputation : 135
    Language : English
    Location : Laguna Beach, California

    Hide Statistics on the footer Empty Re: Hide Statistics on the footer

    Post by RoNo October 10th 2010, 9:53 pm

    Maki1 wrote:Where can I Hide Statistics on the footer cuz I have put a image on the Statistics and that shows on the footer.
    It's only visible to Administrators but you can avoid
    displaying a stats footer image by editing the original stats
    image code I posted... add .h3 to display the top image only
    Code:
    .h3 a[href="/stats.htm"] {
        background-image:url("YOUR IMAGE ADDRESS HERE");
        background-position:left middle;
        background-repeat:no-repeat;
        padding-top:19px;
        padding-left:27px;
        padding-bottom:10px;
        }
    Maki1
    Maki1
    Hyperactive


    Male Posts : 2529
    Reputation : 442
    Language : English »» CSS Stylesheet
    Location : The » Support » forum » Section! • No support by PM If you need custom theme please contact me!

    Hide Statistics on the footer Empty Re: Hide Statistics on the footer

    Post by Maki1 October 10th 2010, 11:00 pm

    Thank you Smile this is solved.
    RoNo
    RoNo
    Active Poster


    Male Posts : 1270
    Reputation : 135
    Language : English
    Location : Laguna Beach, California

    Hide Statistics on the footer Empty Re: Hide Statistics on the footer

    Post by RoNo October 10th 2010, 11:25 pm