<?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 blog and free Scripts from CSS, PHP, Javascript, Ajax, JQuery.</description>
	<lastBuildDate>Tue, 28 Apr 2009 23:10:47 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.3</generator>
	<language>en</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>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>Mon, 20 Apr 2009 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[<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>]]></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('p358code1'); return false;">View Code</a> PHP</span><div class="codebox_clear"></div></div><div class="wp_codebox"><table width="100%" ><tr id="p3581"><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
</pre></td><td class="code" id="p358code1"><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('p358code2'); return false;">View Code</a> PHP</span><div class="codebox_clear"></div></div><div class="wp_codebox"><table width="100%" ><tr id="p3582"><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
11
12
13
</pre></td><td class="code" id="p358code2"><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('p358code3'); return false;">View Code</a> CSS</span><div class="codebox_clear"></div></div><div class="wp_codebox"><table width="100%" ><tr id="p3583"><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="p358code3"><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>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><![CDATA[
]]></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>
		<item>
		<title>Safari 4 beta: A First look</title>
		<link>http://feedproxy.google.com/~r/2Mellow/~3/JcEMO70YXy0/</link>
		<comments>http://www.2mellow.com/?p=364#comments</comments>
		<pubDate>Thu, 12 Mar 2009 22:06:18 +0000</pubDate>
		<dc:creator>Brandon</dc:creator>
				<category><![CDATA[Internet Technology]]></category>
		<category><![CDATA[Broswer]]></category>
		<category><![CDATA[Browser Speed]]></category>
		<category><![CDATA[Safari]]></category>
		<category><![CDATA[Safari 4]]></category>

		<guid isPermaLink="false">http://www.2mellow.com/?p=364</guid>
		<description><![CDATA[So we&#8217;ve all heard about Safari 4 beta, and maybe you&#8217;ve tried it yourself. In this article I want go over the first impressions of safari 4, so lets get right into it.
The User Interface
One thing that I initially noticed was the similarities Safari 4 has with Google&#8217;s Chrome. Although Chrome certainly didn&#8217;t invent the [...]]]></description>
			<content:encoded><![CDATA[<p>So we&#8217;ve all heard about Safari 4 beta, and maybe you&#8217;ve tried it yourself. In this article I want go over the first impressions of safari 4, so lets get right into it.</p>
<h4>The User Interface</h4>
<p>One thing that I initially noticed was the similarities Safari 4 has with Google&#8217;s Chrome. Although Chrome certainly didn&#8217;t invent the wheel with their browser, but I thought it was worth a look.</p>
<div style="text-align:center;width:auto;">
<img src="http://www.2mellow.com/wp-content/uploads/2009/03/our3browserss.jpg" alt="our3browserss" title="our3browserss" width="535" height="400" class="imgborder" />
</div>
<p>Heres a look at Safari 4, Chrome, and Safari 3. At first glance you will see that the design has changed from the &#8220;apple&#8221; interface, to cleaner, more &#8220;xp&#8221; look and feel. I personally like the change-I think it helps usability, and gives new users and interface they may be more comfortable with.</p>
<p><img src="http://www.2mellow.com/wp-content/uploads/2009/03/our2icons.jpg" alt="our2icons" title="our2icons" width="136" height="92" class="imgborder" align="left" />Next you may notice the addition of these two little icons to Safari 4, which is almost identical to Chrome&#8217;s.</p>
<p>I like this new menu style. Browsers are starting to get cluttered, and I prefer a clean look, and these definitely provide that.</p>
<h4>The Browser Speed Tests</h4>
<p>As I mentioned in my previous article &#8220;<a href='http://www.2mellow.com/?p=284'>Apple upping ante with release of Safari 4 beta</a>&#8220;, Safari 4 claims to be about 3x faster processing Javascript, which can really eat up load times. Lets take a look at some statistics done by <a href="http://lifehacker.com/5160709/browser-speed-tests-how-safari-4-stacks-up">lifehacker.com</a>..</p>
<div style="text-align:center;width:auto;">
<img src="http://www.2mellow.com/wp-content/uploads/2009/03/safari4javascriptspeed.jpg" alt="safari4javascriptspeed" title="safari4javascriptspeed" width="500" height="310" class="imgborder" />
</div>
<p>As you can see (hopefully) Google&#8217;s Chrome is the winner of the Javascript speed test. This leads me to the conclusion that Safari was using a play on words claiming their new &#8220;speed&#8221;. Although their speeds have certainly improved. Here&#8217;s a look at some other tests from <a href="http://www.lifehacker.com">lifehacker.com</a></p>
<h4>Cold and Warm starts by browser</h4>
<div style="text-align:center;width:auto;">
<img src="http://www.2mellow.com/wp-content/uploads/2009/03/safari4coldstart.jpg" alt="safari4coldstart" title="safari4coldstart" width="500" height="310" class="imgborder" />
</div>
<p><strong>Chrome</strong> also wins this one.. hmm&#8230;</p>
<h4>Multi-tab load by browser</h4>
<div style="text-align:center;width:auto;">
<img src="http://www.2mellow.com/wp-content/uploads/2009/03/safari4multitabload.jpg" alt="safari4multitabload" title="safari4multitabload" width="500" height="310" class="imgborder" />
</div>
<p>While technically IE was the winner here; it isn&#8217;t very fair because IE has a lot less eye-candy and features. The real winner here is again&#8230; <strong>Google&#8217;s Chrome</strong>, With Safari 4 coming in close.</p>
<p>In conclusion Safari 4 is still creating its presence in the browser race. In my personal opinion, I&#8217;m still not switching over my default browsers from Firefox and Chrome. I generally use Firefox for web development (for its extremely useful plugins) and Chrome for casual browsing (its fast and clean). In the next Safari 4 article I&#8217;ll get more in depth about the browser and take a look at all of the new features.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.2mellow.com/?feed=rss2&amp;p=364</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://www.2mellow.com/?p=364</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>Thu, 26 Feb 2009 16: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't claim to be a great designer myself, but I try! I find that my designs improve with each new website. I don'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 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.]]></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>0</slash:comments>
		<feedburner:origLink>http://www.2mellow.com/?p=335</feedburner:origLink></item>
		<item>
		<title>Apple upping ante with release of Safari 4 beta</title>
		<link>http://feedproxy.google.com/~r/2Mellow/~3/XYlmHjGqhBU/</link>
		<comments>http://www.2mellow.com/?p=284#comments</comments>
		<pubDate>Tue, 24 Feb 2009 17:14:24 +0000</pubDate>
		<dc:creator>Brandon</dc:creator>
				<category><![CDATA[Internet Technology]]></category>
		<category><![CDATA[Apple]]></category>
		<category><![CDATA[Browser]]></category>
		<category><![CDATA[Safari]]></category>
		<category><![CDATA[Safari 4]]></category>

		<guid isPermaLink="false">http://www.2mellow.com/?p=284</guid>
		<description><![CDATA[Apple upping ante with release of Safari 4 beta]]></description>
			<content:encoded><![CDATA[<p>Apple announced the release of the Safari 4 beta today, with major improvements. Clearly Safari is proving their stake in the web browser war between Internet Explorer, Firefox and Chrome.</p>
<p style="text-align: center;"><img class="size-full wp-image-289 aligncenter" title="overview-hero-image1-20090217" src="http://www.2mellow.com/wp-content/uploads/2009/02/overview-hero-image1-20090217.png" alt="Safari 4" width="550" height="429" /></p>
<p>Safari isn&#8217;t just proving their steak either. With the release Tuesday Apple says their browser is the worlds fastest. Claiming it can process JavaScript 3 times faster then Apples previous Safari 3.2 version. Apple claims Safari 4 is 30 times faster than IE 7 and nearly three times faster than Firefox 3 at executing JavaScript. When it comes to loading straight HTML Web pages Apple says it is three times faster than IE 7 and Firefox 3. So I think its fairly safe to say that the new Safari is about 3 times faster then everyone else. I have not tested it myself, but I do use Safari 3.2 from time to time at work, and I will be trying Safari 4 over the next week.</p>
<p>Apple&#8217;s Safari 4 beta browser is available now for download for both the Mac and Windows OS. System requirements include a PC running Windows XP SP2 or Vista. Mac users must be running Mac OS X Leopard 10.5.6 or Mac X Tiger 10.4.11 on at least an Intel Mac or G3 system or better.</p>
<p>&#8220;Safari 4 is the fastest and most efficient browser for Mac and Windows, with great integration of HTML 5 and CSS 3 web standards that enables the next generation of interactive web applications,&#8221; said Philip Schiller, Apple&#8217;s senior VP of Worldwide Product Marketing, in a press release.</p>
<p>Safari also induced a ton of new features, most of which we&#8217;ve seen in other browsers, though.</p>
<p><strong>Here is a breakdown of new Safari 4 beta features from Apple:</strong></p>
<p>Top Sites, a display of frequently visited pages in a stunning wall of previews so users can jump to their favorite sites with a single click</p>
<p>Full History Search, where users search through titles, web addresses and the complete text of recently viewed pages to easily return to sites they&#8217;ve seen before</p>
<p>Cover Flow, to make searching web history or bookmarks as fun and easy as paging through album art in iTunes</p>
<p>Tabs on Top, for better tabbed browsing with easy drag-and-drop tab management tools and an intuitive button for opening new ones</p>
<p>Smart Address Field, that automatically completes web addresses by displaying an easy-to-read list of suggestions from Top Sites, bookmarks and browsing history;</p>
<p>Smart Search Field, where users fine-tune searches with recommendations from Google Suggest or a list of recent searches</p>
<p>Full Page Zoom, for a closer look at any website without degrading the quality of the site&#8217;s layout and text</p>
<p>Other improvements include:</p>
<p>Built-in web developer tools to debug, tweak and optimize a website for peak performance and compatibility; and a new Windows-native look in Safari for Windows, that uses standard Windows font rendering and native title bar, borders and toolbars so Safari fits the look and feel of other Windows XP and Windows Vista applications.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.2mellow.com/?feed=rss2&amp;p=284</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.2mellow.com/?p=284</feedburner:origLink></item>
	</channel>
</rss>
