Hello everyone. Great information on Browser prefs works really well. Hey does anyone know how to add an Icon to the hit counter module. I tried doing the same as with browser prefs and I do get icon but not where i wanted it.
PHP Code:
defined( '_VALID_MOS' ) or die( 'Direct Access to this location is not allowed.' );
global $frontend_language;
global $my_language;
$content.="<img src=\"$mosConfig_live_site/modules/browser_prefs/bookmark.png\" border=\"0\"/>";
$query = "SELECT sum(hits) AS count FROM #__stats_agents WHERE type='1'";
$database->setQuery( $query );
$hits = $database->loadResult();
if ($hits == NULL) {
echo "0 "._VISITORS;
} else {
echo "$hits "._VISITORS;
}
?>
My Icon is showingin up this way
Here is the way I would like my icon to show

before the vistor count number.
Also anyone know how to change text "vistors" would like to change or add words? I got this idea from
http://www.stupidscifi.com/
Any help would be appreciated.