View Single Post
Old
  (#3 (permalink))
gavron1
Junior Member
 
Status: Offline
Posts: 15
Join Date: Feb 2003
11-12-2004, 11:47 AM

Quote:
Originally Posted by mikem
check the overall_header.tpl file or the forums.css file.
The overall_header was it. I tried every other file just about, except for that one ops:

Thanks

You wouldn't happen to know how to fix my other question I posted about this theme and adding a javascript in the forums would you?

I have been trying to load the javascript to the overall_header.tpl file and it just wont show the script anywhere on the page. I know there was an issue with loading the scripts to the header.html file I had to use this fix

Quote:
Look for the block of code in theme.php like:

add this line $thefile = str_replace("\'","'",$thefile);

$tmpl_file = "themes/YOUR_THEME/header.html";
$thefile = implode("", file($tmpl_file));
$thefile = addslashes($thefile);
$thefile = "\$r_file=\"".$thefile."\";";
$thefile = str_replace("\'","'",$thefile);
eval($thefile);
print $r_file;

Is there anything like that needed for the forums header?
   
Reply With Quote