View Single Post
  #2 (permalink)  
Old 11-08-2004, 07:50 PM
mikem mikem is offline
Senior Member
 
Join Date: Sep 2002
Posts: 2,905
here are the changes needed to get the right colors!
open includes/functions.php
find

Code:
                if (file_exists("themes/$ThemeSel/$template_name/index_body.tpl")) {
                    @include($template_path . $template_name . '/' . $template_name . '.cfg');
after add

Code:
                    unset($row);
                    include($template_path . $template_name . '/theme_info.cfg');
                    $row = $$ThemeSel;
                    $row = $row[0];
That piece of code should do it Very Happy

Thanks to Mighty-Y for that info.

The theme is set right, you just need to adjust the file mentioned above.

mikem
Reply With Quote