Originally Posted by JAISP
Try this:

PHP Code
{$config.BASE_URL}/forums/images/{$style_array.general}/header.jpg 

That would give you something like this:

Code
http://www.yourdomainname.com/forums/images/general/header.jpg

As you have it in your current header it is calling:

Code
http://www.yourdomainname.com/images/general/header.jpg

What is is actually outputting is
PHP Code
http://{$config.BASE_URL}/forums/images/{$style_array.general}/header.jpg 
In other words, it is NOT parsing the $config.BASE_URL nor the $style_array.general parts at all. If I can figure out how to get it to parse correctly, I'm sure I can get it to work after that.