Originally Posted by JAISP
Ok I figured it out

This:
Code
{$config.BASE_URL}/images/{$style_array.general}/newpm.gif

equals this:

Code
http://www.yourdomain.com/forums/images/general/default/newpm.gif

Now this is assuming your style is the default board style. If you are using a style with it's own image folder such as "beagleworld" then "default" would be "beagleworld".

Yes! That's what I am trying to do BUT it is not parsing. I must need to put something else to cause the code to parse.

This is what I have in my HTML includes Tab in the Default Header box:

HTML
<table class="t_inner" align="center" width="800">
<tr>
<td align="center" valign="middle" width="325">
<a href="http://YOUR_FORUM_URL/" target="_top">
<img src="{$config.BASE_URL}/images/{$style_array.general}/header.jpg" border="0" alt="FORUM NAME" width="500" height="100"></a>
</td>
<td align="center" valign="middle">

<!--// This gives you another column for ads, etc //-->

</td>
</tr>
</table>

The table is working, but I get a broken image icon instead of the header image. And when I right-click on the broken image icon and copy the image address, I'm getting:

http://$config.BASE_URL}/images/{$style_array.general}/header.jpg

In other words - the issue is that the $config.BASE_URL and $style_array.general parts are not getting parsed! What do I need to do to my code above so that in interprets $config.BASE_URL" to be www.mysite.com/forums/ ???