The first thing to do is search on keywords for what you want. The advanced search will let you limit the search to one subforum or other criteria.
You can add images to the body of the home page in the same place you added the "Whether you're a hardcore Gearhead..." text - define_main_page.php. Just add <img> url's. If you want to position them interestingly, you can include an id="homeImg1" tag and style #homeImg1 in your stylesheet. This is an example of how I did it for link images:
PHP Code:
<div id="homeShopView"><?php echo '<a href="' . HTTP_SERVER . DIR_WS_CATALOG . 'index.php?main_page=page&id=2"><img src="' . HTTP_SERVER . DIR_WS_CATALOG . DIR_WS_TEMPLATE . 'images/frshopview.gif" alt="Our Shop"></img></a>';?></div>
A non-linked image could look like this:
PHP Code:
<div id="homeShopView"><?php echo '<img src="' . HTTP_SERVER . DIR_WS_CATALOG . DIR_WS_TEMPLATE . 'images/frshopview.gif" alt="Our Shop"></img>';?></div>
This will display the frshopview.gif image located in /includes/templates/my_template/images/.
Bookmarks