You dont know how much i appreciate your help. So i have to create a seperate if statement for the section below if i want to include a certain banner?
Im guessing there needs to be an if statement for every different forum description if i want the banner to be different?
For this particular section i want this code to show the banner referenced.
<td class="alt1"><div align="center"><a href="http://jhmotorsports.com/shop" target="_blank"><img src="http://www.audizine.com/images/banners/jhm_v8_234.gif" alt="JHMotorsports" border="0"></a></div></td>
Quote:
Originally Posted by Lynne
If you can't find the template name above the area, then it could be because it is the main template for the whole page. However, in this case it looks like you just needed to look up the page source a few more lines and you would have seen the Start of the Navbar template which is the template it's in. Another way to find the template is a Search in Templates for comments. Like try a Search in Templates for "NAVBAR POPUP MENUS" which is right below your area of interest. You'd then find this in the template right above that comment and this is the area you'll want to modify:
HTML Code:
<if condition="$show['forumdesc']">
<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center">
<tr>
<td class="alt1" width="100%"><strong>$foruminfo[title]</strong> <span class="smallfont">$foruminfo[description]</span></td>
</tr>
</table>
<br />
</if>
|