View Single Post
  #2  
Old 24th March 2012, 12:59
harry007 harry007 is offline
Member
 
Join Date: Jun 2010
Australia
Posts: 12
Default
Post your bittorrent.php or rather just post the code thats on line 306

Thats not what its telling you at all. That path makes no sense unless of course you have a directory called layout.css....

Should be /themes/darkblue/template.php


So make sure you have the directory darkblue in the themes directory. Open the stdhead and stdfoot php's. Make sure the paths are correct. Should be

/templates/darkblue/

If its not and its more like this /templates/2/

Rename the darkblue folder inside the theme directory to the number 2
Then check that your calling the correct css file.

Should be:
Code:
<link rel='stylesheet' href='templates/darkblue/darkblue.css' type='text/css' />
if its not change to

Code:
<link rel='stylesheet' href='templates/2/2.css' type='text/css' />
So in other words just make sure the names match the calls.
Reply With Quote