View Single Post
  #3 (permalink)  
Old 11-12-2004, 12:47 PM
gavron1 gavron1 is offline
Junior Member
 
Join Date: Feb 2003
Posts: 15
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