The FORUM HOME would certainly be the right place to find the body tag for the main forum page. Deeper into the site, of course, you'd modify the body tag from a different template, like FORUMDISPLAY or SHOWTHREAD, for example.
You've got a reference to a .js file in your header template. I might have put it in my headinclude template, but it should work in the header template, just so long as it's in place before the body tag. However:
in this code:
Quote:
<script src=http://www.namedomain.com/forum/popup/awesomepopup.js"></script>
|
you are calling an external javascript file, namely awesomepopup.js in your forum/popup folder. This file has to be uploaded to that folder. (maybe you're way ahead of me on this) It should contain the javascript function specification for the "checkCount" function, which you call with a parameter of 3 in your body tag onload attribute (this is an event). Of course "namedomain.com" is your web site address.
Have you uploaded that file? Should be on the site where you got the code.