|
|
 |
 |
 |
PoppyDog Help Center 
How to style the Visitor Tracker
The Visitor Tracker does not specifies any styles/colors when displaying the details of who is viewing your site. Therefore the colors used are the ones that you have specified for the rest of the web page. However it is really easy to specify particular colors for the Visitor Tracker by using CSS style sheet.
- First enclose the visitor tracker HTML code paste that we give you inside
a <div></div> tag. Give the div an id attribute of value: visitortracker
i.e.
<div id="visitortracker">
Insert the URL/Code Paste code we give you here
</div>
-
Now you can specify css styling which applies only to the visitor tracker. You accomplish this by including the following two elements in your style sheet (obviously you must change the colors etc to the ones that you want) :
#visitortracker {color:#red; font-weight:bold}
#visitortracker .A {color:#black; font-weight:bold; text-decoration:none}
|