Template Includes
Template includes is pieces of HTML code that can be included in any template. These pieces of HTML code could be headers, footers or menu bars. It almost works like SSI's (server side includes) or Java Script Includes. Note that the template includes will only work in the PowerSeek templates. It will work in any template used by PowerSeek.

No template includes available yet.


Add a New Template Include
Name:
Only alphabetical or numerical characters allowed. Underscores also allowed. Once the include has been created you may reference it in any template by providing the name surrounded by  %%_incl and %%. For example, lets say your template include name is header. You will then be able to use %%incl_header%% in any template to include the HTML code of the include called header.
Template Include HTML Code:

Template Help

Note that when you make use of images in the HTML code of templates, you must use a URL link to indicate their locations.
For example:

<img src="someimage.gif"> will not work.
 
You have to indicate the entire URL where someimage.gif is located. For example:
    
<img src="http://www.yourdomain.com/someimage.gif">
   
The <img is an HTML tag indicating that you want to insert an image in the HTML page. The src= part indicates that you want to specify the location of the image to be inserted. Some web editors will support inserting images from a web url and some won't. If your web editor does not support this, insert the image into the HTML page like usual and when finished edit the source of the HTML code and manually insert the URL path's to the images. Ensure that the images are on the server for the URL path's you specify.

Example, editing the HTML source code:

Replace <img src="someimage.gif"> with
<img src="http://www.yourdomain.com/someimage.gif">