Could you explain to total noobs where this scipt would end? For sure it would go somewhere into the board's setup script, would it?
I'm talking about
http://sssscomic.com/, and I couldn't detect the CMS (Wordpress, Drupal, Joomla, ...) you're using (surely a home-made?), it will be easy. You need to go on the FTP of the website and you have two choices :
1) Put it in the headerThere should be something like
"head.php" or "header.php", open it and look for the end of the balise head which means
"</head>" and
insert the script just before "</head>.
For : Is easy
Cons : Will be loaded on ALL the pages.
2) Put it directly into comic.phpGo into
comic.php, and look if there isn't any "</body>". If there is, i
nsert the script just before "</body>" If the isn't just insert the script at the end of comic.php.
For : Will only be loaded on comic.php.
Cons : A little bit more add to insert.
Extra: If you know a little about html, it's cleanest to put the script into a file like "shortcuts_comics.js" and insert "<script src="shortcuts_comics.js"></script>" (src is the path to the file, it can be relative, here the file is at the same place as comic.php) instead of all the script block I gave you. It will make the website look cleaner and load faster.
More infos here