Support for ShopSite is provided by the hosting company where your store is located, not directly from ShopSite. But generally something such as template design and implementation is not provided even by the hosting company because there are too many variables involved. But implementing a template isn't as hard as you are making it out to be.
Lets go back to the beginning and look at the page that your referred to
http://www.gamestop.com/Catalog/Product ... t_id=20679 .
Lets just look at the product area since that is what you seem to be wanting most.
Breaking it out it looks like there is a table with a row at the top that contains the product name and the brand of game that it is. Below that is a row that contains a picture of the product on the left and to the right of that the 2 subproducts one on top of the other in a table. The subproducts are also tables with the top row containing the type of product (new/used)
The next row contains the price and add to cart button. The next row contains some text and add to wish list, The next row contains either nothing as in the New product or some text explaining about the product.
So to create the product template lets start with the product part.
- Code: Select all
<table>
<tr><td></td><td></td></tr>
<tr><td></td><td><table></table></td></tr>
</table>
Now lets flesh it out a bit by putting in the tags the generate the particular information needed.
- Code: Select all
<table>
<tr><td>[-- product.name --]</td><td>[-- product.field1 --]</td></tr>
<tr><td>[-- product.graphic --]</td>
<td><table><tr><td>[-- loop subproducts --][-- subproducts -- [--end_loop subproducts --]</td></tr></table></td></tr>
</table>
Ok, so much for the product part now what about the subproduct
- Code: Select all
<table>
<tr><td>[-- product.field2 --]</td><td></td></tr>
<tr><td>[-- product.price</td><td>[--product.add_to_cart --]</td></tr>
<tr><td>[-- product.field3 --</td><td></td></tr>
<tr><td COLSPAN=2>[-- product.field4 --]</td></tr>
</table>
That gives the basics of the layout for the product and subproducts. Now to put it in template format.
- Code: Select all
[-- define subproduct --]
<table>
<tr><td>[-- product.field2 --]</td><td></td></tr>
<tr><td>[-- product.price</td><td>[--product.add_to_cart --]</td></tr>
<tr><td>[-- product.field3 --</td><td></td></tr>
<tr><td COLSPAN=2>[-- product.field4 --]</td></tr>
</table>
[-- end_define subproduct --]
[-- define product --]
<table>
<tr><td>[-- product.name --]</td><td>[-- product.field1 --]</td></tr>
<tr><td>[-- product.graphic --]</td>
<td><table><tr><td>[-- loop subproducts --] [-- subproducts -- [--end_loop subproducts --]</td></tr></table></td></tr>
</table>
[-- end_define product --]
In the code above I assume that:
product field 1: brand of machine game is for
Product field 2: new or used
product field 3: shipping message
product field 4: additional text such as guarantee
If you don't have a version of ShopSite that includes those fields you could use what ever fields are available and maybe include more complete information into a single field and modify the template to just use that field.
This doesn't do any formatting of the text with styles but if you view the source of the sample page you referred to you can see how that is done. If you have something such as front page to do your initial layout you can just use the html that is generated in that program and insert the template tags in the appropriate place like I have done above.
Hope that helps.