So guys! If you are using an external counter, and do not want to show real attendance (for different reasons) the best option is - Hide counter!
This is done simply ...
Paste this in style.css (or are built in the style of page)
Code:
div.stats {
display:inline;
height:0px;
left:-1000px;
margin:0px;
padding:0px;
position:absolute;
top:-1000px;
visibility:hidden;
width:0px }
Well, in html after <body> writing this
HTML Code:
<div class="stats"><!-- SuperLog -->
код счётчика
<!-- /SuperLog --></div>
The same can be applied not to the outside counter, but then have to constantly change the code. (or cut, or insert)
|