<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>getzenned.com &#187; Zen Cart Web Design</title>
	<atom:link href="http://getzenned.com/category/zen_cart_web_design/feed/" rel="self" type="application/rss+xml" />
	<link>http://getzenned.com</link>
	<description>Zen Cart Ecommerce and Word Press Design Blog</description>
	<lastBuildDate>Mon, 12 Mar 2012 05:54:57 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
		<item>
		<title>Removing Background Image From Zen Cart PopUps</title>
		<link>http://getzenned.com/2011/04/09/removing-background-image-from-zen-cart-popups/</link>
		<comments>http://getzenned.com/2011/04/09/removing-background-image-from-zen-cart-popups/#comments</comments>
		<pubDate>Sat, 09 Apr 2011 16:00:03 +0000</pubDate>
		<dc:creator>Judy</dc:creator>
				<category><![CDATA[Zen Cart Web Design]]></category>

		<guid isPermaLink="false">http://getzenned.com/?p=210</guid>
		<description><![CDATA[If you have a body background image on your zen cart store, you may notice that the popups, like larger image popup and shipping estimator popup will have this background image in it. To remove this background image, you will need to go into includes/templates/YOUR TEMPLATE NAME HERE/css/stylesheet.css and find the following code: #popupShippingEstimator, #popupSearchHelp, [...]]]></description>
			<content:encoded><![CDATA[<p>If you have a body background image on your zen cart store, you may notice that the popups, like larger image popup and shipping estimator popup will have this background image in it.  <a href="http://getzenned.com/wp-content/uploads/2011/04/zen-cart-popup-background.jpg"><img src="http://getzenned.com/wp-content/uploads/2011/04/zen-cart-popup-background-150x150.jpg" alt="zen cart popup background 150x150 Removing Background Image From Zen Cart PopUps" title="zen-cart-popup-background" width="150" height="150" class="alignright size-thumbnail wp-image-212" /></a></p>
<p>To remove this background image, you will need to go into includes/templates/YOUR TEMPLATE NAME HERE/css/stylesheet.css and find the following code:</p>
<p>#popupShippingEstimator, #popupSearchHelp, #popupAdditionalImage, #popupImage, #popupCVVHelp, #popupCouponHelp, #popupAtrribsQuantityPricesHelp, #infoShoppingCart {<br />
	background-color: #ffffff;	}</p>
<p>After the background-color code, add the following:<br />
background-image:none;</p>
<p>So, you end up with this:<br />
#popupShippingEstimator, #popupSearchHelp, #popupAdditionalImage, #popupImage, #popupCVVHelp, #popupCouponHelp, #popupAtrribsQuantityPricesHelp, #infoShoppingCart {<br />
	background-color: #ffffff;<br />
	background-image:none;<br />
	}</p>
<p>*NOTE:  background-color: #FFFFFF is the hex code for white.  You can replace the FFFFFF with any other hex codes you want that will match your template design.</p>
<div><a class="addthis_button" href="http://getzenned.com//addthis.com/bookmark.php?v=250" addthis:url='http://getzenned.com/2011/04/09/removing-background-image-from-zen-cart-popups/' addthis:title='Removing Background Image From Zen Cart PopUps '><img src="//cache.addthis.com/cachefly/static/btn/v2/lg-share-en.gif" width="125" height="16" alt="lg share en Removing Background Image From Zen Cart PopUps" style="border:0" title="Removing Background Image From Zen Cart PopUps" /></a></div>]]></content:encoded>
			<wfw:commentRss>http://getzenned.com/2011/04/09/removing-background-image-from-zen-cart-popups/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Changing the Colors of Shopping Cart Page</title>
		<link>http://getzenned.com/2010/12/12/changing-the-colors-of-shopping-cart-page/</link>
		<comments>http://getzenned.com/2010/12/12/changing-the-colors-of-shopping-cart-page/#comments</comments>
		<pubDate>Sun, 12 Dec 2010 18:39:17 +0000</pubDate>
		<dc:creator>Judy</dc:creator>
				<category><![CDATA[Zen Cart Web Design]]></category>

		<guid isPermaLink="false">http://getzenned.com/?p=187</guid>
		<description><![CDATA[On the shopping cart page of a zen cart, the default background color for the items in the cart and table headings are different shades of gray.]]></description>
			<content:encoded><![CDATA[<p>On the shopping cart page of a zen cart, the default background color for the items in the cart and table headings are different shades of gray.</p>
<p>While gray is a nice neutral color, it may not be what you want displayed on YOUR zen cart website design.  Here are a few steps to follow by editing includes/templates/YOUR TEMPLATE NAME HERE/css/stylesheet.css</p>
<p><a href="http://getzenned.com/wp-content/uploads/2010/12/rowoddeven.jpg"><img class="alignleft size-thumbnail wp-image-188" title="rowoddeven" src="http://getzenned.com/wp-content/uploads/2010/12/rowoddeven-150x150.jpg" alt="rowoddeven 150x150 Changing the Colors of Shopping Cart Page" width="150" height="150" /></a> In your stylesheet.css you will find the following code:</p>
<p>.rowOdd {<br />
background-color: #E8E8E8;<br />
height: 1.5em;<br />
vertical-align: top;<br />
}<br />
.rowEven {<br />
background-color: #F0F0F0;<br />
height: 1.5em;<br />
vertical-align: top;<br />
}</p>
<p>If you change the background-color to white eg:#ffffff this is the result you will see:</p>
<p><a href="http://getzenned.com/wp-content/uploads/2010/12/rowoddeven-white.jpg"><img class="alignleft size-medium wp-image-189" title="rowoddeven-white" src="http://getzenned.com/wp-content/uploads/2010/12/rowoddeven-white-300x120.jpg" alt="rowoddeven white 300x120 Changing the Colors of Shopping Cart Page" width="300" height="120" /></a></p>
<p>Next, you may want to change the top heading line to another color.  To do this, find the following in your stysheet.css and change the background color to the color of your choice:</p>
<p>TR.tableHeading {<br />
background-color: #cacaca;<br />
height: 2em;<br />
}</p>
<p>We have changed our heading to a green that matches the green in our website as shown here:</p>
<p><a href="http://getzenned.com/wp-content/uploads/2010/12/THtableheading.jpg"><img class="alignleft size-medium wp-image-191" title="THtableheading" src="http://getzenned.com/wp-content/uploads/2010/12/THtableheading-300x121.jpg" alt="THtableheading 300x121 Changing the Colors of Shopping Cart Page" width="300" height="121" /></a></p>
<p>If you want to change the color of the line that is at the bottom of this table, you would need to search for and revise this code:</p>
<p>.tableHeading TH {<br />
border-bottom: 1px solid #00bec8;<br />
}</p>
<p>Our next step is to change the color of the sub total bar.  In your stylesheet, find:</p>
<p>.tableHeading, #cartSubTotal {<br />
background-color: #f1d4d3;<br />
}</p>
<p>And if you want to change the color of the lines around this, you can do that here:</p>
<p>#cartSubTotal {<br />
border-top: 1px solid #cccccc;<br />
font-weight: bold;<br />
text-align: right;<br />
line-height: 2.2em;<br />
padding-right: 2.5em;<br />
}</p>
<p>In our case, we have now changed the shopping cart page to where it beautifully matches our design!</p>
<p><a href="http://getzenned.com/wp-content/uploads/2010/12/zen-shopping1.jpg"><a href="http://getzenned.com/wp-content/uploads/2010/12/finalshoppingcart.jpg"><img class="aligncenter size-medium wp-image-194" title="finalshoppingcart" src="http://getzenned.com/wp-content/uploads/2010/12/finalshoppingcart-300x148.jpg" alt="finalshoppingcart 300x148 Changing the Colors of Shopping Cart Page" width="300" height="148" /></a><br />
</a></p>
<div><a class="addthis_button" href="http://getzenned.com//addthis.com/bookmark.php?v=250" addthis:url='http://getzenned.com/2010/12/12/changing-the-colors-of-shopping-cart-page/' addthis:title='Changing the Colors of Shopping Cart Page '><img src="//cache.addthis.com/cachefly/static/btn/v2/lg-share-en.gif" width="125" height="16" alt="lg share en Changing the Colors of Shopping Cart Page" style="border:0" title="Changing the Colors of Shopping Cart Page" /></a></div>]]></content:encoded>
			<wfw:commentRss>http://getzenned.com/2010/12/12/changing-the-colors-of-shopping-cart-page/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Number of products displayed on product listing page in zen cart</title>
		<link>http://getzenned.com/2010/09/21/number-of-products-displayed-on-product-listing-page-in-zen-cart/</link>
		<comments>http://getzenned.com/2010/09/21/number-of-products-displayed-on-product-listing-page-in-zen-cart/#comments</comments>
		<pubDate>Tue, 21 Sep 2010 20:48:55 +0000</pubDate>
		<dc:creator>Judy</dc:creator>
				<category><![CDATA[Zen Cart Web Design]]></category>

		<guid isPermaLink="false">http://getzenned.com/?p=169</guid>
		<description><![CDATA[Zen Cart's default setting for the amount of products to show on the product listing page is 10 products.  If you have 30 products, your cart will display the first 10, then your customer will need to click a "next" link to see the next 10 and so on.]]></description>
			<content:encoded><![CDATA[<p><a href="http://getzenned.com/wp-content/uploads/2010/09/product-listing-zen-cart-sm.jpg"><img class="alignright size-full wp-image-171" title="product-listing-zen-cart-sm" src="http://getzenned.com/wp-content/uploads/2010/09/product-listing-zen-cart-sm.jpg" alt="product listing zen cart sm Number of products displayed on product listing page in zen cart" width="150" height="112" /></a>Zen Cart&#8217;s default setting for the amount of products to show on the product listing page is 10 products.  If you have 30 products, your cart will display the first 10, then your customer will need to click a &#8220;next&#8221; link to see the next 10 and so on.</p>
<p>To avoid confusion and possible products not being seen because visitors are not paying attention, you can revise the number of products that are displayed on your product listing page.</p>
<p>To do this, log into your admin and mouse over the word Configuration and from the drop menu select Maximum Values.    Towards the bottom you will see:  Products Listing- Number Per Page.  Click on this and on the right side a box will show up,  change the value to a larger number&#8230;.  say&#8230;. 100.  Then press the update button.</p>
<p>Another handy setting on this Maximum Values page is to be able to control how many orders and customers you see in your admin area.  You can modify these numbers by changing the values under:</p>
<p>Customer Order History List Per Page<br />
Maximum Display of Customers on Customers Page<br />
Maximum Display of Orders on Orders Page</p>
<div><a class="addthis_button" href="http://getzenned.com//addthis.com/bookmark.php?v=250" addthis:url='http://getzenned.com/2010/09/21/number-of-products-displayed-on-product-listing-page-in-zen-cart/' addthis:title='Number of products displayed on product listing page in zen cart '><img src="//cache.addthis.com/cachefly/static/btn/v2/lg-share-en.gif" width="125" height="16" alt="lg share en Number of products displayed on product listing page in zen cart" style="border:0" title="Number of products displayed on product listing page in zen cart" /></a></div>]]></content:encoded>
			<wfw:commentRss>http://getzenned.com/2010/09/21/number-of-products-displayed-on-product-listing-page-in-zen-cart/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Zen Cart Version 1.3.9f released</title>
		<link>http://getzenned.com/2010/08/19/zen-cart-version-1-3-9f-released/</link>
		<comments>http://getzenned.com/2010/08/19/zen-cart-version-1-3-9f-released/#comments</comments>
		<pubDate>Thu, 19 Aug 2010 16:10:57 +0000</pubDate>
		<dc:creator>Judy</dc:creator>
				<category><![CDATA[Zen Cart Web Design]]></category>

		<guid isPermaLink="false">http://getzenned.com/?p=162</guid>
		<description><![CDATA[It is important that anyone still running 1.3.8a upgrade to the latest version of Zen Cart for sake of security and speed of your zen cart store.]]></description>
			<content:encoded><![CDATA[<p><a href="http://getzenned.com/wp-content/uploads/2010/08/rising-sales-chart.jpg"><img class="alignleft size-thumbnail wp-image-165" title="rising-sales-chart" src="http://getzenned.com/wp-content/uploads/2010/08/rising-sales-chart-150x149.jpg" alt="rising sales chart 150x149 Zen Cart Version 1.3.9f released" width="150" height="149" /></a>New version of Zen Cart with bug fixes was released on August 16th.   Latest version is now 1.3.9F</p>
<p>It is important that anyone still running 1.3.8a upgrade to the latest   version for sake of security and speed of your zen cart store.</p>
<p>We are happy to schedule your upgrade should you need our help.    Upgrades to not include re-installation of modifications to zen cart   that might be installed on your website.</p>
<p><a href="http://zencart-ecommerce-website-design.com/index.php?main_page=product_info&amp;cPath=27&amp;products_id=139"><span style="text-decoration: underline;">Click here to order your upgrade to the latest version</span></a><br />
Updates include:<br />
* Remove obsolete portions of gzip code<br />
* Fixed problem with redundant code in ot_group_pricing<br />
* BUGSFORUM-320 &#8211; Disable GZip compression when serving downloads<br />
* BUGSFORUM-529 &#8211; no-op test of $_GET['manufacturers_id'] in product_listing.php<br />
* BUGSFORUM-626 &#8211; Fix problems with Breadcrumb:: Product Listing Title :: Buy Now Button<br />
* BUGSFORUM-962 &#8211; Deleting a Linked product caused it to delete media/artist details even though master product still exists<br />
* BUGSFORUM-1279 &#8211; Line Items not sent to PayPal properly (wasn&#8217;t fully fixed in v1.3.9e)<br />
* BUGSFORUM-1338 &#8211; &#8220;Field format error: ORIGID missing&#8221; message from PayPal &#8212; when using Back button in admin orders screen<br />
* BUGSFORUM-1339 &#8211; Fixed split_page_result.php class &#8220;bug&#8221;<br />
* BUGSFORUM-1369 &#8211; Searching with quotes does not work when clicking next button.<br />
* BUGSFORUM-1412 &#8211; fine-tuning of version-info check to fix some windows server issues<br />
* Fixed PHP4-compatibility problem in zc_install (NOTE: You shouldn&#8217;t be using PHP4 anyway!)</p>
<p>Core files that have been changed from version 1.3.9e and 1.3.9f are as follows:<br />
/admin/includes/application_bottom.php<br />
/admin/includes/classes/split_page_results.php<br />
/admin/includes/classes/language.php<br />
(only touched to fix some line-endings problems)<br />
/admin/includes/functions/general.php<br />
/admin/includes/init_includes/init_gzip.php<br />
/admin/includes/modules/product_music/delete_product_confirm.php<br />
/admin/whos_online.php<br />
/docs/<br />
/includes/version.php<br />
/includes/application_bottom.php<br />
/includes/classes/shopping_cart.php<br />
/includes/classes/split_page_results.php<br />
/includes/init_includes/init_cart_handler.php<br />
/includes/init_includes/init_gzip.php<br />
/includes/modules/product_listing.php<br />
/includes/modules/order_total/ot_tax.php (was actually changed in  v1.3.9e, but originally wasn&#8217;t properly listed in changelog, so  re-listing here)<br />
/includes/modules/order_total/ot_group_pricing.php<br />
/includes/modules/pages/advanced_search/header_php.php<br />
/includes/modules/pages/advanced_search_result/header_php.php<br />
/includes/modules/payment/paypal/paypal_curl.php<br />
/includes/modules/payment/paypal/paypal_functions.php<br />
/includes/modules/payment/paypaldp.php<br />
/includes/modules/payment/paypalwpp.php</p>
<p>/zc_install/ &#8230; assume *all* of /zc_install/ has changed</p>
<p><a href="http://zencart-ecommerce-website-design.com/index.php?main_page=product_info&amp;cPath=27&amp;products_id=139"></a></p>
<div><a class="addthis_button" href="http://getzenned.com//addthis.com/bookmark.php?v=250" addthis:url='http://getzenned.com/2010/08/19/zen-cart-version-1-3-9f-released/' addthis:title='Zen Cart Version 1.3.9f released '><img src="//cache.addthis.com/cachefly/static/btn/v2/lg-share-en.gif" width="125" height="16" alt="lg share en Zen Cart Version 1.3.9f released" style="border:0" title="Zen Cart Version 1.3.9f released" /></a></div>]]></content:encoded>
			<wfw:commentRss>http://getzenned.com/2010/08/19/zen-cart-version-1-3-9f-released/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Removing button_update_cart.gif From Shopping Cart</title>
		<link>http://getzenned.com/2010/06/20/removing-bupdate-cart-button-from-shopping-cart/</link>
		<comments>http://getzenned.com/2010/06/20/removing-bupdate-cart-button-from-shopping-cart/#comments</comments>
		<pubDate>Sun, 20 Jun 2010 06:10:54 +0000</pubDate>
		<dc:creator>Judy</dc:creator>
				<category><![CDATA[Zen Cart Web Design]]></category>

		<guid isPermaLink="false">http://getzenned.com/?p=147</guid>
		<description><![CDATA[Zen Cart's standard button_update_cart.gif is small, and a lot of my clients do not like it because they are afraid their customers will not know what it means.  The alternative is to have a larger button with text. ]]></description>
			<content:encoded><![CDATA[<p><a href="http://getzenned.com/wp-content/uploads/2010/06/button_update_cart.gif"><img class="alignleft size-full wp-image-148" title="button_update_cart" src="http://getzenned.com/wp-content/uploads/2010/06/button_update_cart.gif" alt="button update cart Removing button update cart.gif From Shopping Cart" width="24" height="32" /></a>Zen Cart&#8217;s standard button_update_cart.gif is small, and a lot of my clients do not like it because they are afraid their customers will not know what it means.  The alternative is to have a larger button with text.</p>
<div id="attachment_149" class="wp-caption alignright" style="width: 160px"><a href="http://getzenned.com/wp-content/uploads/2010/06/shopping-cart-update1.jpg"><img class="size-thumbnail wp-image-149" title="shopping-cart-update1" src="http://getzenned.com/wp-content/uploads/2010/06/shopping-cart-update1-150x150.jpg" alt="shopping cart update1 150x150 Removing button update cart.gif From Shopping Cart" width="150" height="150" /></a><p class="wp-caption-text">Click Image for larger view</p></div>
<p>Unfortunately, because Zen Cart displays this new larger button next to the quantity box (default settings), it leaves less space to the right for the product name as shown in the image to the right.  While I personally think that the update button is pretty clear as to what its function is&#8230; others don&#8217;t seem to think so.  Granted, if you enter a new amount in the quantity box and press the enter key, it will achieve the same result as if you entered the amount and pressed the update button.</p>
<p>But, if you are afraid your customer is not internet savvy enough to know what the standard update cart button is for&#8230;. then chances are they are not going to be savvy enough to press enter when changing the quantity either!</p>
<p>So, what are your choices?  We can keep the default image and hope our customers figure out some way to update their quantity either by pressing the image or hitting the enter button;  We can use the larger image and let the product name get scrunched up; We can completely REMOVE the update button altogether&#8230; but then&#8230; that pretty much defeats the purpose of trying to make things easy for those less than savvy customers.</p>
<div id="attachment_150" class="wp-caption alignleft" style="width: 160px"><a href="http://getzenned.com/wp-content/uploads/2010/06/shopping-cart-update-admin.jpg"><img class="size-thumbnail wp-image-150" title="shopping-cart-update-admin" src="http://getzenned.com/wp-content/uploads/2010/06/shopping-cart-update-admin-150x150.jpg" alt="shopping cart update admin 150x150 Removing button update cart.gif From Shopping Cart" width="150" height="150" /></a><p class="wp-caption-text">Click Image for larger view</p></div>
<p>No worries!  The Zen Cart development team has made it easy for you to have your cake and eat it too!</p>
<p>In your admin area, mouse over CONFIGURATION, then go down to STOCK.  About 3/4 of the way down the page you will see:  <em><strong>&#8220;Show Shopping Cart &#8211; Update Cart Button Location&#8221; </strong></em> If you will click on that, you will see that you have been given options on where and how to display the update cart button.  After clicking the edit button, your choices are:</p>
<p>1= Next to each Qty Box<br />
2= Below all Products<br />
3= Both Next to each Qty Box and Below all Products</p>
<div id="attachment_151" class="wp-caption alignright" style="width: 160px"><a href="http://getzenned.com/wp-content/uploads/2010/06/shopping-cart-update2.jpg"><img class="size-thumbnail wp-image-151 " title="shopping-cart-update2" src="http://getzenned.com/wp-content/uploads/2010/06/shopping-cart-update2-150x150.jpg" alt="shopping cart update2 150x150 Removing button update cart.gif From Shopping Cart" width="150" height="150" /></a><p class="wp-caption-text">Larger Image</p></div>
<p>If we change this from the default of #3, to #2, then the update button will no longer show up next to the quantity box, but your larger image with text on it will still show up under the shopping cart total line to the right of your Continue Shopping button!</p>
<p>This should make it easier for those less internet savvy customers to update their carts as they need to and still maintains a nicely spaced shopping cart page in the process.</p>
<div><a class="addthis_button" href="http://getzenned.com//addthis.com/bookmark.php?v=250" addthis:url='http://getzenned.com/2010/06/20/removing-bupdate-cart-button-from-shopping-cart/' addthis:title='Removing button_update_cart.gif From Shopping Cart '><img src="//cache.addthis.com/cachefly/static/btn/v2/lg-share-en.gif" width="125" height="16" alt="lg share en Removing button update cart.gif From Shopping Cart" style="border:0" title="Removing button update cart.gif From Shopping Cart" /></a></div>]]></content:encoded>
			<wfw:commentRss>http://getzenned.com/2010/06/20/removing-bupdate-cart-button-from-shopping-cart/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New Release of Zen Cart</title>
		<link>http://getzenned.com/2010/05/05/new-release-of-zen-cart/</link>
		<comments>http://getzenned.com/2010/05/05/new-release-of-zen-cart/#comments</comments>
		<pubDate>Thu, 06 May 2010 04:53:31 +0000</pubDate>
		<dc:creator>Judy</dc:creator>
				<category><![CDATA[Zen Cart Web Design]]></category>

		<guid isPermaLink="false">http://getzenned.com/?p=140</guid>
		<description><![CDATA[A new release of Zen Cart has been issued which contains many changed core files as well as updates for security.  Current release is 1.3.9b. ]]></description>
			<content:encoded><![CDATA[<p>A new release of Zen Cart has been issued which contains many changed core files as well as updates for security.  Current release is 1.3.9b.</p>
<p>For those of you wishing to upgrade your sites yourself, please pay very careful attention to all core files that have been changed since the version you are using.  Many modifications for zen cart will end up needing to be updated for this new version, so keep in mind that some mods you have installed may not work.</p>
<p>A few modifications that I know of that definately will not work without new releases are those that use the products table &#8211; such as stock by attributes, dual pricing and group pricing per item.</p>
<p>Also important is that you do your upgrade in a different directory and port over your database into a new one for the upgrade.  Once all is running the way you need it, then you can move files over to your main site.</p>
<p>Should you wish for me to do the upgrade for you, you can find that service here &#8211; <a title="zen cart upgrade to 1.3.9" href="http://zencart-ecommerce-website-design.com/index.php?main_page=product_info&amp;cPath=27&amp;products_id=139" target="_blank">UPGRADE from 1.3+ to 13.9b</a> Keep in mind that this upgrade does not include updating modifications.</p>
<div><a class="addthis_button" href="http://getzenned.com//addthis.com/bookmark.php?v=250" addthis:url='http://getzenned.com/2010/05/05/new-release-of-zen-cart/' addthis:title='New Release of Zen Cart '><img src="//cache.addthis.com/cachefly/static/btn/v2/lg-share-en.gif" width="125" height="16" alt="lg share en New Release of Zen Cart" style="border:0" title="New Release of Zen Cart" /></a></div>]]></content:encoded>
			<wfw:commentRss>http://getzenned.com/2010/05/05/new-release-of-zen-cart/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Removing Left or Right Columns on Ez Pages</title>
		<link>http://getzenned.com/2010/02/02/removing-left-or-right-columns-on-ez-pages/</link>
		<comments>http://getzenned.com/2010/02/02/removing-left-or-right-columns-on-ez-pages/#comments</comments>
		<pubDate>Wed, 03 Feb 2010 05:06:07 +0000</pubDate>
		<dc:creator>Judy</dc:creator>
				<category><![CDATA[Zen Cart Web Design]]></category>

		<guid isPermaLink="false">http://getzenned.com/?p=100</guid>
		<description><![CDATA[Do you ever have the need to make one or more of your zen cart ez pages take up the full width of your site and not display the left and/or right side columns? ]]></description>
			<content:encoded><![CDATA[<p>Do you ever have the need to make one or more of your zen cart ez pages take up the full width of your site and not display the left and/or right side columns?  An example of needing to do this could be that you have an ez page that you want to display large pictures on wrapped with text &#8211; but perhaps your site is narrow and with the ez page displayed in the narrow center column &#8211; it just doesn&#8217;t look too great.</p>
<p><a href="http://getzenned.com/wp-content/uploads/2010/02/ezpagesettings.gif"><img class="size-full wp-image-104 alignleft" title="ezpagesettings" src="http://getzenned.com/wp-content/uploads/2010/02/ezpagesettings.gif" alt="ezpagesettings Removing Left or Right Columns on Ez Pages" width="200" height="211" /></a>I worked on a website today with just this issue.  The website is 750 pixels wide and had a left column that was set at 200 pixels wide.  The client had some beautiful photos with text she wanted made into an ez page.  Trying to squeeze these photos with wrapped text into 550 pixels was going to make the wrapped text area beside the photos very small.  Because there were navigation links at the top and bottom of the website, and also the breadcrumb was active, I saw no reason why we could not get rid of the left side bar for this page and the client&#8217;s visitors should still be able to find their way around the site once they were done reading the info on the ez page.</p>
<p>So, after we set up the ez page, I went to the Configuration&gt; EzPages Settings in the admin and put the ID of the ez pages in the boxes that said<br />
EZ-Pages Pages to disable left-column<br />
EZ-Pages Pages to disable right-column</p>
<p>I separated each ez page ID with a comma only (no space) &#8211; so it looks like so:  4,10,11</p>
<p>This effectively removed the left and right columns and the ez page took the whole 750 px width of the site.</p>
<div><a class="addthis_button" href="http://getzenned.com//addthis.com/bookmark.php?v=250" addthis:url='http://getzenned.com/2010/02/02/removing-left-or-right-columns-on-ez-pages/' addthis:title='Removing Left or Right Columns on Ez Pages '><img src="//cache.addthis.com/cachefly/static/btn/v2/lg-share-en.gif" width="125" height="16" alt="lg share en Removing Left or Right Columns on Ez Pages" style="border:0" title="Removing Left or Right Columns on Ez Pages" /></a></div>]]></content:encoded>
			<wfw:commentRss>http://getzenned.com/2010/02/02/removing-left-or-right-columns-on-ez-pages/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Adding Space at Top of Site</title>
		<link>http://getzenned.com/2010/01/26/adding-space-at-top-of-site/</link>
		<comments>http://getzenned.com/2010/01/26/adding-space-at-top-of-site/#comments</comments>
		<pubDate>Tue, 26 Jan 2010 07:29:09 +0000</pubDate>
		<dc:creator>Judy</dc:creator>
				<category><![CDATA[Zen Cart Web Design]]></category>
		<category><![CDATA[body background]]></category>
		<category><![CDATA[header]]></category>
		<category><![CDATA[padding in header]]></category>
		<category><![CDATA[zen cart design]]></category>

		<guid isPermaLink="false">http://getzenned.com/?p=93</guid>
		<description><![CDATA[Adding spacing above zen cart header through your stylesheet.]]></description>
			<content:encoded><![CDATA[<p>When designing a zen cart website, the top edge of the website is set snug against the top of your browser as shown in the photo below:</p>
<p><a href="http://getzenned.com/wp-content/uploads/2010/01/hah-head1.gif"><img class="aligncenter size-full wp-image-94" title="hah-head1" src="http://getzenned.com/wp-content/uploads/2010/01/hah-head1.gif" alt="hah head1 Adding Space at Top of Site" width="400" height="106" /></a></p>
<p>Some of you may wish to add a little space at the top &#8211; especially if you have a background image that you want to show on all sides, top and bottom of the computer screen.  To do this, find the stylesheet.css that goes with your template.  If you are using the overrides system (as you always should!) this file would be located in the includes/templates/YOUR TEMPLATE NAME/css folder.  Open the stylesheet.css and at the top you will see something similar to this code:</p>
<p>body {<br />
margin: 0;<br />
font-family: verdana, arial, helvetica, sans-serif;<br />
font-size: 62.5%;<br />
color: #000000;<br />
background-color: #000000;<br />
}</p>
<p>Add padding-top:10px;  (and adjust the &#8220;10&#8243; to meet your needs) to your code which will make it look similar to:</p>
<p>body {<br />
margin: 0;<br />
font-family: verdana, arial, helvetica, sans-serif;<br />
font-size: 62.5%;<br />
color: #000000;<br />
background-color: #000000;<br />
<span style="color: #ff0000;">padding-top:10px;</span><br />
}</p>
<p>This will give you a 10 pixel padding at the very top of your computer screen so that your background will show up in the first 10 pixels of space like so:</p>
<p><a href="http://getzenned.com/wp-content/uploads/2010/01/hah-head2.gif"><img class="aligncenter size-full wp-image-95" title="hah-head2" src="http://getzenned.com/wp-content/uploads/2010/01/hah-head2.gif" alt="hah head2 Adding Space at Top of Site" width="399" height="105" /></a></p>
<div><a class="addthis_button" href="http://getzenned.com//addthis.com/bookmark.php?v=250" addthis:url='http://getzenned.com/2010/01/26/adding-space-at-top-of-site/' addthis:title='Adding Space at Top of Site '><img src="//cache.addthis.com/cachefly/static/btn/v2/lg-share-en.gif" width="125" height="16" alt="lg share en Adding Space at Top of Site" style="border:0" title="Adding Space at Top of Site" /></a></div>]]></content:encoded>
			<wfw:commentRss>http://getzenned.com/2010/01/26/adding-space-at-top-of-site/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Round Corners for Zen Cart Image Header</title>
		<link>http://getzenned.com/2009/08/21/round-corners-for-zen-cart-image-header/</link>
		<comments>http://getzenned.com/2009/08/21/round-corners-for-zen-cart-image-header/#comments</comments>
		<pubDate>Fri, 21 Aug 2009 04:23:51 +0000</pubDate>
		<dc:creator>Judy</dc:creator>
				<category><![CDATA[Zen Cart Web Design]]></category>

		<guid isPermaLink="false">http://getzenned.com/?p=52</guid>
		<description><![CDATA[Making your zen cart image header have round corners by using Photoshop CS3]]></description>
			<content:encoded><![CDATA[<p>Using Photoshop CS3 I am able to produce images &#8211; specifically zen cart header images for my clients&#8217; websites by going through the following steps:</p>
<p>1.  Open the photo or image that you want to have round corners on in your Photoshop program.</p>
<p>2.  Choose SELECT and the ALL from the top menu</p>
<p>3.  Choose SELECT then MODIFY then CONTRACT &#8211; and enter in a number to contract your image by.  I usually use the smallest pixel size I can get by with &#8211; which is 3.</p>
<p>4.  Choose SELECT then MODIFY then SMOOTH &#8211; which will round the edges of your selection.  I usually use 10px for the number which works very well.  </p>
<p>5.  Choose SELECT then INVERSE &#8211; this will allow you to invert your selection back to the original rectangular or square shape.  </p>
<p>6.  Choose EDIT then CUT in order to cut out the background behind the rounded corner image you have just created and make it transparent.</p>
<p>7.  Save the file and enjoy!</p>
<div><a class="addthis_button" href="http://getzenned.com//addthis.com/bookmark.php?v=250" addthis:url='http://getzenned.com/2009/08/21/round-corners-for-zen-cart-image-header/' addthis:title='Round Corners for Zen Cart Image Header '><img src="//cache.addthis.com/cachefly/static/btn/v2/lg-share-en.gif" width="125" height="16" alt="lg share en Round Corners for Zen Cart Image Header" style="border:0" title="Round Corners for Zen Cart Image Header" /></a></div>]]></content:encoded>
			<wfw:commentRss>http://getzenned.com/2009/08/21/round-corners-for-zen-cart-image-header/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Creating A Custom Zen Cart Template</title>
		<link>http://getzenned.com/2009/07/26/creating-a-custom-zen-cart-template/</link>
		<comments>http://getzenned.com/2009/07/26/creating-a-custom-zen-cart-template/#comments</comments>
		<pubDate>Sun, 26 Jul 2009 06:22:19 +0000</pubDate>
		<dc:creator>Judy</dc:creator>
				<category><![CDATA[Zen Cart Web Design]]></category>
		<category><![CDATA[zen cart template]]></category>
		<category><![CDATA[zencart]]></category>

		<guid isPermaLink="false">http://getzenned.com/?p=35</guid>
		<description><![CDATA[If you are building a zen cart website design on your own, you should create your design in what we call an "overrides" directory for zen cart.]]></description>
			<content:encoded><![CDATA[<p>If you are building a zen cart website design on your own, you should create your design in what we call an &#8220;overrides&#8221; directory for zen cart.</p>
<p>Zen cart comes out of the box with a &#8220;Classic Contemporary Green&#8221; template, as well as template default files.  When creating a new template set, it is always best to use the template default files and copy them into your overrides directory.  When building zen cart websites, we most usually name the overrides directory &#8220;custom&#8221; but you can name it anything you want.</p>
<p>The reason we create overrides directories is so that during your design work, if you should &#8220;break&#8221; the code in a file, you have not revised a core file and you can easily download that core file back into your overrides directory and start over again if needed.</p>
<p>The steps to take in creating a template are as follows:<br />
1.  Create a folder named custom under includes/templates</p>
<p>2.  Take the following folders from the includes/templates/template_default folder and copy them into the includes/templates/custom folder you just created:<br />
&#8211;buttons<br />
&#8211;common<br />
&#8211;css<br />
&#8211;images<br />
&#8211;sideboxes<br />
&#8211;templates (create this directory but do not download all the files into it &#8211; you should only use this folder if there are customizations to the template files that you can copy individually into this folder if needed.)</p>
<p>3.  Copy the includes/templates/template_default/template_info.php file down into the includes/templates/custom folder and edit that file changing the top line to say custom template instead of default template &#8211; and edit the other information as you see fit.</p>
<p>4.  Upload all these folders onto the server</p>
<p>5.  Log into your zen cart admin area and mouse over the word Tools and click on Template Selection.</p>
<p>6.  Choose Custom Template from the drop down menu and then click on the update button</p>
<p>7.  Next go to Tools> Layout boxes controller and activate the boxes that you will need for your new template</p>
<p>8.  From here, the balance of the work is to change the stylesheet.css to meet your needs, upload a new logo.gif that you have created for your website and change any other graphics &#8211; such as the tile_back.jpg file to match your color scheme.</p>
<div><a class="addthis_button" href="http://getzenned.com//addthis.com/bookmark.php?v=250" addthis:url='http://getzenned.com/2009/07/26/creating-a-custom-zen-cart-template/' addthis:title='Creating A Custom Zen Cart Template '><img src="//cache.addthis.com/cachefly/static/btn/v2/lg-share-en.gif" width="125" height="16" alt="lg share en Creating A Custom Zen Cart Template" style="border:0" title="Creating A Custom Zen Cart Template" /></a></div>]]></content:encoded>
			<wfw:commentRss>http://getzenned.com/2009/07/26/creating-a-custom-zen-cart-template/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

