Page 1 of 1

newbie... how to disable hit counter?

PostPosted: Thu Mar 25, 2004 4:36 am
by jelevy
I'm sure the answer is right before me... what do I need to add (or remove) to my CSS to get rid of the hit counter info on the lower left portion of my pages??

thanks

PostPosted: Thu Mar 25, 2004 5:19 am
by srijith
Theoreticaly, you cannot do it since the hit counter is generated by the Pbase system and not controlled by the CSS. You can try emailing help@pbase.com to see if they can disable it for you, though I evry much doubt it.

That said, you can tweak CSS to prevent the actual content from being displayed by the browser. Add this to the CSS code:
Code: Select all
p.small {
display:none;
}


However note these two things if you use the above code in your CSS:

1. I have no idea what else will get hidden! So if you see that some other things are also being hidden, this code could be the culprit.

2. The stats will still be visible if someone looks at the actual page sourcecode or if the browser does not support CSS.

PostPosted: Thu Mar 25, 2004 12:24 pm
by ilanphoto
moreover, visitors to your page can not see your counter so there is no real added value to hide it or am I missing something?