Hello Paul, if you check the templates and classes code, you will figure out everything how it works. For images links for example, there is 2 methods you can use, the first is to use direct links as usual as you do in any regular html static page, like: http://www.x.com/classifieds/theme/Default/myimage.gif in this example you should upload the image file myimage.gig to the server folder: classifieds/theme/Default the second method is to let the software insert the theme images url in your templates and you  replace ("http://www.x.com/classifieds/theme/Default")  the above link with this class 
 
 
	| 
	 
	Code: HTML
	  
	<!--CLASS::Theme_Images_URL--> 
	 
	
	 |  
 
 
so your link to the image should be : 
 
 
	| 
	 
	Code: HTML
	  
	<!--CLASS::Theme_Images_URL-->/myimage.gif 
	 
	
	 |  
 
 
 |