<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss 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/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>2 Mellow</title>
	
	<link>http://www.2mellow.com</link>
	<description>Web development with flavor</description>
	<lastBuildDate>Thu, 12 Jul 2012 01:23:24 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	
		<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/2Mellow" /><feedburner:info uri="2mellow" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><feedburner:emailServiceId>2Mellow</feedburner:emailServiceId><feedburner:feedburnerHostname>http://feedburner.google.com</feedburner:feedburnerHostname><item>
		<title>How to select rows with no matching entry in another table</title>
		<link>http://feedproxy.google.com/~r/2Mellow/~3/gq_tnHKCpts/</link>
		<comments>http://www.2mellow.com/?p=619#comments</comments>
		<pubDate>Thu, 12 Jul 2012 01:23:24 +0000</pubDate>
		<dc:creator>Brandon</dc:creator>
				<category><![CDATA[MySQL]]></category>
		<category><![CDATA[mysql]]></category>

		<guid isPermaLink="false">http://www.2mellow.com/?p=619</guid>
		<description><![CDATA[Here&#8217;s a little tip that I found very useful for a recent project that I was doing. When using MySql, some time you may want to query the rows of a table that don&#8217;t match another table. Well Ive got the perfect solution for you! SELECT t1.ID FROM Table1 t1 LEFT JOIN Table2 t2 ON t1.ID = t2.ID WHERE t2.ID IS NULL Just change t1 and t2 to mach you table names!]]></description>
				<content:encoded><![CDATA[<p>Here&#8217;s a little tip that I found very useful for a recent project that I was doing. </p>
<p>When using MySql, some time you may want to query the rows of a table that don&#8217;t match another table. Well Ive got the perfect solution for you!</p>
<p><code><br />
SELECT t1.ID<br />
FROM Table1 t1<br />
    LEFT JOIN Table2 t2 ON t1.ID = t2.ID<br />
WHERE t2.ID IS NULL<br />
</code></p>
<p>Just change t1 and t2 to mach you table names!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.2mellow.com/?feed=rss2&amp;p=619</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.2mellow.com/?p=619</feedburner:origLink></item>
		<item>
		<title>How to Disable Updates for a WordPress Plugin</title>
		<link>http://feedproxy.google.com/~r/2Mellow/~3/f3as5uGqc6I/</link>
		<comments>http://www.2mellow.com/?p=609#comments</comments>
		<pubDate>Fri, 05 Aug 2011 17:54:21 +0000</pubDate>
		<dc:creator>Brandon</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.2mellow.com/?p=609</guid>
		<description><![CDATA[Often times when working with WordPress, it is much easier to use and customize a public plugin to get the functionality you desire. All is great right? Wrong. Chances are the author of that plugin will add updates to that plugin which will overwrite all custom changes made! Of course you could ignore the pesky update reminders, but if you hand a website over to client, they will not understand. That&#8217;s where this strong little<a href="http://www.2mellow.com/?p=609"> ... Continue reading.</a>]]></description>
				<content:encoded><![CDATA[<p>Often times when working with WordPress, it is much easier to use and customize a public plugin to get the functionality you desire. </p>
<p>All is great right? Wrong. Chances are the author of that plugin will add updates to that plugin which will overwrite all custom changes made! Of course you could ignore the pesky update reminders, but if you hand a website over to client, they will not understand. <strong>That&#8217;s where this strong little code comes in.</strong></p>
<p><code><br />
add_filter('site_transient_update_plugins', 'dd_remove_update_nag');<br />
function dd_remove_update_nag($value) {<br />
 unset($value->response[ plugin_basename(__FILE__) ]);<br />
 return $value;<br />
}<br />
</code></p>
<p>You&#8217;ll want to add this to the bottom of the <strong>main page</strong> in the plugin. This isn&#8217;t always the index.php page. You&#8217;ll want to look for the page with the following code at the top:</p>
<p><code>/*</p>
<p>Plugin Name: Plugin name here</p>
<p>Description: WordPress plugin desc..</p>
<p>Version: 1.2</p>
<p>Author: lorem</p>
<p>Author URI: http://www.ipsum.com</p>
<p>Plugin URI: http://wordpress.org/extend/plugins/pluginz/</p>
<p>*/</code></p>
<p>Hope this helps other wordpress users. Cheers!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.2mellow.com/?feed=rss2&amp;p=609</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.2mellow.com/?p=609</feedburner:origLink></item>
		<item>
		<title>Alternate row color and style with PHP</title>
		<link>http://feedproxy.google.com/~r/2Mellow/~3/B77VtGyCUec/</link>
		<comments>http://www.2mellow.com/?p=358#comments</comments>
		<pubDate>Wed, 06 Oct 2010 19:54:29 +0000</pubDate>
		<dc:creator>Brandon</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[mysql]]></category>

		<guid isPermaLink="false">http://www.2mellow.com/?p=358</guid>
		<description><![CDATA[As a programmer I work with databases as much as I sleep. When working with a list or large result set it can be very beneficial to alternate row color and or CSS style. This not only creates a visualy appealing effect, it also makes it alot easier as a user to interact with your result set. note: this little trick can be used anywhere you are looping information. Heres an example without alternating rows<a href="http://www.2mellow.com/?p=358"> ... Continue reading.</a>]]></description>
				<content:encoded><![CDATA[<p>As a programmer I work with databases as much as I sleep. When working with a list or large result set it can be very beneficial to alternate row color and or CSS style. This not only creates a visualy appealing effect, it also makes it alot easier as a user to interact with your result set. <strong>note:</strong> this little trick can be used anywhere you are looping information.</p>
<h4>Heres an example without alternating rows</h4>

<div class="wp_codebox_msgheader"><span class="right"><sup><a href="http://www.ericbess.com/ericblog/2008/03/03/wp-codebox/#examples" target="_blank" title="WP-CodeBox HowTo?"><span style="color: #99cc00">?</span></a></sup></span><span class="left"><a href="javascript:;" onclick="javascript:showCodeTxt('p358code4'); return false;">View Code</a> PHP</span><div class="codebox_clear"></div></div><div class="wp_codebox"><table><tr id="p3584"><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
</pre></td><td class="code" id="p358code4"><pre class="php" style="font-family:monospace;"><span style="color: #000088;">$sql</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">&quot;SELECT * FROM fruits ORDER BY id&quot;</span><span style="color: #339933;">;</span>
<span style="color: #000088;">$query</span> <span style="color: #339933;">=</span> <span style="color: #990000;">mysql_query</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$sql</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>					
<span style="color: #b1b100;">while</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$result</span> <span style="color: #339933;">=</span> <span style="color: #990000;">mysql_fetch_assoc</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$query</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
&nbsp;
	<span style="color: #b1b100;">echo</span> <span style="color: #0000ff;">&quot;&lt;div class='rName'&gt;<span style="color: #006699; font-weight: bold;">{$result['name']}</span>&lt;/div&gt;&quot;</span><span style="color: #339933;">;</span>
	<span style="color: #b1b100;">echo</span> <span style="color: #0000ff;">&quot;&lt;div class='rDate'&gt;<span style="color: #006699; font-weight: bold;">{$result['date']}</span>&lt;/div&gt;&quot;</span><span style="color: #339933;">;</span>
	<span style="color: #b1b100;">echo</span> <span style="color: #0000ff;">&quot;&lt;div class='rEdit'&gt;<span style="color: #006699; font-weight: bold;">{$result['edit']}</span>&lt;/div&gt;&quot;</span><span style="color: #339933;">;</span>
&nbsp;
<span style="color: #009900;">&#125;</span></pre></td></tr></table></div>

<p>Which looks like this:</p>
<div class='rName'>Alternating Row Styles</div>
<div class='rDate'>03/03/09</div>
<div class='rEdit'><a href='#' style="font-size:10px;">edit</a></div>
<div class='rName'>2mellow.com Data Testing</div>
<div class='rDate'>12/23/09</div>
<div class='rEdit'><a href='#' style="font-size:10px;">edit</a></div>
<div class='rName'>User Freindly Interface Techniques</div>
<div class='rDate'>01/31/09</div>
<div class='rEdit'><a href='#' style="font-size:10px;">edit</a></div>
<div style='clear:both;'></div>
<p>&nbsp;</p>
<h4>Now the same example with alternating rows</h4>

<div class="wp_codebox_msgheader"><span class="right"><sup><a href="http://www.ericbess.com/ericblog/2008/03/03/wp-codebox/#examples" target="_blank" title="WP-CodeBox HowTo?"><span style="color: #99cc00">?</span></a></sup></span><span class="left"><a href="javascript:;" onclick="javascript:showCodeTxt('p358code5'); return false;">View Code</a> PHP</span><div class="codebox_clear"></div></div><div class="wp_codebox"><table><tr id="p3585"><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
11
12
13
</pre></td><td class="code" id="p358code5"><pre class="php" style="font-family:monospace;"><span style="color: #000088;">$sql</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">&quot;SELECT * FROM fruits ORDER BY id&quot;</span><span style="color: #339933;">;</span>
<span style="color: #000088;">$query</span> <span style="color: #339933;">=</span> <span style="color: #990000;">mysql_query</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$sql</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>					
<span style="color: #b1b100;">while</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$result</span> <span style="color: #339933;">=</span> <span style="color: #990000;">mysql_fetch_assoc</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$query</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
&nbsp;
	<span style="color: #666666; font-style: italic;">//heres our alternating hack</span>
	<span style="color: #b1b100;">if</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$css</span> <span style="color: #339933;">!=</span> <span style="color: #0000ff;">&quot;On&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span> <span style="color: #000088;">$css</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">&quot;On&quot;</span><span style="color: #339933;">;</span> <span style="color: #009900;">&#125;</span><span style="color: #b1b100;">else</span><span style="color: #009900;">&#123;</span> <span style="color: #000088;">$css</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">&quot;Off&quot;</span><span style="color: #339933;">;</span> <span style="color: #009900;">&#125;</span>
&nbsp;
	<span style="color: #666666; font-style: italic;">//append $css to the end of your style</span>
	<span style="color: #b1b100;">echo</span> <span style="color: #0000ff;">&quot;&lt;div class='rName<span style="color: #006699; font-weight: bold;">{$css}</span>'&gt;<span style="color: #006699; font-weight: bold;">{$result['name']}</span>&lt;/div&gt;&quot;</span><span style="color: #339933;">;</span>
	<span style="color: #b1b100;">echo</span> <span style="color: #0000ff;">&quot;&lt;div class='rDate<span style="color: #006699; font-weight: bold;">{$css}</span>'&gt;<span style="color: #006699; font-weight: bold;">{$result['date']}</span>&lt;/div&gt;&quot;</span><span style="color: #339933;">;</span>
	<span style="color: #b1b100;">echo</span> <span style="color: #0000ff;">&quot;&lt;div class='rEdit<span style="color: #006699; font-weight: bold;">{$css}</span>'&gt;<span style="color: #006699; font-weight: bold;">{$result['edit']}</span>&lt;/div&gt;&quot;</span><span style="color: #339933;">;</span>
&nbsp;
<span style="color: #009900;">&#125;</span></pre></td></tr></table></div>

<p>Now I have a situation where my classes are either &#8220;on&#8221; or &#8220;off&#8221;. What you need to do now is create styles for each &#8220;toggle&#8221;. Heres the styles for my example:</p>

<div class="wp_codebox_msgheader"><span class="right"><sup><a href="http://www.ericbess.com/ericblog/2008/03/03/wp-codebox/#examples" target="_blank" title="WP-CodeBox HowTo?"><span style="color: #99cc00">?</span></a></sup></span><span class="left"><a href="javascript:;" onclick="javascript:showCodeTxt('p358code6'); return false;">View Code</a> CSS</span><div class="codebox_clear"></div></div><div class="wp_codebox"><table><tr id="p3586"><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
</pre></td><td class="code" id="p358code6"><pre class="css" style="font-family:monospace;"><span style="color: #808080; font-style: italic;">/** ON STYLES **/</span>
<span style="color: #6666ff;">.rNameOn</span> <span style="color: #00AA00;">&#123;</span>
	<span style="color: #000000; font-weight: bold;">padding</span><span style="color: #00AA00;">:</span><span style="color: #933;">10px</span><span style="color: #00AA00;">;</span>
	<span style="color: #000000; font-weight: bold;">float</span><span style="color: #00AA00;">:</span><span style="color: #000000; font-weight: bold;">left</span><span style="color: #00AA00;">;</span>
	<span style="color: #000000; font-weight: bold;">width</span><span style="color: #00AA00;">:</span><span style="color: #933;">300px</span><span style="color: #00AA00;">;</span>
	<span style="color: #000000; font-weight: bold;">background-color</span><span style="color: #00AA00;">:</span><span style="color: #cc00cc;">#E9EBEA</span><span style="color: #00AA00;">;</span>
	<span style="color: #00AA00;">&#125;</span>
<span style="color: #6666ff;">.rDateOn</span><span style="color: #00AA00;">,</span> <span style="color: #6666ff;">.rEditOn</span> <span style="color: #00AA00;">&#123;</span>
	<span style="color: #000000; font-weight: bold;">padding</span><span style="color: #00AA00;">:</span><span style="color: #933;">10px</span><span style="color: #00AA00;">;</span>
	<span style="color: #000000; font-weight: bold;">float</span><span style="color: #00AA00;">:</span><span style="color: #000000; font-weight: bold;">left</span><span style="color: #00AA00;">;</span>
	<span style="color: #000000; font-weight: bold;">width</span><span style="color: #00AA00;">:</span><span style="color: #933;">100px</span><span style="color: #00AA00;">;</span>
	<span style="color: #000000; font-weight: bold;">background-color</span><span style="color: #00AA00;">:</span><span style="color: #cc00cc;">#E9EBEA</span><span style="color: #00AA00;">;</span>
	<span style="color: #00AA00;">&#125;</span>
<span style="color: #808080; font-style: italic;">/** OFF STYLES **/</span>
<span style="color: #6666ff;">.rNameOff</span> <span style="color: #00AA00;">&#123;</span>
	<span style="color: #000000; font-weight: bold;">padding</span><span style="color: #00AA00;">:</span><span style="color: #933;">10px</span><span style="color: #00AA00;">;</span>
	<span style="color: #000000; font-weight: bold;">float</span><span style="color: #00AA00;">:</span><span style="color: #000000; font-weight: bold;">left</span><span style="color: #00AA00;">;</span>
	<span style="color: #000000; font-weight: bold;">width</span><span style="color: #00AA00;">:</span><span style="color: #933;">300px</span><span style="color: #00AA00;">;</span>
	<span style="color: #000000; font-weight: bold;">background-color</span><span style="color: #00AA00;">:</span><span style="color: #cc00cc;">#fff</span><span style="color: #00AA00;">;</span>
	<span style="color: #00AA00;">&#125;</span>
<span style="color: #6666ff;">.rDateOff</span><span style="color: #00AA00;">,</span> <span style="color: #6666ff;">.rEditOff</span> <span style="color: #00AA00;">&#123;</span>
	<span style="color: #000000; font-weight: bold;">padding</span><span style="color: #00AA00;">:</span><span style="color: #933;">10px</span><span style="color: #00AA00;">;</span>
	<span style="color: #000000; font-weight: bold;">float</span><span style="color: #00AA00;">:</span><span style="color: #000000; font-weight: bold;">left</span><span style="color: #00AA00;">;</span>
	<span style="color: #000000; font-weight: bold;">width</span><span style="color: #00AA00;">:</span><span style="color: #933;">100px</span><span style="color: #00AA00;">;</span>
	<span style="color: #000000; font-weight: bold;">background-color</span><span style="color: #00AA00;">:</span><span style="color: #cc00cc;">#fff</span><span style="color: #00AA00;">;</span>
	<span style="color: #00AA00;">&#125;</span></pre></td></tr></table></div>

<h4>Our final result:</h4>
<div class='rNameOn'>Alternating Row Styles</div>
<div class='rDateOn'>03/03/09</div>
<div class='rEditOn'><a href='#' style="font-size:10px;">edit</a></div>
<div class='rNameOff'>2mellow.com Data Testing</div>
<div class='rDateOff'>12/23/09</div>
<div class='rEditOff'><a href='#' style="font-size:10px;">edit</a></div>
<div class='rNameOn'>User Freindly Interface Techniques</div>
<div class='rDateOn'>01/31/09</div>
<div class='rEditOn'><a href='#' style="font-size:10px;">edit</a></div>
<div style='clear:both;'></div>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.2mellow.com/?feed=rss2&amp;p=358</wfw:commentRss>
		<slash:comments>3</slash:comments>
		<feedburner:origLink>http://www.2mellow.com/?p=358</feedburner:origLink></item>
		<item>
		<title>How to Create Clean CSS – Part 1</title>
		<link>http://feedproxy.google.com/~r/2Mellow/~3/ZtvMxtGl540/</link>
		<comments>http://www.2mellow.com/?p=335#comments</comments>
		<pubDate>Fri, 26 Feb 2010 17:18:17 +0000</pubDate>
		<dc:creator>Brandon</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[cascading style sheet]]></category>
		<category><![CDATA[web design]]></category>

		<guid isPermaLink="false">http://www.2mellow.com/?p=335</guid>
		<description><![CDATA[Creating great looking designs takes alot of practice. I don&#8217;t claim to be a great designer myself, but I try! I find that my designs improve with each new website. I don&#8217;t want my readers to confuse this article with art and illustrations. While these certainly make up a great deal of a beautiful design, this article will cover how we can use css (Cascading Style Sheets) to make your site look great. In this<a href="http://www.2mellow.com/?p=335"> ... Continue reading.</a>]]></description>
				<content:encoded><![CDATA[<p>Creating great looking designs takes alot of practice. I don&#8217;t claim to be a great designer myself, but I try! I find that my designs improve with each new website. I don&#8217;t want my readers to confuse this article with art and illustrations. While these certainly make up a great deal of a beautiful design, this article will cover how we can use css (Cascading Style Sheets) to make your site look great.</p>
<p>In this part 1 I will be using a simple box show the difference between ugly css styles, and how you can improve them. So lets get going already with the example.</p>
<div class="style1"><img src="/images/coffemaker.jpg" border="0" align="right" /><strong>Mr. Coffee&copy; Coffee Maker &#8211; Red</strong><br />
<strong>Price:</strong> <span style="color:green;">$19.95</span><br />
<strong>Shipping:</strong> $5.95<br />
<strong>Description:</strong> 12c Coffee Maker- Red Brewing Pause n Serve lets you pour a cup of coffee while the coffeemaker is still brewing. Removable Filter Insert lifts out of Brew Basket for fast and easy filling and cleaning. 2-hour Auto Shut-Off keeps your coffee warm for 2 hours and then automatically shuts off. Delay Brew allows you to program the clock up to 24 hours in advance to begin brewing at a specific time.</p>
<div style="text-align:right;">
<a href="#" class="stock">Email to a freind</a> <a href="#" class="stock">Add to wish list</a> <button>Add to Cart</button>
</div>
</div>
<h4>Wow, Thats ugly</h4>
<p>All the information and functions that are needed for this product is here, but it looks very cluttered and unprofessional. Lets begin fixing this beast by add in some spacing, we dont want anything to be touching, becuase its messy.</p>
<div class="style2"><img src="/images/coffemaker.jpg" border="0" align="right" class="img" /><strong>Mr. Coffee&copy; Coffee Maker &#8211; Red</strong><br />
<strong>Price:</strong> <span style="color:green;">$19.95</span><br />
<strong>Shipping:</strong> $5.95<br />
<strong>Description:</strong> 12c Coffee Maker- Red Brewing Pause n Serve lets you pour a cup of coffee while the coffeemaker is still brewing. Removable Filter Insert lifts out of Brew Basket for fast and easy filling and cleaning. 2-hour Auto Shut-Off keeps your coffee warm for 2 hours and then automatically shuts off. Delay Brew allows you to program the clock up to 24 hours in advance to begin brewing at a specific time.</p>
<div style="text-align:right;">
<a href="#" class="stock">Email to a freind</a> <a href="#" class="stock">Add to wish list</a> <button>Add to Cart</button>
</div>
</div>
<h4>Better&#8230;</h4>
<p>After adding some padding, this product is already starting to look better. This is where I&#8217;d like to play with the colors. The colors in example 2 are just plain ugly and too much gray is like pumping poison into a design.</p>
<div class="style3"><img src="/images/coffemaker.jpg" border="0" align="right" class="img" /><span class="uglycsstitle1">Mr. Coffee&copy; Coffee Maker &#8211; Red</span><br />
<strong>Price:</strong> <span style="color:#6F7F00;font-weight:bold;">$19.95</span><br />
<strong>Shipping:</strong> $5.95<br />
<strong>Description:</strong> 12c Coffee Maker- Red Brewing Pause n Serve lets you pour a cup of coffee while the coffeemaker is still brewing. Removable Filter Insert lifts out of Brew Basket for fast and easy filling and cleaning. 2-hour Auto Shut-Off keeps your coffee warm for 2 hours and then automatically shuts off. Delay Brew allows you to program the clock up to 24 hours in advance to begin brewing at a specific time.</p>
<div style="text-align:right;">
<a href="#" class="stock2">Email to a freind</a> <a href="#" class="stock2">Add to wish list</a> <button>Add to Cart</button>
</div>
</div>
<h4>Wow, much different</h4>
<p>A good color scheme is very important to a great design. There are many ways to <a href="http://www.davidairey.com/colour-tools-palettes-theory/">get some good colors</a>. Try choosing a color scheme before you start your design, that way things will stay consistant.</p>
<p>I&#8217;m still not happy with my product box, I&#8217;ll do a little bit more tweaking on the css styles, and see how I can make this look more elegent.</p>
<div class="style4"><img src="/images/coffemaker.jpg" border="0" align="right" class="img2" /><span class="uglycsstitle2">Mr. Coffee&copy; Coffee Maker &#8211; Red</span><br />
<strong>Price:</strong> <span style="color:#6F7F00;font-weight:bold;">$19.95</span><br />
<strong>Shipping:</strong> $5.95<br />
<strong>Description:</strong> 12c Coffee Maker- Red Brewing Pause n Serve lets you pour a cup of coffee while the coffeemaker is still brewing. Removable Filter Insert lifts out of Brew Basket for fast and easy filling and cleaning. 2-hour Auto Shut-Off keeps your coffee warm for 2 hours and then automatically shuts off. Delay Brew allows you to program the clock up to 24 hours in advance to begin brewing at a specific time.</p>
<div style="float:right;">
<table cellpadding="0" cellspacing="0" border="0">
<tr>
<td valign="bottom"><a href="#" class="stock3">EMAIL TO A FRIEND</a></td>
<td valign="bottom" style="padding-left:10px;"><a href="#" class="stock3">ADD TO WISH LIST</a></td>
<td valign="bottom" style="padding-left:10px;"> <button class="uglysubmit">Add to Cart</button></td>
</tr>
</table>
</div>
<div style="clear:both;"></div>
</div>
<h4>I like this now</h4>
<p>So without changing the layout or adding any custom graphics, we went from a basic and quite ugly design, to one that is clean and elegent. This is a great example of how a existing design can be updated, with little effort. This also shows us the great thing about using <strong>css</strong>, we can drastically change a layout with very little effort.</p>
<p>Of course there alot of other css tricks I could do to better this layout. What are some ways you keep your designs clean and professional? What would you do to better my example?</p>
]]></content:encoded>
			<wfw:commentRss>http://www.2mellow.com/?feed=rss2&amp;p=335</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://www.2mellow.com/?p=335</feedburner:origLink></item>
		<item>
		<title>I love funnys</title>
		<link>http://feedproxy.google.com/~r/2Mellow/~3/2VrhRTPI_Bc/</link>
		<comments>http://www.2mellow.com/?p=378#comments</comments>
		<pubDate>Fri, 27 Mar 2009 15:28:22 +0000</pubDate>
		<dc:creator>Brandon</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[bucky the cat]]></category>
		<category><![CDATA[get fuzzy]]></category>
		<category><![CDATA[satchel the dog]]></category>

		<guid isPermaLink="false">http://www.2mellow.com/?p=378</guid>
		<description />
				<content:encoded><![CDATA[<div style='width:550px;overflow:auto'><a href="http://comics.com/get_fuzzy/2009-03-27/" title="Get Fuzzy"><img src="http://assets.comics.com/dyn/str_strip/000000000/00000000/0000000/200000/70000/7000/500/277582/277582.full.gif" border="0" alt="Get Fuzzy" /></a></div>
]]></content:encoded>
			<wfw:commentRss>http://www.2mellow.com/?feed=rss2&amp;p=378</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.2mellow.com/?p=378</feedburner:origLink></item>
	</channel>
</rss>
