<?xml version="1.0" encoding="UTF-8" ?>

<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">
	<channel>
			<title>CubeCart v3 Documentation Feed </title>
			<link>http://www.cubecartforums.org/docs/repository/cubecart-v3-feed.html</link>
			<description></description>
			<language>en</language>
			<copyright>CubeCartForums.org Documentation 2006</copyright>
			<ttl>120</ttl><item> 
<title>Thumbnails Explained</title>
<link>http://www.cubecartforums.org/docs/CubeCart-v3/faq/thumbnails-explained.html</link>
<description><![CDATA[  
 








<div id="toc">
<h2>Page Contents</h2> 
<ol></li>
</ol>
</div>
<h2>CubeCart Thumbnails Explained</h2>
CubeCart generates product thumbnails automatically when you assign an image to a product. The size of the thumbnail is determined by the size setting you have entered inside the admin area under General Settings:
<br/><br/>
<img src="http://www.cubecartforums.org/docs/images/cc3/faq/thumbnails/generalsettingimg.jpg" alt=""/>
<br/><br/>
As you can see it only allows you to enter one number for thumbnail size. It doesn't allow you to enter both a width and a height. So what it does with that number is resize the longest side of the image to that number and the other side is then sized proportional to the original image.
<br/><br/>
Further explanation on size: If the product image is horizontal, or wider than it is tall, the width of the thumbnail will be the sized in pixels to the number that is set in general settings and the height of the image will be proportional to the height of the original image. If the product image is vertical or taller than it is wide, the height of the thumbnail will be the sized in pixels to the number that is set in general settings and the width of the image will be proportional to the original product image that you uploaded.
<br/><br/>
For example:<br/>
<img src="http://www.cubecartforums.org/docs/images/cc3/faq/thumbnails/thumbexample.jpg" alt=""/>
<br/><br/>

<h2>How this works in conjunction with the skin</h2>
It really depends on how your skin is coded. I'm going to use one of CubeCarts original skins Classic as an example of the problems and solutions for common problems with thumbnails. These techniques are used by many free and commercial skins available for CubeCart.

<h2>Thumbnails on the homepage in Latest Products</h2>

The thumbnails here are inside divs along with the product's title and price, imagine invisible boxes if you don't understand divs. These boxes float left and line up in horizontal rows. If your thumbnails are all the exact same height then you won't run into many problems. But if your thumbnails vary in height your layout might look like this:
<br/><br/>
<img src="http://www.cubecartforums.org/docs/images/cc3/faq/thumbnails/jumble.jpg" alt=""/>
<br/><br/>
A common fix for this problem is to add a height to the div that contains the the thumbnails, title and price:
v4 Classic already has this, and the newer versions of Classic that come with v3 also have this.
<br/><br/>
This is from 'layout.css':
<div class="codebox">.latestProds  {<br/>
float:left;<br/>
height:120px;<br/>
text-align:center;<br/>
width:131px;<br/>
}</div>

Using the example above, this almost works for all our images, except those that are too big.

<br/><br/>
<img src="http://www.cubecartforums.org/docs/images/cc3/faq/thumbnails/fixstep1.jpg" alt=""/>
<br/><br/>
An easy fix for this would be to increase the height of the div, here's an example of an increase from a height of 120px to a height of 195px so that we can see the entire image, it's title, and it's price.

<br/><br/>
This is from 'layout.css':
<div class="codebox">.latestProds  {<br/>
float:left;<br/>
height:195px;<br/>
text-align:center;<br/>
width:131px;<br/>
}</div>

The result:
<br/><br/>
<img src="http://www.cubecartforums.org/docs/images/cc3/faq/thumbnails/fixstep2.jpg" alt=""/>
<br/><br/>

For some people this fix is sufficient, for others they would like for the titles and the prices to line up, too. Here's where it gets tricky, because there are different ways to accomplish this.
<br/><br/>
One technique is the add a div that contains only the thumbnail and add attributes to that div that tell it to crop the image if the image is longer or wider than a certain setting. Here's how you do this:
<br/><br/>
<strong>Step 1:</strong> You need to add html to the template file. Open up yourskin/styleTemplates/content/index.tpl and find the thumbnail image:
<br/><br/>

<div class="codebox">
&lt;a href=&quot;index.php?act=viewProd&amp;amp;productId={VAL_PRODUCT_ID}&quot;&gt;&lt;img src=&quot;{VAL_IMG_SRC}&quot; alt=&quot;{VAL_PRODUCT_NAME}&quot; border=&quot;0&quot; title=&quot;{VAL_PRODUCT_NAME}&quot; /&gt;&lt;/a&gt;
</div>

Now you need to put that image inside a surrounding div, this is what that code looks like:<br/>

<div class="codebox">&lt;div class=&quot;imgcrop&quot;&gt;&lt;a   href=&quot;index.php?act=viewProd&amp;amp;productId={VAL_PRODUCT_ID}&quot;&gt;&lt;img   src=&quot;{VAL_IMG_SRC}&quot; alt=&quot;{VAL_PRODUCT_NAME}&quot; border=&quot;0&quot;   title=&quot;{VAL_PRODUCT_NAME}&quot; /&gt;&lt;/a&gt;&lt;/div&gt;</div>

<strong>Step 2:</strong> You need to add the css for that surrounding div to 'layout.css':

<div class="codebox">.imgcrop {<br/>
height: 100px;<br/>
width: 100px;<br/>
overflow: hidden;<br/>
text-align:center;<br/>
margin:0px auto;<br/>
}</div>

This code basically makes an invisible box that is exactly 100x100 any image that is larger that this will be cut off and will align top left inside the invisible box. Any image that is smaller than 100x100 will align top and centre.
<br/><br/>
Here's our example with this code (I also changed the height of div.latestproduct to 175px from 195px):
<br/><br/>
<img src="http://www.cubecartforums.org/docs/images/cc3/faq/thumbnails/fixstep3.jpg" alt=""/>
<br/><br/>

This will fix most, if you have mega-long product titles and want the prices to line up exact, you will need to use this same technique for the titles. Place the title in a surrounding div and give that div a height. This is just a basic example, you can get as fancy as you want for this area, you can even recode your category pages to look just like your latest product area. 

<h2>Other issues:</h2>
Featured Product box will have issues with large thumbnails.

<br/><br/>
<img src="http://www.cubecartforums.org/docs/images/cc3/faq/thumbnails/featprob.jpg" alt=""/>
<br/><br/>
<strong>Fix technique #1</strong>, add code to the CSS which crops anything that tries to go outside of the box.<br/>
<br/>
This is code from the 'layout.css' stylesheet:

<div class="codebox">.boxContentLeft, .boxContentRight {<br/>
background-color:#EBEDFE;<br/>
border:1px solid #000000;<br/>
margin-bottom:10px;<br/>
padding-bottom:5px;<br/>
padding-left:5px;<br/>
padding-top:3px;<br/>
}</div>

Add this:
<div class="codebox">overflow: hidden;</div>

For example:
<div class="codebox">.boxContentLeft, .boxContentRight {<br/>
background-color:#EBEDFE;<br/>
border:1px solid #000000;<br/>
margin-bottom:10px;<br/>
padding-bottom:5px;<br/>
padding-left:5px;<br/>
padding-top:3px;<br/>
overflow: hidden;<br/>
}</div>

The result:
<br/><br/>
<img src="http://www.cubecartforums.org/docs/images/cc3/faq/thumbnails/featprobfix1.jpg" alt=""/>
<br/><br/>


<strong>Fix technique #2</strong>, add a width to the image to it never can get too big.<br/>
<br/>
This is code from yourskin/styleTemplates/boxes/randomProd.tpl:

<div class="codebox">&lt;img src=&quot;{IMG_SRC}&quot; alt=&quot;{PRODUCT_NAME}&quot; border=&quot;0&quot; title=&quot;{PRODUCT_NAME}&quot; /&gt;</div>

Now add a width:
<div class="codebox">&lt;img src=&quot;{IMG_SRC}&quot; alt=&quot;{PRODUCT_NAME}&quot; border=&quot;0&quot; title=&quot;{PRODUCT_NAME}&quot; width=&quot;130&quot; /&gt;
</div>

The result:
<br/><br/>
<img src="http://www.cubecartforums.org/docs/images/cc3/faq/thumbnails/featprobfix2.jpg" alt=""/>
<br/><br/>

<strong>Fix technique #3</strong>, add a surrounding div to the image, set width and height and add an overflow:hidden; attribute. This is the same technique we used above for the Latest Product box.
<br/><br/>
Category pages for some skins will have issues with thumbnails that are too wide.<br/>
<br/>
For example:
<br/><br/>
<img src="http://www.cubecartforums.org/docs/images/cc3/faq/thumbnails/catproblem.jpg" alt=""/>
<br/><br/>
For the example above, any image over 190px wide will push table which contains it out too wide. You can use the same 3 techniques used above to fix this problem.

 ]]></description>
<pubDate>Thu, 10 Jun 2010 09:23:15 +0000</pubDate>
<guid isPermaLink="false">http://www.cubecartforums.org/docs/CubeCart-v3/faq/thumbnails-explained.html</guid>
<dc:creator>CubeCartForums.org Documentation</dc:creator> 

</item> <item> 
<title>prodImages.tpl</title>
<link>http://www.cubecartforums.org/docs/CubeCart-v3/Customising-CubeCart/skin-template-layout/popup-template/prodimages.tpl.html</link>
<description><![CDATA[  
 








<div id="toc">
<h2>Page Contents</h2> 
<ol></li>
</ol>
</div>
<h2>Description</h2>
Additional image popup page, as clicked on when additional images are assigned to a product. This template is the entire page for the popup images page, therefore includes all the usual HTML page information, header and body tags.
<br/><br/>
<h2>Template file location</h2>
<p>/skins/YOUR_SKIN/styleTemplates/popup/prodImages.tpl</p>

<h2>Control file location</h2>
<p>extra/prodImages.php</p>



<h2>Basic template structure</h2>

<div class="codebox">

&lt;!-- BEGIN: prod_images --&gt;<br/>
<br/>
  				&lt;!-- BEGIN: thumbs --&gt;<br/>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Repeating thumbnail images.<br/>
  				&lt;!-- END: thumbs --&gt;<br/>
  			<br/>
  &lt;!-- END: prod_images --&gt;



</div> ]]></description>
<pubDate>Wed, 20 Jun 2007 16:04:46 +0000</pubDate>
<guid isPermaLink="false">http://www.cubecartforums.org/docs/CubeCart-v3/Customising-CubeCart/skin-template-layout/popup-template/prodimages.tpl.html</guid>
<dc:creator>CubeCartForums.org Documentation</dc:creator> 

</item> <item> 
<title>No Products in Category</title>
<link>http://www.cubecartforums.org/docs/CubeCart-v3/faq/no-products-in-category.html</link>
<description><![CDATA[  
 








<div id="toc">
<h2>Page Contents</h2> 
<ol></li>
</ol>
</div>
<br/>
<h2>Overview</h2>
When there are no products in a category, a message appears on the category page:

<p>There are no products in this category.</p>

The message does not always apply if the category descriptions mod has been installed, or there are subcategories within that category.<br/><br/>

Therefore to remove this message there are two ways of doing it, removal in the language file, or removal in the skin.
<br/><br/>



<h2>Removal from the skin.</h2>
Removal from the skin automatically affects all languages the store uses.
<br/><br/>
Edit:
<p> /skins/SKIN_NAME/styleTemplates/content/viewCat.tpl</p>

Find near the bottom:
<div class="codebox">
&lt;!-- BEGIN: noProducts --&gt;<br/>
&lt;div&gt;{TXT_NO_PRODUCTS}&lt;/div&gt;<br/>
&lt;!-- END: noProducts --&gt;
</div>
Remove, or comment out the following:
<div class="codebox">
&lt;div&gt;{TXT_NO_PRODUCTS}&lt;/div&gt;<br/>
</div>
Save and Upload.
<br/><br/>
<h2>Removal from the language file.</h2>
Removal from the language file only affects the language it is removed from.
<br/><br/>
Edit:
<p>/language/LANG_CODE/lang.inc.php</p>

Find this line, around line 1984:
<div class="codebox">'no_prods_in_cat' =&gt; &quot;There are no products in this category.&quot;,</div>

Remove the comment within the quotes, as shown below:
<div class="codebox">'no_prods_in_cat' =&gt; &quot;&quot;,</div>

Save and Upload. ]]></description>
<pubDate>Sun, 17 Jun 2007 15:18:13 +0000</pubDate>
<guid isPermaLink="false">http://www.cubecartforums.org/docs/CubeCart-v3/faq/no-products-in-category.html</guid>
<dc:creator>CubeCartForums.org Documentation</dc:creator> 

</item> <item> 
<title>popup.css</title>
<link>http://www.cubecartforums.org/docs/CubeCart-v3/Customising-CubeCart/skin-stylesheets/popup.css.html</link>
<description><![CDATA[ The following styles are found in the popup.css file located here:
<p>skins/YOUR_SKIN/styleSheets/popup.css</p>
<br/>
<table width="100%" border="0" cellspacing="10" cellpadding="0">
  <tr>
    <td class="DocsCol1Title" nowrap="nowrap" >Style</td>
    <td class="DocsColMainTitle">Description</td>
  </tr> 
 <tr>
    <td class="DocsCol1" nowrap="nowrap">body</td>
    <td class="DocsColMain">Sets styles for the HTML <strong>body</strong> tag.</td>
  </tr> 
 <tr>
    <td class="DocsCol1" nowrap="nowrap">#pageSurround</td>
    <td class="DocsColMain">Sets styles for the pageSurround id, used as a surrounding division in <a href="CubeCart-v4/customising-cubecart/skin-template-layout/content-templates/account.tpl.html" title="Account template.">prodImages.tpl</a>.</td>
  </tr>  
 <tr>
    <td class="DocsCol1" nowrap="nowrap">#divThumbsImg</td>
    <td class="DocsColMain">Thumbnail image surrounding area.</td>
  </tr> 
 <tr>
    <td class="DocsCol1" nowrap="nowrap">.thumbsImg</td>
    <td class="DocsColMain">Each thumbnail image.</td>
  </tr>  
 <tr>
    <td class="DocsCol1" nowrap="nowrap">#divMainImg</td>
    <td class="DocsColMain">Enlarged image area.</td>
  </tr> 
 <tr>
    <td class="DocsCol1" nowrap="nowrap">a.popupLink</td>
    <td class="DocsColMain">The close window link.</td>
  </tr>  
 <tr>
    <td class="DocsCol1" nowrap="nowrap">a.popupLink:hover</td>
    <td class="DocsColMain">The close window link hover effect.</td>
  </tr> 
 <tr>
    <td class="DocsCol1" nowrap="nowrap">.txtCopyright, <br/>a.txtCopyright</td>
    <td class="DocsColMain">Formats the copyright text, this class is not found in template files but is coded into php files.</td>
  </tr>  
 <tr>
    <td class="DocsCol1" nowrap="nowrap">a.txtCopyright:hover</td>
    <td class="DocsColMain">Controls copyright text behavior on rollover.</td>
  </tr> 
</table>
<br/> ]]></description>
<pubDate>Wed, 20 Jun 2007 16:48:22 +0000</pubDate>
<guid isPermaLink="false">http://www.cubecartforums.org/docs/CubeCart-v3/Customising-CubeCart/skin-stylesheets/popup.css.html</guid>
<dc:creator>CubeCartForums.org Documentation</dc:creator> 

</item> <item> 
<title>layout.css</title>
<link>http://www.cubecartforums.org/docs/CubeCart-v3/Customising-CubeCart/skin-stylesheets/layout.css.html</link>
<description><![CDATA[ The following styles are found in the layout.css file located here:
<p>skins/YOUR_SKIN/styleSheets/layout.css</p>
<br/>

<table width="100%" border="0" cellspacing="10" cellpadding="0">
  <tr>
    <td class="DocsCol1Title" nowrap="nowrap" >Style</td>
    <td class="DocsColMainTitle">Description</td>
  </tr> 
 <tr>
    <td class="DocsCol1" nowrap="nowrap">body</td>
    <td class="DocsColMain">Sets styles for the HTML <strong>body</strong> tag.</td>
  </tr> 
 <tr>
    <td class="DocsCol1" nowrap="nowrap">#pageSurround</td>
    <td class="DocsColMain">Sets styles for the pageSurround id, used as a surrounding division in <a href="CubeCart-v3/Customising-CubeCart/skin-template-layout/global-templates.html" title="The global templates are used for the overall top level template of the site, usually determining the general design layout.">global/index.tpl</a> and <a href="CubeCart-v3/Customising-CubeCart/skin-template-layout/global-templates.html" title="The global templates are used for the overall top level template of the site, usually determining the general design layout.">global/cart.tpl</a>.</td>
  </tr> 
 <tr>
    <td class="DocsCol1" nowrap="nowrap">#topHeader</td>
    <td class="DocsColMain">Sets styles for the topHeader id, used as a top-of-page division in <a href="CubeCart-v3/Customising-CubeCart/skin-template-layout/global-templates.html" title="The global templates are used for the overall top level template of the site, usually determining the general design layout.">global/index.tpl</a> and <a href="CubeCart-v3/Customising-CubeCart/skin-template-layout/global-templates.html" title="The global templates are used for the overall top level template of the site, usually determining the general design layout.">global/cart.tpl</a>.</td>
  </tr> 
 <tr>
    <td class="DocsCol1" nowrap="nowrap">.boxTitleLeft, <br/>.boxTitleRight</td>
    <td class="DocsColMain">Classes for the side box title bars, used in practically all files appearing in the styleTemplates/boxes folder.</td>
  </tr> 
 <tr>
    <td class="DocsCol1" nowrap="nowrap">.boxContentLeft, <br/>.boxContentRight</td>
    <td class="DocsColMain">Sets styles for the side box "<a href="CubeCart-v3/Customising-CubeCart/skin-template-layout/boxes-templates.html" title="The boxes templates are used for the accompanying side boxes that appear in the store. These boxes add essential features for the store to function.">content boxes</a>".</td>
  </tr> 
 <tr>
    <td class="DocsCol1" nowrap="nowrap">.colLeft</td>
    <td class="DocsColMain">Properties for the left column that contains all the left-side boxes, found in the <a href="CubeCart-v3/Customising-CubeCart/skin-template-layout/global-templates.html" title="The global templates are used for the overall top level template of the site, usually determining the general design layout.">Global templates</a>.</td>
  </tr> 
 <tr>
    <td class="DocsCol1" nowrap="nowrap">.colMid</td>
    <td class="DocsColMain">Properties for the large center column that contains all the main page content, found in the <a href="CubeCart-v3/Customising-CubeCart/skin-template-layout/global-templates.html" title="The global templates are used for the overall top level template of the site, usually determining the general design layout.">Global templates</a>.</td>
  </tr> 
 <tr>
    <td class="DocsCol1" nowrap="nowrap">.colRight</td>
    <td class="DocsColMain">Properties for the right column that contains all the right-side boxes, found in the <a href="CubeCart-v3/Customising-CubeCart/skin-template-layout/global-templates.html" title="The global templates are used for the overall top level template of the site, usually determining the general design layout.">Global templates</a>.</td>
  </tr> 
 <tr>
    <td class="DocsCol1" nowrap="nowrap">.boxContent</td>
    <td class="DocsColMain">Container divisions for holding all the main content appearing in center column.</td>
  </tr> 
 <tr>
    <td class="DocsCol1" nowrap="nowrap">.colLeftCheckout</td>
    <td class="DocsColMain">Properties for the left column that contains cart navigation on the cart pages.</td>
  </tr> 
 <tr>
    <td class="DocsCol1" nowrap="nowrap">.colMainCheckout</td>
    <td class="DocsColMain">Container division for holding all the content appearing in large right-side main column of cart pages.</td>
  </tr> 
 <tr>
    <td class="DocsCol1" nowrap="nowrap">.siteDocs</td>
    <td class="DocsColMain">Controls the site doc links container in the documents template, <a href="CubeCart-v3/Customising-CubeCart/skin-template-layout/boxes-templates/sitedocs.tpl.html" title="Site Documents template.">siteDocs.tpl</a></td>
  </tr> 
 <tr>
    <td class="DocsCol1" nowrap="nowrap">.pagination</td>
    <td class="DocsColMain">Styles the pagination text from category pages, in <a href="CubeCart-v3/Customising-CubeCart/skin-template-layout/content-templates/viewcat.tpl.html" title="Category template.">viewCat.tpl</a>.</td>
  </tr> 
 <tr>
    <td class="DocsCol1" nowrap="nowrap">#subCats</td>
    <td class="DocsColMain">Containing division id for the area holding subcats on the category pages, in <a href="CubeCart-v3/Customising-CubeCart/skin-template-layout/content-templates/viewcat.tpl.html" title="Category template.">viewCat.tpl</a></td>
  </tr> 
 <tr>
    <td class="DocsCol1" nowrap="nowrap">.subCat</td>
    <td class="DocsColMain">Individual container divisions class for subcats, in <a href="CubeCart-v3/Customising-CubeCart/skin-template-layout/content-templates/viewcat.tpl.html" title="Category template.">viewCat.tpl</a>.</td>
  </tr> 
 <tr>
    <td class="DocsCol1" nowrap="nowrap">.regSep</td>
    <td class="DocsColMain">Separator for sections, used only on the step 1 page of cart, <a href="CubeCart-v3/Customising-CubeCart/skin-template-layout/content-templates/step1.tpl.html" title="Step 1 template.">step1.tpl</a>.</td>
  </tr> 
 <tr>
    <td class="DocsCol1" nowrap="nowrap">.latestProds</td>
    <td class="DocsColMain">A new class in later CubeCart 3 versions for aid in controlling Latest Products appearance on the homepage template, <a href="CubeCart-v3/Customising-CubeCart/skin-template-layout/content-templates/index.tpl.html" title="Index or homepage template.">content/index.tpl</a>.</td>
  </tr> 
</table>
<br/>
 ]]></description>
<pubDate>Wed, 20 Jun 2007 16:48:22 +0000</pubDate>
<guid isPermaLink="false">http://www.cubecartforums.org/docs/CubeCart-v3/Customising-CubeCart/skin-stylesheets/layout.css.html</guid>
<dc:creator>CubeCartForums.org Documentation</dc:creator> 

</item> <item> 
<title>style.css</title>
<link>http://www.cubecartforums.org/docs/CubeCart-v3/Customising-CubeCart/skin-stylesheets/style.css.html</link>
<description><![CDATA[ The following styles are found in the style.css file located here:
<p>skins/YOUR_SKIN/styleSheets/style.css</p>
<br/>

<table width="100%" border="0" cellspacing="10" cellpadding="0">
  <tr>
    <td class="DocsCol1Title" nowrap="nowrap" >Style</td>
    <td class="DocsColMainTitle">Description</td>
  </tr> 
 <tr>
    <td class="DocsCol1" nowrap="nowrap">.searchBtn</td>
    <td class="DocsColMain">The search button, used in <a href="CubeCart-v3/Customising-CubeCart/skin-template-layout/boxes-templates/searchform.tpl.html" title="Search form template.">search.tpl</a>.</td>
  </tr> 
 <tr>
    <td class="DocsCol1" nowrap="nowrap">.searchBox</td>
    <td class="DocsColMain">The text entry search box, used in <a href="CubeCart-v3/Customising-CubeCart/skin-template-layout/boxes-templates/searchform.tpl.html" title="Search form template.">search.tpl</a>.</td>
  </tr>  
 <tr>
    <td class="DocsCol1" nowrap="nowrap">.textbox</td>
    <td class="DocsColMain">The text entry box used for the customer registration, mailing list, customer profile text entry boxes etc</td>
  </tr> 
 <tr>
    <td class="DocsCol1" nowrap="nowrap">.textboxDisabled</td>
    <td class="DocsColMain"></td>
  </tr>  
 <tr>
    <td class="DocsCol1" nowrap="nowrap">.submit</td>
    <td class="DocsColMain">The submit button, used in most text entry forms.</td>
  </tr> 
 <tr>
    <td class="DocsCol1" nowrap="nowrap">form, ol, ul</td>
    <td class="DocsColMain">General settings for forms, ordered and unordered list.</td>
  </tr>  
 <tr>
    <td class="DocsCol1" nowrap="nowrap">li</td>
    <td class="DocsColMain">A general setting for list items. This covers bullet point and numbered items throughout the store and in the rich text editor.</td>
  </tr> 
 <tr>
    <td class="DocsCol1" nowrap="nowrap">li.bullet</td>
    <td class="DocsColMain">Categories and Cart navigation menu list item, as well as other site boxes that use bullets in the list.</td>
  </tr>  
 <tr>
    <td class="DocsCol1" nowrap="nowrap">li.bulletLrg</td>
    <td class="DocsColMain">Used for the 'Tell-a-friend' link on the product detail template <a href="CubeCart-v3/Customising-CubeCart/skin-template-layout/content-templates/viewprod.tpl.html" title="Product details template.">viewProd.tpl</a>.</td>
  </tr> 
 <tr>
    <td class="DocsCol1" nowrap="nowrap">li.num</td>
    <td class="DocsColMain">Used for numbered list items, like the sale items and popular products.</td>
  </tr>  
 <tr>
    <td class="DocsCol1" nowrap="nowrap">li.account</td>
    <td class="DocsColMain">Customer account items, used in <a href="CubeCart-v3/Customising-CubeCart/skin-template-layout/content-templates/account.tpl.html" title="Account template.">account.tpl</a></td>
  </tr> 
 <tr>
    <td class="DocsCol1" nowrap="nowrap">.txtSession, <br/>a.txtSession, <br/>a.txtSession:hover</td>
    <td class="DocsColMain">Login, logout and search text uses the txtSession class for formatting in both <a href="CubeCart-v3/Customising-CubeCart/skin-template-layout/boxes-templates/searchform.tpl.html" title="Search form template.">searchForm.tpl</a> and <a href="CubeCart-v3/Customising-CubeCart/skin-template-layout/boxes-templates/session.tpl.html" title="Session template.">session.tpl</a>.</td>
  </tr>  
 <tr>
    <td class="DocsCol1" nowrap="nowrap">.txtCopy</td>
    <td class="DocsColMain">Text in the Information box, Mailing List box and the Featured Product's product name are controlled with this, used in <a href="CubeCart-v3/Customising-CubeCart/skin-template-layout/boxes-templates/info.tpl.html" title="Store Information template.">info.tpl</a>, <a href="CubeCart-v3/Customising-CubeCart/skin-template-layout/boxes-templates/maillist.tpl.html" title="Mailing List template.">mailList.tpl</a> and <a href="CubeCart-v3/Customising-CubeCart/skin-template-layout/boxes-templates/randomprod.tpl.html" title="Random or Featured Products template.">randomProd.tpl</a></td>
  </tr>  
 <tr>
    <td class="DocsCol1" nowrap="nowrap">.txtSiteDocs, <br/>a.txtSiteDocs, <br/>a.txtSiteDocs:hover</td>
    <td class="DocsColMain">This class is used to control the appearance of Site Document links, and is used only in <a href="CubeCart-v3/Customising-CubeCart/skin-template-layout/boxes-templates/sitedocs.tpl.html" title="Site Documents template.">siteDocs.tpl</a>. <em>Important Note:</em> The .siteDocs classes are repeated twice in this stylesheet by error of CubeCart in most versions. You should take care to find and delete the dual occurrences.</td>
  </tr> 
 <tr>
    <td class="DocsCol1" nowrap="nowrap">a.txtButton</td>
    <td class="DocsColMain">Buy and More and Add to Basket buttons, found on category and products pages, these are coded in <a href="CubeCart-v3/Customising-CubeCart/skin-template-layout/content-templates/viewcat.tpl.html" title="Category template.">viewCat.tpl</a> and <a href="CubeCart-v3/Customising-CubeCart/skin-template-layout/content-templates/viewprod.tpl.html" title="Product details template.">viewProd.tpl</a></td>
  </tr> 
 <tr>
    <td class="DocsCol1" nowrap="nowrap">a.txtButton:hover</td>
    <td class="DocsColMain">As with all the CSS classes, the initial a. denotes behavior as a link, and :hover denotes behavior on mouse rollover.</td>
  </tr>  
 <tr>
    <td class="DocsCol1" nowrap="nowrap">.txtOldPrice</td>
    <td class="DocsColMain">This controls the look of an original price, when posted together with a sale price; by default it is text with a line striking through it. This class is coded in a php file rather than a template file.</td>
  </tr> 
 <tr>
    <td class="DocsCol1" nowrap="nowrap">.txtSale</td>
    <td class="DocsColMain">This controls the look of an sale price, and is coded in <a href="CubeCart-v3/Customising-CubeCart/skin-template-layout/content-templates/index.tpl.html" title="Index or homepage template.">content/index.tpl</a>, <a href="CubeCart-v3/Customising-CubeCart/skin-template-layout/content-templates/viewcat.tpl.html" title="Category template.">viewCat.tpl</a> and <a href="CubeCart-v3/Customising-CubeCart/skin-template-layout/content-templates/viewprod.tpl.html" title="Product details template.">viewProd.tpl</a></td>
  </tr>  
 <tr>
    <td class="DocsCol1" nowrap="nowrap">.txtOutOfStock</td>
    <td class="DocsColMain">The words "OUT OF STOCK" are styled with this class, used in <a href="CubeCart-v3/Customising-CubeCart/skin-template-layout/content-templates/viewcat.tpl.html" title="Category template.">viewCat.tpl</a> and <a href="CubeCart-v3/Customising-CubeCart/skin-template-layout/content-templates/viewprod.tpl.html" title="Product details template.">viewProd.tpl</a></td>
  </tr> 
 <tr>
    <td class="DocsCol1" nowrap="nowrap">.txtSiteDocs, <br/>a.txtSiteDocs</td>
    <td class="DocsColMain">See above: txtSiteDocs appears twice by error in CubeCart stylesheets, be sure to delete one full set.</td>
  </tr>  
 <tr>
    <td class="DocsCol1" nowrap="nowrap">a.txtSiteDocs:hover</td>
    <td class="DocsColMain">See above.</td>
  </tr>  
 <tr>
    <td class="DocsCol1" nowrap="nowrap">.txtDefault, <br/>a.txtDefault, <br/>a.txtDefault:hover</td>
    <td class="DocsColMain">Named txtDefault because it used extensively throughout CubeCart; you will find it in <a href="CubeCart-v3/Customising-CubeCart/skin-template-layout/boxes-templates/cartnavi.tpl.html" title="Cart Navigation Useful Links Menu.">cartNavi.tpl</a>, <a href="CubeCart-v3/Customising-CubeCart/skin-template-layout/boxes-templates/categories.tpl.html" title="Categories Menu.">categories.tpl</a>, <a href="CubeCart-v3/Customising-CubeCart/skin-template-layout/boxes-templates/popularproducts.tpl.html" title="Popular Products template.">popularProducts.tpl</a>, <a href="CubeCart-v3/Customising-CubeCart/skin-template-layout/boxes-templates/randomprod.tpl.html" title="Random or Featured Products template.">randomProd.tpl</a>, <a href="CubeCart-v3/Customising-CubeCart/skin-template-layout/boxes-templates/saleitems.tpl.html" title="Sale Items template.">saleItems.tpl</a>, <a href="CubeCart-v3/Customising-CubeCart/skin-template-layout/content-templates/account.tpl.html" title="Account template.">account.tpl</a>, <a href="CubeCart-v3/Customising-CubeCart/skin-template-layout/content-templates/index.tpl.html" title="Index or homepage template.">content/index.tpl</a>, <a href="CubeCart-v3/Customising-CubeCart/skin-template-layout/content-templates/login.tpl.html" title="Customer login template.">login.tpl</a>, <a href="CubeCart-v3/Customising-CubeCart/skin-template-layout/content-templates/step1.tpl.html" title="Step 1 template.">step1.tpl</a>, <a href="CubeCart-v3/Customising-CubeCart/skin-template-layout/content-templates/viewcat.tpl.html" title="Category template.">viewCat.tpl</a>, and <a href="CubeCart-v3/Customising-CubeCart/skin-template-layout/content-templates/vieworder.tpl.html" title="Customer order history list template.">viewOrder.tpl</a>.</td>
  </tr>  
 <tr>
    <td class="DocsCol1" nowrap="nowrap">a.txtLink, <br/>a.txtLink:hover</td>
    <td class="DocsColMain">This style controls only the order links in the view orders page of a customer's account, coded in <a href="CubeCart-v3/Customising-CubeCart/skin-template-layout/content-templates/vieworders.tpl.html" title="Customer order template.">viewOrders.tpl</a></td>
  </tr>  
 <tr>
    <td class="DocsCol1" nowrap="nowrap">a.txtLocation, <br/>a.txtLocation:hover</td>
    <td class="DocsColMain">"Breadcrumb" links in the location text, top of category and product pages, but the class is not coded in templates, it is coded in the corresponding php files.</td>
  </tr>  
 <tr>
    <td class="DocsCol1" nowrap="nowrap">.txtContentTitle</td>
    <td class="DocsColMain">Titles in the main content area, example, "Welcome to CubeCart" and "Latest Products" - this class is used in every file appearing in the styleTemplates/content/ folder</td>
  </tr>  
 <tr>
    <td class="DocsCol1" nowrap="nowrap">.txtBoxSave</td>
    <td class="DocsColMain">Used only in Sale Items box to indicate amount of savings on sale items, coded in <a href="CubeCart-v3/Customising-CubeCart/skin-template-layout/boxes-templates/saleitems.tpl.html" title="Sale Items template.">saleItems.tpl</a></td>
  </tr>  
 <tr>
    <td class="DocsCol1" nowrap="nowrap">.tblList</td>
    <td class="DocsColMain">Sets properties for the product list table in view Cat pages, used in <a href="CubeCart-v3/Customising-CubeCart/skin-template-layout/content-templates/viewcat.tpl.html" title="Category template.">viewCat.tpl</a>.</td>
  </tr>  
 <tr>
    <td class="DocsCol1" nowrap="nowrap">.tdListTitle</td>
    <td class="DocsColMain">Title bar in the product list from view cat page</td>
  </tr>  
 <tr>
    <td class="DocsCol1" nowrap="nowrap">.tdEven</td>
    <td class="DocsColMain">tdEven and tdOdd set the alternating colors for the rows in the product list of view cat page</td>
  </tr>  
 <tr>
    <td class="DocsCol1" nowrap="nowrap">.tdOdd</td>
    <td class="DocsColMain">tdEven and tdOdd set the alternating colors for the rows in the product list of view cat page</td>
  </tr>  
 <tr>
    <td class="DocsCol1" nowrap="nowrap">.txtCartPrice</td>
    <td class="DocsColMain">Controls much of the text in the shopping cart side box, used in shoppingCart.tpl</td>
  </tr>  
 <tr>
    <td class="DocsCol1" nowrap="nowrap">.txtCart</td>
    <td class="DocsColMain">Controls much other of the text in the shopping cart side box, used in <a href="CubeCart-v3/Customising-CubeCart/skin-template-layout/boxes-templates/shoppingcart.tpl.html" title="Shopping Cart template.">shoppingCart.tpl</a></td>
  </tr>  
 <tr>
    <td class="DocsCol1" nowrap="nowrap">.cartTotal</td>
    <td class="DocsColMain">Controls the total shown in the shopping cart side box, used in <a href="CubeCart-v3/Customising-CubeCart/skin-template-layout/boxes-templates/shoppingcart.tpl.html" title="Shopping Cart template.">shoppingCart.tpl</a></td>
  </tr>  
 <tr>
    <td class="DocsCol1" nowrap="nowrap">a.txtCartProduct:active, <br/>a.txtCartProduct:link, <br/>a.txtCartProduct:visited, <br/>a.txtCartProduct:hover</td>
    <td class="DocsColMain">Products listed in the shopping cart box are also links to product pages, these styles control the look of those links</td>
  </tr>  
 <tr>
    <td class="DocsCol1" nowrap="nowrap">a.txtviewCart:active, <br/>a.txtviewCart:link, <br/>a.txtviewCart:visited, <br/>a.txtviewCart:hover</td>
    <td class="DocsColMain">The button for View Cart in the shopping cart box</td>
  </tr>  
 <tr>
    <td class="DocsCol1" nowrap="nowrap">.cartProgress</td>
    <td class="DocsColMain">The checkout progress indicator.</td>
  </tr>  
 <tr>
    <td class="DocsCol1" nowrap="nowrap">.txtcartProgressCurrent</td>
    <td class="DocsColMain">Current stage of the checkout process.</td>
  </tr> 
 <tr>
    <td class="DocsCol1" nowrap="nowrap">.quickBuy</td>
    <td class="DocsColMain">The "add a product id" section appearing in top of cart checkout pages.</td>
  </tr> 
 <tr>
    <td class="DocsCol1" nowrap="nowrap">.tdcartTitle</td>
    <td class="DocsColMain">Title bar for the product list table for products being purchased on shopping cart pages, the same styles are used for tables on register page, and customer account view orders pages, used in <a href="CubeCart-v3/Customising-CubeCart/skin-template-layout/content-templates/cart.tpl.html" title="Cart or Basket template.">content/cart.tpl</a>, <a href="CubeCart-v3/Customising-CubeCart/skin-template-layout/content-templates/reg.tpl.html" title="Customer registration template.">reg.tpl</a>, <a href="CubeCart-v3/Customising-CubeCart/skin-template-layout/content-templates/vieworder.tpl.html" title="Customer order history list template.">viewOrder.tpl</a> and <a href="CubeCart-v3/Customising-CubeCart/skin-template-layout/content-templates/vieworders.tpl.html" title="Customer order template.">viewOrders.tpl</a></td>
  </tr> 
 <tr>
    <td class="DocsCol1" nowrap="nowrap">.tdcartEven</td>
    <td class="DocsColMain">tdcartEven and tdcartOdd set the alternating colors for the rows in tables for cart product list and view orders lists</td>
  </tr> 
 <tr>
    <td class="DocsCol1" nowrap="nowrap">.tdcartOdd</td>
    <td class="DocsColMain">tdcartEven and tdcartOdd set the alternating colors for the rows in tables for cart product list and view orders lists</td>
  </tr> 
 <tr>
    <td class="DocsCol1" nowrap="nowrap">.tdCartSubTotal</td>
    <td class="DocsColMain">Subtotal in shopping cart.</td>
  </tr> 
 <tr>
    <td class="DocsCol1" nowrap="nowrap">a.txtCheckout</td>
    <td class="DocsColMain">"Continue" button in cart pages, for continuing checkout, also used in register and confirmed pages, <a href="CubeCart-v3/Customising-CubeCart/skin-template-layout/content-templates/cart.tpl.html" title="Cart or Basket template.">cart.tpl</a>, <a href="CubeCart-v3/Customising-CubeCart/skin-template-layout/content-templates/step1.tpl.html" title="Step 1 template.">step1.tpl</a>, <a href="CubeCart-v3/Customising-CubeCart/skin-template-layout/content-templates/gateway.tpl.html" title="Gateway (step 5) template.">gateway.tpl</a>, <a href="CubeCart-v3/Customising-CubeCart/skin-template-layout/content-templates/reg.tpl.html" title="Customer registration template.">reg.tpl</a>, <a href="CubeCart-v3/Customising-CubeCart/skin-template-layout/content-templates/confirmed.tpl.html" title="Order confirmation template.">confirmed.tpl</a>.</td>
  </tr> 
 <tr>
    <td class="DocsCol1" nowrap="nowrap">a.txtUpdate</td>
    <td class="DocsColMain">"Update Cart" button in checkout screens, <a href="CubeCart-v3/Customising-CubeCart/skin-template-layout/content-templates/cart.tpl.html" title="Cart or Basket template.">cart.tpl</a> and <a href="CubeCart-v3/Customising-CubeCart/skin-template-layout/content-templates/step1.tpl.html" title="Step 1 template.">step1.tpl</a>.</td>
  </tr> 
 <tr>
    <td class="DocsCol1" nowrap="nowrap">.txtStockWarn</td>
    <td class="DocsColMain">Stock warning text found only in cart page.</td>
  </tr> 
 <tr>
    <td class="DocsCol1" nowrap="nowrap">.txtError</td>
    <td class="DocsColMain">Error text formating, used in <a href="CubeCart-v3/Customising-CubeCart/skin-template-layout/content-templates/changepass.tpl.html" title="Change password template.">changePass.tpl</a>, <a href="CubeCart-v3/Customising-CubeCart/skin-template-layout/content-templates/profile.tpl.html" title="Profile template.">profile.tpl</a>, <a href="CubeCart-v3/Customising-CubeCart/skin-template-layout/content-templates/reg.tpl.html" title="Customer registration template.">reg.tpl</a>, <a href="CubeCart-v3/Customising-CubeCart/skin-template-layout/content-templates/tellafriend.tpl.html" title="Tell a friend template.">tellafriend.tpl</a> and <a href="CubeCart-v3/Customising-CubeCart/skin-template-layout/content-templates/unsubscribe.tpl.html" title="Unsubscribe template.">unsubscribe.tpl</a>.</td>
  </tr> 
 <tr>
    <td class="DocsCol1" nowrap="nowrap">.txtCopyright, <br/>a.txtCopyright</td>
    <td class="DocsColMain">Formats the copyright text, this class is not found in template files but is coded into php files.</td>
  </tr> 
 <tr>
    <td class="DocsCol1" nowrap="nowrap">a.txtCopyright:hover</td>
    <td class="DocsColMain">Controls copyright text behavior on rollover.</td>
  </tr> 
 <tr>
    <td class="DocsCol1" nowrap="nowrap">.dropDown</td>
    <td class="DocsColMain">Sets styles for the dropdown boxes used in <a href="CubeCart-v3/Customising-CubeCart/skin-template-layout/boxes-templates/currency.tpl.html" title="Currency template">currency.tpl</a> and <a href="CubeCart-v3/Customising-CubeCart/skin-template-layout/boxes-templates/language.tpl.html" title="Language template">language.tpl</a></td>
  </tr>
</table>
<br/>
 ]]></description>
<pubDate>Wed, 20 Jun 2007 16:49:17 +0000</pubDate>
<guid isPermaLink="false">http://www.cubecartforums.org/docs/CubeCart-v3/Customising-CubeCart/skin-stylesheets/style.css.html</guid>
<dc:creator>CubeCartForums.org Documentation</dc:creator> 

</item> <item> 
<title>overWeight.tpl</title>
<link>http://www.cubecartforums.org/docs/CubeCart-v3/Customising-CubeCart/skin-template-layout/content-templates/overweight.tpl.html</link>
<description><![CDATA[  
 








<div id="toc">
<h2>Page Contents</h2> 
<ol></li>
</ol>
</div>
<h2>Description</h2>
If the products in the cart are overweight.
<br/><br/>
<h2>Template file location</h2>
<p>/skins/YOUR_SKIN/styleTemplates/content/overWeight.tpl</p>

<h2>Control file location</h2>
<p>/includes/content/overWeight.inc.php</p>


<h2>Basic template structure</h2>

<div class="codebox">
&lt;!-- BEGIN: over_weight --&gt;<br/>
<br/>
&lt;!-- END: over_weight --&gt;

</div>
 ]]></description>
<pubDate>Thu, 14 Jun 2007 14:25:02 +0000</pubDate>
<guid isPermaLink="false">http://www.cubecartforums.org/docs/CubeCart-v3/Customising-CubeCart/skin-template-layout/content-templates/overweight.tpl.html</guid>
<dc:creator>CubeCartForums.org Documentation</dc:creator> 

</item> <item> 
<title>noShip.tpl</title>
<link>http://www.cubecartforums.org/docs/CubeCart-v3/Customising-CubeCart/skin-template-layout/content-templates/noship.tpl.html</link>
<description><![CDATA[  
 








<div id="toc">
<h2>Page Contents</h2> 
<ol></li>
</ol>
</div>
<h2>Description</h2>
If no shipping is configured.
<br/><br/>
<h2>Template file location</h2>
<p>/skins/YOUR_SKIN/styleTemplates/content/noShip.tpl</p>

<h2>Control file location</h2>
<p>/includes/content/noShip.inc.php</p>


<h2>Basic template structure</h2>

<div class="codebox">
&lt;!-- BEGIN: no_ship --&gt;<br/>
<br/>
&lt;!-- END: no_ship --&gt;

</div>
 ]]></description>
<pubDate>Thu, 14 Jun 2007 14:22:30 +0000</pubDate>
<guid isPermaLink="false">http://www.cubecartforums.org/docs/CubeCart-v3/Customising-CubeCart/skin-template-layout/content-templates/noship.tpl.html</guid>
<dc:creator>CubeCartForums.org Documentation</dc:creator> 

</item> <item> 
<title>dnExpire.tpl</title>
<link>http://www.cubecartforums.org/docs/CubeCart-v3/Customising-CubeCart/skin-template-layout/content-templates/dnexpire.tpl.html</link>
<description><![CDATA[  
 








<div id="toc">
<h2>Page Contents</h2> 
<ol></li>
</ol>
</div>
<h2>Description</h2>
This template is displayed if a digital download link has expired.
<br/><br/>
<h2>Template file location</h2>
<p>/skins/YOUR_SKIN/styleTemplates/content/dnExpire.tpl</p>

<h2>Control file location</h2>
<p>/includes/content/dnExpire.inc.php</p>


<h2>Basic template structure</h2>

<div class="codebox">
&lt;!-- BEGIN: dn_expire --&gt;<br/>
<br/>
&lt;!-- END: dn_expire --&gt;
</div> ]]></description>
<pubDate>Thu, 14 Jun 2007 13:23:13 +0000</pubDate>
<guid isPermaLink="false">http://www.cubecartforums.org/docs/CubeCart-v3/Customising-CubeCart/skin-template-layout/content-templates/dnexpire.tpl.html</guid>
<dc:creator>CubeCartForums.org Documentation</dc:creator> 

</item> <item> 
<title>confirmed.tpl</title>
<link>http://www.cubecartforums.org/docs/CubeCart-v3/Customising-CubeCart/skin-template-layout/content-templates/confirmed.tpl.html</link>
<description><![CDATA[  
 








<div id="toc">
<h2>Page Contents</h2> 
<ol></li>
</ol>
</div>
<h2>Description</h2>
This template is viewed after the transaction has completed. It displays the order success or failure messages.
<br/><br/>
<h2>Template file location</h2>
<p>/skins/YOUR_SKIN/styleTemplates/content/confirmed.tpl</p>

<h2>Control file location</h2>
<p>/includes/content/confirmed.inc.php</p>


<h2>Basic template structure</h2>

<div class="codebox">

&lt;!-- BEGIN: confirmation --&gt;<br/>
<br/>
	&lt;!-- BEGIN: session_true --&gt;<br/>
	<br/>
&nbsp;&nbsp;&nbsp;&nbsp;		&lt;!-- BEGIN: order_success --&gt;<br/>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; The order was successful.<br/>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;		&lt;!-- BEGIN: aff_track --&gt;<br/>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Affiliate tracking details.<br/>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;		&lt;!-- END: aff_track --&gt;<br/>
&nbsp;&nbsp;&nbsp;&nbsp;		&lt;!-- END: order_success --&gt;<br/>
		<br/>
&nbsp;&nbsp;&nbsp;&nbsp;		&lt;!-- BEGIN: order_failed --&gt;<br/>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Order failed.<br/>
&nbsp;&nbsp;&nbsp;&nbsp;		&lt;!-- END: order_failed --&gt;<br/>
<br/>
	&lt;!-- END: session_true --&gt;<br/>
	<br/>
	&lt;!-- BEGIN: session_false --&gt;<br/>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Page view not valid.<br/>
	&lt;!-- END: session_false --&gt;<br/>
			<br/>
&lt;!-- END: confirmation --&gt;
 	

</div> ]]></description>
<pubDate>Thu, 14 Jun 2007 13:13:48 +0000</pubDate>
<guid isPermaLink="false">http://www.cubecartforums.org/docs/CubeCart-v3/Customising-CubeCart/skin-template-layout/content-templates/confirmed.tpl.html</guid>
<dc:creator>CubeCartForums.org Documentation</dc:creator> 

</item> 	</channel>
</rss>
