<?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>Terry Dunham is a graphic designer, web designer and illustrator for hire &#187; DesignM.ag</title>
	<atom:link href="http://terrytoledo.com/category/designmag/feed/" rel="self" type="application/rss+xml" />
	<link>http://terrytoledo.com</link>
	<description>Free Estimates for Graphic Design, Web Design, Illustration and Designing a Marketing Plan</description>
	<lastBuildDate>Fri, 18 May 2012 04:00:12 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>How to Code a jQuery Rolodex-Style Countdown Ticker</title>
		<link>http://terrytoledo.com/2012/05/how-to-code-a-jquery-rolodex-style-countdown-ticker/</link>
		<comments>http://terrytoledo.com/2012/05/how-to-code-a-jquery-rolodex-style-countdown-ticker/#comments</comments>
		<pubDate>Fri, 18 May 2012 04:00:12 +0000</pubDate>
		<dc:creator>DesignM.ag</dc:creator>
				<category><![CDATA[DesignM.ag]]></category>

		<guid isPermaLink="false">http://terrytoledo.com/2012/05/how-to-code-a-jquery-rolodex-style-countdown-ticker/</guid>
		<description><![CDATA[Advertise here with BSA I&#8217;m sure many of you are familiar with how an office rolodex works. You have a series of cards with contact information which you can flip over to sort through alphabetically. These are most common in the office settings because businesses must to keep in touch with so many different people. [...]]]></description>
			<content:encoded><![CDATA[<p><a rel="nofollow" target="_blank" href="http://rss.buysellads.com/click.php?z=1264759&amp;k=7b00119eaeee15661bc8c2a76269358e&amp;a=49786&amp;c=560656885"><br />
				<img src="http://rss.buysellads.com/img.php?z=1264759&amp;k=7b00119eaeee15661bc8c2a76269358e&amp;a=49786&amp;c=560656885" border="0" alt="" /></a></p>
<p><a rel="nofollow" target="_blank" href="http://buysellads.com/buy/sitedetails/pubkey/7b00119eaeee15661bc8c2a76269358e/zone/1264759">Advertise here with BSA</a></p>
<p>
<p>I&#8217;m sure many of you are familiar with how an office rolodex works. You have a series of cards with contact information which you can flip over to sort through alphabetically. These are most common in the office settings because businesses must to keep in touch with so many different people. Although the value is in translation into a web interface, we can still use this idea to create a really neat timer effect.</p>
<p>More specifically I have seen a couple countdown widgets on landing pages. These are numbering systems for websites which count down to a specific launch date. You could alternatively use this code to create a live clock on your website &#8211; there are so many uses available! Check out my simple tutorial below and see if you can implement a similar ticker into any future web projects.</p>
<p><a rel="nofollow" target="_blank" href="http://designm.ag/previews/rolodex-countdown/"><img src="http://designm.ag/wp-content/uploads/2012/05/demo-image-jquery-tutorial-rolodex-counter.jpg" alt="jQuery Rolodex count down timer ticker - demo screenshot" /></a></p>
<p><strong><a rel="nofollow" target="_blank" href="http://designm.ag/previews/rolodex-countdown/">Live Demo</a></strong> &#8211; <strong><a rel="nofollow" target="_blank" href="http://designm.ag/downloads/jquery-rolodex-source.zip">Download Source Code</a></strong></p>
<p><span></span></p>
<h2>Selecting Graphics</h2>
<p>I am admittedly not an amazing Photoshop design guru. I can put together some unique web layouts and magazine themes &#8211; but I can&#8217;t create a whole rolodex stack from scratch. This is where the large network of PSD freebies comes in handy.</p>
<p>I really love <a rel="nofollow" target="_blank" href="http://www.premiumpixels.com/freebies/flip-clock-countdown-psd/">this flip-clock countdown</a> for both the gradients and textures. This was created by Orman Clark who also built the website <a rel="nofollow" target="_blank" href="http://www.premiumpixels.com/about/">Premium Pixels</a>. Just download the PSD and extract a single card stack background. We will use this same background for each of the time slots &#8211; days, hours, minutes, and seconds.</p>
<p>However I want to use dynamic HTML inside each div to update the counter. So when you extract these blocks make sure you hide all the text layers, including the bottom labels. Or even easier just download my tutorial source code above and use the included images.</p>
<h2>Core HTML Layout</h2>
<p>For this example we don&#8217;t need a whole bunch of confusing HTML markup. I&#8217;m using a containing div <code>#clock-ticker</code> set with a clearfix class, and inside we have 4 different floating divs. These are set to the class <code>.block</code> and each contains a single column of the countdown clock.</p>
<p><pre>&lt;div id="clock-ticker" class="clearfix"&gt;
	&lt;div class="block"&gt;
		&lt;span class="flip-top" id="numdays"&gt;8&lt;/span&gt;
		&lt;span class="flip-btm"&gt;&lt;/span&gt;
		&lt;footer class="label"&gt;Days&lt;/footer&gt;
	&lt;/div&gt;

	&lt;div class="block"&gt;
		&lt;span class="flip-top" id="numhours"&gt;14&lt;/span&gt;
		&lt;span class="flip-btm"&gt;&lt;/span&gt;
		&lt;footer class="label"&gt;Hours&lt;/footer&gt;
	&lt;/div&gt;

	&lt;div class="block"&gt;
		&lt;span class="flip-top" id="nummins"&gt;34&lt;/span&gt;
		&lt;span class="flip-btm"&gt;&lt;/span&gt;
		&lt;footer class="label"&gt;Mins&lt;/footer&gt;
	&lt;/div&gt;
</pre>
</p>
<p>Inside a single block area we have three core sections. The top two span elements contain the top and bottom portion of each rolodex card. By splitting up the card we could use some further <a rel="nofollow" target="_blank" href="http://jqueryui.com/demos/animate/">jQuery UI animation effects</a>. But this goes much further than I&#8217;d like to cover here &#8211; although it is possible to build off this preset code.</p>
<p><pre>#clock-ticker { display: block; margin-bottom: 15px;}
#clock-ticker .block { position: relative; color: #fff; font-weight: bold; float: left; margin-right: 22px; }

#clock-ticker .block .flip-top { width: 88px; height: 39px; line-height: 75px; font-size: 55px; background: url('img/flip-top.png') no-repeat; text-align: center; }
#clock-ticker .block .flip-btm { width: 88px; height: 40px; background: url('img/flip-btm.png') no-repeat; text-align: center; }

#clock-ticker .block .label { color: #fbfbfb; font-weight: bold; font-size: 14px; text-transform: uppercase; width: 88px; line-height: 35px; text-align: center; font-family: "Calibri", Arial, sans-serif; text-shadow: 1px 1px 0px #333; }
</pre>
</p>
<p>The last area contains the label text for each card. This is held inside an HTML5 footer element and styled with a bit of CSS. I should point out how many of these elements are set to a fixed height. This means we can ensure the layout won&#8217;t break even if our numbers were &#8220;too big&#8221; and pushed outside the box model.</p>
<h2>Detecting Clock Numbers</h2>
<p>Inside the top span area of each column I&#8217;ve appended some default numeric values. You can change these to whatever you&#8217;d like and the script should still count down directly to 0. But just remember you don&#8217;t need anything in the bottom section, and actually I built it this way to keep the code cleaner.</p>
<p>Our goal would be to then check each of these numerical values on pageload and set them to static variables. You can see I have done this within the first few lines of JavaScript. The jQuery library is included in the doc header, but all our JS codes are actually inside a script tag towards the bottom of the page.</p>
<p><pre>&lt;script type="text/javascript"&gt;
$(document).ready(function(){
	var theDaysBox  = $("#numdays");
	var theHoursBox = $("#numhours");
	var theMinsBox  = $("#nummins");
	var theSecsBox  = $("#numsecs");
</pre>
</p>
<p>These variables target the span elements themselves, and <strong>not</strong> the internal content. We do this in a different set of vars because the numbers will be updated every second. I&#8217;ve stuck with plain JavaScript and the <a rel="nofollow" target="_blank" href="http://www.pagecolumn.com/javascript/setinterval.htm">setInterval() method</a>.</p>
<p>Using this predetermined timing function we offer an internal set of code to call every set number of milliseconds. In this example we call the function code every 1000 milliseconds, or 1 second. Let&#8217;s look at some example syntax first:</p>
<p><pre>var myNewIntval = setInterval(function() {
   /// we use code here
   }, 1000);
</pre>
</p>
<p>The method only requires 2 parameters with the latter being a number of milliseconds. The first is the code you wish to execute every set interval of time &#8211; most ideally we want to use a custom function. Alternatively we could write a new function name and call this, but we aren&#8217;t saving much space either way.</p>
<h2>JavaScript setInterval()</h2>
<p>Even if you aren&#8217;t totally familiar with this method don&#8217;t worry too much since it&#8217;s easy to catch up. Let&#8217;s push forward with the script and look at our real-live example.</p>
<p><pre>var refreshId = setInterval(function() {
  var currentSeconds = theSecsBox.text();
  var currentMins    = theMinsBox.text();
  var currentHours   = theHoursBox.text();
  var currentDays    = theDaysBox.text();
</pre>
</p>
<p>Inside the interval function we&#8217;re setting another four variables. These will be updated each second to contain the new value of each span element. Since we&#8217;re counting down to a specific number I&#8217;m going to use a very basic set of logic to check the timers.</p>
<p>In layman&#8217;s terms we need to see if any of the numbers reach 0 during any given interval. If that&#8217;s the case we can&#8217;t let it turn to -1 in the next second, and so instead we deduct a value from the next set (secs -&gt; mins -&gt; hours -&gt; days).</p>
<h2>Base Timing and Logic</h2>
<p>Anybody who is familiar with basic if/else statements should be able to follow this script. We&#8217;re going to check at each interval if any of the numerical values have hit 0 &#8211; or if more than one value has hit 0.</p>
<p>For example, if the seconds and minutes have reached 0 then we need to remove 1 hour from the clock and reset the mins/secs to 59. Same when the hours, minutes, and seconds reach 0 and we need to remove 1 day from the clock.</p>
<p><pre>if(currentSeconds == 0 &amp;&amp; currentMins == 0 &amp;&amp; currentHours == 0 &amp;&amp; currentDays == 0) {
  // if everything rusn out our timer is done!!
  // do some exciting code in here when your countdown timer finishes
} else if(currentSeconds == 0 &amp;&amp; currentMins == 0 &amp;&amp; currentHours == 0) {
  // if the seconds and minutes and hours run out we subtract 1 day
  theDaysBox.html(currentDays-1);
  theHoursBox.html("23");
  theMinsBox.html("59");
  theSecsBox.html("59");
} else if(currentSeconds == 0 &amp;&amp; currentMins == 0) {
  // if the seconds and minutes run out we need to subtract 1 hour
  theHoursBox.html(currentHours-1);
  theMinsBox.html("59");
  theSecsBox.html("59");
} else if(currentSeconds == 0) {
  // if the seconds run out we need to subtract 1 minute
  theMinsBox.html(currentMins-1);
  theSecsBox.html("59");
} else {
  theSecsBox.html(currentSeconds-1);
}
</pre>
</p>
<p>I&#8217;m using the jQuery <a rel="nofollow" target="_blank" href="http://api.jquery.com/html/">.html()</a> method to set the internal value for each span. The very first if() {} statement checks for the timer completely running out, and you can place any code inside here. This could fade out and display a signup/registration form. Or it could re-direct visitors to a new page once the timer has finished.</p>
<p>There is definitely a lot you can do to customize this code for your own ideas. The clock will always tick down in this code, but that is easy to change. And if you refresh the page all values will reset to their original static setup inside the HTML document. Unfortunately session variables are controlled on the server end, so there&#8217;s no way to do this using solely JavaScript.</p>
<p><a rel="nofollow" target="_blank" href="http://designm.ag/previews/rolodex-countdown/"><img src="http://designm.ag/wp-content/uploads/2012/05/demo-image-jquery-tutorial-rolodex-counter.jpg" alt="jQuery Rolodex count down timer ticker - demo screenshot" /></a></p>
<p><strong><a rel="nofollow" target="_blank" href="http://designm.ag/previews/rolodex-countdown/">Live Demo</a></strong> &#8211; <strong><a rel="nofollow" target="_blank" href="http://designm.ag/downloads/jquery-rolodex-source.zip">Download Source Code</a></strong></p>
<h2>Conclusion</h2>
<p>I hope this quaint clock ticker can be useful to some web designers. It&#8217;s a cool widget when you need it, but it&#8217;s also hard to just squeeze into a web layout. Practicing with JavaScript is also handy the more you move into web development techniques. Feel free to download my source code and play around on your own. If you have any ideas or suggestions you can share with us in the post discussion area below.</p>
<p>
<p><a rel="nofollow" target="_blank" href="http://rss.buysellads.com/click.php?z=1264760&amp;k=7b00119eaeee15661bc8c2a76269358e&amp;a=49786&amp;c=777510993"><br />
				<img src="http://rss.buysellads.com/img.php?z=1264760&amp;k=7b00119eaeee15661bc8c2a76269358e&amp;a=49786&amp;c=777510993" border="0" alt="" /></a></p>
<p><a rel="nofollow" target="_blank" href="http://buysellads.com/buy/sitedetails/pubkey/7b00119eaeee15661bc8c2a76269358e/zone/1264760">Advertise here with BSA</a></p>
<p><a rel="nofollow" target="_blank" href="http://feedads.g.doubleclick.net/~a/3ZNah5Duc8oX05a4wBd78bm5Wbs/0/da"><img src="http://feedads.g.doubleclick.net/~a/3ZNah5Duc8oX05a4wBd78bm5Wbs/0/di" border="0"></a><br />
<a rel="nofollow" target="_blank" href="http://feedads.g.doubleclick.net/~a/3ZNah5Duc8oX05a4wBd78bm5Wbs/1/da"><img src="http://feedads.g.doubleclick.net/~a/3ZNah5Duc8oX05a4wBd78bm5Wbs/1/di" border="0"></a></p>
<div>
<a rel="nofollow" target="_blank" href="http://feeds.feedburner.com/~ff/designmag?a=dpMWxa-crp4:32SHyRHlh1E:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/designmag?i=dpMWxa-crp4:32SHyRHlh1E:F7zBnMyn0Lo" border="0"></a> <a rel="nofollow" target="_blank" href="http://feeds.feedburner.com/~ff/designmag?a=dpMWxa-crp4:32SHyRHlh1E:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/designmag?i=dpMWxa-crp4:32SHyRHlh1E:V_sGLiPBpWU" border="0"></a> <a rel="nofollow" target="_blank" href="http://feeds.feedburner.com/~ff/designmag?a=dpMWxa-crp4:32SHyRHlh1E:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/designmag?i=dpMWxa-crp4:32SHyRHlh1E:gIN9vFwOqvQ" border="0"></a>
</div>
<p><img src="http://feeds.feedburner.com/~r/designmag/~4/dpMWxa-crp4" height="1" width="1" /></p>
<p><a href="http://feedads.g.doubleclick.net/~a/z-E_HBTezMc7eiIDK7qEoT_55dU/0/da"><img src="http://feedads.g.doubleclick.net/~a/z-E_HBTezMc7eiIDK7qEoT_55dU/0/di" border="0"></img></a><br />
<a href="http://feedads.g.doubleclick.net/~a/z-E_HBTezMc7eiIDK7qEoT_55dU/1/da"><img src="http://feedads.g.doubleclick.net/~a/z-E_HBTezMc7eiIDK7qEoT_55dU/1/di" border="0"></img></a></p>
<p><img src="http://feeds.feedburner.com/~r/designmagblogandnews/~4/dpMWxa-crp4" height="1" width="1" /></p>
]]></content:encoded>
			<wfw:commentRss>http://terrytoledo.com/2012/05/how-to-code-a-jquery-rolodex-style-countdown-ticker/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New portfolio launched</title>
		<link>http://terrytoledo.com/2012/05/new-portfolio-launched/</link>
		<comments>http://terrytoledo.com/2012/05/new-portfolio-launched/#comments</comments>
		<pubDate>Fri, 18 May 2012 04:00:11 +0000</pubDate>
		<dc:creator>DesignM.ag</dc:creator>
				<category><![CDATA[DesignM.ag]]></category>

		<guid isPermaLink="false">http://terrytoledo.com/2012/05/new-portfolio-launched/</guid>
		<description><![CDATA[Advertise here with BSA I have now launched my new responsive website design. Visit Source Advertise here with BSA]]></description>
			<content:encoded><![CDATA[<p><a rel="nofollow" target="_blank" href="http://rss.buysellads.com/click.php?z=1264759&amp;k=7b00119eaeee15661bc8c2a76269358e&amp;a=49840&amp;c=508155664"><br />
				<img src="http://rss.buysellads.com/img.php?z=1264759&amp;k=7b00119eaeee15661bc8c2a76269358e&amp;a=49840&amp;c=508155664" border="0" alt="" /></a></p>
<p><a rel="nofollow" target="_blank" href="http://buysellads.com/buy/sitedetails/pubkey/7b00119eaeee15661bc8c2a76269358e/zone/1264759">Advertise here with BSA</a></p>
<p>
<p>I have now launched my new responsive website design.</p>
<p><a rel="nofollow" target="_blank" href="http://www.mikeinghamdesign.com">Visit Source</a></p>
<p>
<p><a rel="nofollow" target="_blank" href="http://rss.buysellads.com/click.php?z=1264760&amp;k=7b00119eaeee15661bc8c2a76269358e&amp;a=49840&amp;c=504819893"><br />
				<img src="http://rss.buysellads.com/img.php?z=1264760&amp;k=7b00119eaeee15661bc8c2a76269358e&amp;a=49840&amp;c=504819893" border="0" alt="" /></a></p>
<p><a rel="nofollow" target="_blank" href="http://buysellads.com/buy/sitedetails/pubkey/7b00119eaeee15661bc8c2a76269358e/zone/1264760">Advertise here with BSA</a></p>
<p><a href="http://feedads.g.doubleclick.net/~a/m_BojYf0bTSoOJj6gPa1PJ_L8cs/0/da"><img src="http://feedads.g.doubleclick.net/~a/m_BojYf0bTSoOJj6gPa1PJ_L8cs/0/di" border="0"></img></a><br />
<a href="http://feedads.g.doubleclick.net/~a/m_BojYf0bTSoOJj6gPa1PJ_L8cs/1/da"><img src="http://feedads.g.doubleclick.net/~a/m_BojYf0bTSoOJj6gPa1PJ_L8cs/1/di" border="0"></img></a></p>
<p><img src="http://feeds.feedburner.com/~r/designmagblogandnews/~4/8Crdwd2K2lc" height="1" width="1" /></p>
]]></content:encoded>
			<wfw:commentRss>http://terrytoledo.com/2012/05/new-portfolio-launched/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Freebie – 22 hand made social icons in three sizes</title>
		<link>http://terrytoledo.com/2012/05/freebie-%e2%80%93-22-hand-made-social-icons-in-three-sizes/</link>
		<comments>http://terrytoledo.com/2012/05/freebie-%e2%80%93-22-hand-made-social-icons-in-three-sizes/#comments</comments>
		<pubDate>Fri, 18 May 2012 04:00:11 +0000</pubDate>
		<dc:creator>DesignM.ag</dc:creator>
				<category><![CDATA[DesignM.ag]]></category>

		<guid isPermaLink="false">http://terrytoledo.com/2012/05/freebie-%e2%80%93-22-hand-made-social-icons-in-three-sizes/</guid>
		<description><![CDATA[Advertise here with BSA Painted in Photoshop &#62; this set contains 22 icons, each created by hand and prepared to be used as transparent .png’s in three sizes: 128x128px / 64x64px / 32x32px Visit Source Advertise here with BSA]]></description>
			<content:encoded><![CDATA[<p><a rel="nofollow" target="_blank" href="http://rss.buysellads.com/click.php?z=1264759&amp;k=7b00119eaeee15661bc8c2a76269358e&amp;a=49846&amp;c=1482263310"><br />
				<img src="http://rss.buysellads.com/img.php?z=1264759&amp;k=7b00119eaeee15661bc8c2a76269358e&amp;a=49846&amp;c=1482263310" border="0" alt="" /></a></p>
<p><a rel="nofollow" target="_blank" href="http://buysellads.com/buy/sitedetails/pubkey/7b00119eaeee15661bc8c2a76269358e/zone/1264759">Advertise here with BSA</a></p>
<p>
<p>Painted in Photoshop &gt; this set contains 22 icons, each created by hand and prepared to be used as transparent .png’s in three sizes: 128x128px / 64x64px / 32x32px</p>
<p><a rel="nofollow" target="_blank" href="http://www.efingo.com/blog/freebie-22-hand-made-social-icons-in-three-sizes/">Visit Source</a></p>
<p>
<p><a rel="nofollow" target="_blank" href="http://rss.buysellads.com/click.php?z=1264760&amp;k=7b00119eaeee15661bc8c2a76269358e&amp;a=49846&amp;c=1061824909"><br />
				<img src="http://rss.buysellads.com/img.php?z=1264760&amp;k=7b00119eaeee15661bc8c2a76269358e&amp;a=49846&amp;c=1061824909" border="0" alt="" /></a></p>
<p><a rel="nofollow" target="_blank" href="http://buysellads.com/buy/sitedetails/pubkey/7b00119eaeee15661bc8c2a76269358e/zone/1264760">Advertise here with BSA</a></p>
<p><a href="http://feedads.g.doubleclick.net/~a/qEGseECJfibI0e4twqyTPG8pKZU/0/da"><img src="http://feedads.g.doubleclick.net/~a/qEGseECJfibI0e4twqyTPG8pKZU/0/di" border="0"></img></a><br />
<a href="http://feedads.g.doubleclick.net/~a/qEGseECJfibI0e4twqyTPG8pKZU/1/da"><img src="http://feedads.g.doubleclick.net/~a/qEGseECJfibI0e4twqyTPG8pKZU/1/di" border="0"></img></a></p>
<p><img src="http://feeds.feedburner.com/~r/designmagblogandnews/~4/tob_wbjXp5A" height="1" width="1" /></p>
]]></content:encoded>
			<wfw:commentRss>http://terrytoledo.com/2012/05/freebie-%e2%80%93-22-hand-made-social-icons-in-three-sizes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Creative WordPress Theme: Fashy</title>
		<link>http://terrytoledo.com/2012/05/creative-wordpress-theme-fashy/</link>
		<comments>http://terrytoledo.com/2012/05/creative-wordpress-theme-fashy/#comments</comments>
		<pubDate>Fri, 18 May 2012 04:00:11 +0000</pubDate>
		<dc:creator>DesignM.ag</dc:creator>
				<category><![CDATA[DesignM.ag]]></category>

		<guid isPermaLink="false">http://terrytoledo.com/2012/05/creative-wordpress-theme-fashy/</guid>
		<description><![CDATA[Advertise here with BSA Fashy is a Blog and Portfolio WordPress Theme, suited for users who want to run a professional or personal blog and wants to showcase your products, services or news with a unique looking website. Visit Source Advertise here with BSA]]></description>
			<content:encoded><![CDATA[<p><a rel="nofollow" target="_blank" href="http://rss.buysellads.com/click.php?z=1264759&amp;k=7b00119eaeee15661bc8c2a76269358e&amp;a=49863&amp;c=874345902"><br />
				<img src="http://rss.buysellads.com/img.php?z=1264759&amp;k=7b00119eaeee15661bc8c2a76269358e&amp;a=49863&amp;c=874345902" border="0" alt="" /></a></p>
<p><a rel="nofollow" target="_blank" href="http://buysellads.com/buy/sitedetails/pubkey/7b00119eaeee15661bc8c2a76269358e/zone/1264759">Advertise here with BSA</a></p>
<p>
<p>Fashy is a  Blog and Portfolio WordPress Theme, suited for users who want to run a professional or personal blog and wants to showcase your products, services or news with a unique looking website.</p>
<p><a rel="nofollow" target="_blank" href="http://premiumcoding.com/creative-wordpress-theme-fashy/">Visit Source</a></p>
<p>
<p><a rel="nofollow" target="_blank" href="http://rss.buysellads.com/click.php?z=1264760&amp;k=7b00119eaeee15661bc8c2a76269358e&amp;a=49863&amp;c=107836851"><br />
				<img src="http://rss.buysellads.com/img.php?z=1264760&amp;k=7b00119eaeee15661bc8c2a76269358e&amp;a=49863&amp;c=107836851" border="0" alt="" /></a></p>
<p><a rel="nofollow" target="_blank" href="http://buysellads.com/buy/sitedetails/pubkey/7b00119eaeee15661bc8c2a76269358e/zone/1264760">Advertise here with BSA</a></p>
<p><a href="http://feedads.g.doubleclick.net/~a/Mx-9lk7nvEnHrDkrD24_VwnHYoc/0/da"><img src="http://feedads.g.doubleclick.net/~a/Mx-9lk7nvEnHrDkrD24_VwnHYoc/0/di" border="0"></img></a><br />
<a href="http://feedads.g.doubleclick.net/~a/Mx-9lk7nvEnHrDkrD24_VwnHYoc/1/da"><img src="http://feedads.g.doubleclick.net/~a/Mx-9lk7nvEnHrDkrD24_VwnHYoc/1/di" border="0"></img></a></p>
<p><img src="http://feeds.feedburner.com/~r/designmagblogandnews/~4/DbtK8U_VxIw" height="1" width="1" /></p>
]]></content:encoded>
			<wfw:commentRss>http://terrytoledo.com/2012/05/creative-wordpress-theme-fashy/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Stock Art and Photos: Use Them Well and Wisely</title>
		<link>http://terrytoledo.com/2012/05/stock-art-and-photos-use-them-well-and-wisely/</link>
		<comments>http://terrytoledo.com/2012/05/stock-art-and-photos-use-them-well-and-wisely/#comments</comments>
		<pubDate>Fri, 18 May 2012 04:00:11 +0000</pubDate>
		<dc:creator>DesignM.ag</dc:creator>
				<category><![CDATA[DesignM.ag]]></category>

		<guid isPermaLink="false">http://terrytoledo.com/2012/05/stock-art-and-photos-use-them-well-and-wisely/</guid>
		<description><![CDATA[Advertise here with BSA The mere mention of using stock images use to bring up some heated discussion, followed by threats and proclamations of doom for freelancers. Time has proved the doom and gloom prophecies were over-exaggerated&#8230; Visit Source Advertise here with BSA]]></description>
			<content:encoded><![CDATA[<p><a rel="nofollow" target="_blank" href="http://rss.buysellads.com/click.php?z=1264759&amp;k=7b00119eaeee15661bc8c2a76269358e&amp;a=49865&amp;c=240150532"><br />
				<img src="http://rss.buysellads.com/img.php?z=1264759&amp;k=7b00119eaeee15661bc8c2a76269358e&amp;a=49865&amp;c=240150532" border="0" alt="" /></a></p>
<p><a rel="nofollow" target="_blank" href="http://buysellads.com/buy/sitedetails/pubkey/7b00119eaeee15661bc8c2a76269358e/zone/1264759">Advertise here with BSA</a></p>
<p>
<p>The mere mention of using stock images use to bring up some heated discussion, followed by threats and proclamations of doom for freelancers. Time has proved the doom and gloom prophecies were over-exaggerated&#8230;</p>
<p><a rel="nofollow" target="_blank" href="http://graphicleftovers.com/blog/stock-art-photos-wisely/">Visit Source</a></p>
<p>
<p><a rel="nofollow" target="_blank" href="http://rss.buysellads.com/click.php?z=1264760&amp;k=7b00119eaeee15661bc8c2a76269358e&amp;a=49865&amp;c=606333826"><br />
				<img src="http://rss.buysellads.com/img.php?z=1264760&amp;k=7b00119eaeee15661bc8c2a76269358e&amp;a=49865&amp;c=606333826" border="0" alt="" /></a></p>
<p><a rel="nofollow" target="_blank" href="http://buysellads.com/buy/sitedetails/pubkey/7b00119eaeee15661bc8c2a76269358e/zone/1264760">Advertise here with BSA</a></p>
<p><a href="http://feedads.g.doubleclick.net/~a/W-4DRR668FMEDaZcLJOTTR6OfDs/0/da"><img src="http://feedads.g.doubleclick.net/~a/W-4DRR668FMEDaZcLJOTTR6OfDs/0/di" border="0"></img></a><br />
<a href="http://feedads.g.doubleclick.net/~a/W-4DRR668FMEDaZcLJOTTR6OfDs/1/da"><img src="http://feedads.g.doubleclick.net/~a/W-4DRR668FMEDaZcLJOTTR6OfDs/1/di" border="0"></img></a></p>
<p><img src="http://feeds.feedburner.com/~r/designmagblogandnews/~4/aYKvLvAG3Zo" height="1" width="1" /></p>
]]></content:encoded>
			<wfw:commentRss>http://terrytoledo.com/2012/05/stock-art-and-photos-use-them-well-and-wisely/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Create a Simple Google Chrome Icon in Adobe Illustrator</title>
		<link>http://terrytoledo.com/2012/05/how-to-create-a-simple-google-chrome-icon-in-adobe-illustrator/</link>
		<comments>http://terrytoledo.com/2012/05/how-to-create-a-simple-google-chrome-icon-in-adobe-illustrator/#comments</comments>
		<pubDate>Fri, 18 May 2012 04:00:11 +0000</pubDate>
		<dc:creator>DesignM.ag</dc:creator>
				<category><![CDATA[DesignM.ag]]></category>

		<guid isPermaLink="false">http://terrytoledo.com/2012/05/how-to-create-a-simple-google-chrome-icon-in-adobe-illustrator/</guid>
		<description><![CDATA[Advertise here with BSA In the following tutorial you will learn how to create the simple Google Chrome icon in Adobe Illustrator. Visit Source Advertise here with BSA]]></description>
			<content:encoded><![CDATA[<p><a rel="nofollow" target="_blank" href="http://rss.buysellads.com/click.php?z=1264759&amp;k=7b00119eaeee15661bc8c2a76269358e&amp;a=49867&amp;c=997300120"><br />
				<img src="http://rss.buysellads.com/img.php?z=1264759&amp;k=7b00119eaeee15661bc8c2a76269358e&amp;a=49867&amp;c=997300120" border="0" alt="" /></a></p>
<p><a rel="nofollow" target="_blank" href="http://buysellads.com/buy/sitedetails/pubkey/7b00119eaeee15661bc8c2a76269358e/zone/1264759">Advertise here with BSA</a></p>
<p>
<p>In the following tutorial you will learn how to create the simple Google Chrome icon in Adobe Illustrator.</p>
<p><a rel="nofollow" target="_blank" href="http://www.devgarage.com/google-chrome-icon-illustrator/">Visit Source</a></p>
<p>
<p><a rel="nofollow" target="_blank" href="http://rss.buysellads.com/click.php?z=1264760&amp;k=7b00119eaeee15661bc8c2a76269358e&amp;a=49867&amp;c=1643485274"><br />
				<img src="http://rss.buysellads.com/img.php?z=1264760&amp;k=7b00119eaeee15661bc8c2a76269358e&amp;a=49867&amp;c=1643485274" border="0" alt="" /></a></p>
<p><a rel="nofollow" target="_blank" href="http://buysellads.com/buy/sitedetails/pubkey/7b00119eaeee15661bc8c2a76269358e/zone/1264760">Advertise here with BSA</a></p>
<p><a href="http://feedads.g.doubleclick.net/~a/mM4WdASlksywrYIGUR998BnKsNE/0/da"><img src="http://feedads.g.doubleclick.net/~a/mM4WdASlksywrYIGUR998BnKsNE/0/di" border="0"></img></a><br />
<a href="http://feedads.g.doubleclick.net/~a/mM4WdASlksywrYIGUR998BnKsNE/1/da"><img src="http://feedads.g.doubleclick.net/~a/mM4WdASlksywrYIGUR998BnKsNE/1/di" border="0"></img></a></p>
<p><img src="http://feeds.feedburner.com/~r/designmagblogandnews/~4/EeSIEwoiHCk" height="1" width="1" /></p>
]]></content:encoded>
			<wfw:commentRss>http://terrytoledo.com/2012/05/how-to-create-a-simple-google-chrome-icon-in-adobe-illustrator/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How To: Create a Business Directory like Yelp with WordPress</title>
		<link>http://terrytoledo.com/2012/05/how-to-create-a-business-directory-like-yelp-with-wordpress/</link>
		<comments>http://terrytoledo.com/2012/05/how-to-create-a-business-directory-like-yelp-with-wordpress/#comments</comments>
		<pubDate>Wed, 16 May 2012 04:00:19 +0000</pubDate>
		<dc:creator>DesignM.ag</dc:creator>
				<category><![CDATA[DesignM.ag]]></category>

		<guid isPermaLink="false">http://terrytoledo.com/2012/05/how-to-create-a-business-directory-like-yelp-with-wordpress/</guid>
		<description><![CDATA[Advertise here with BSA Vantage is the latest theme from AppThemes which allows you to turn WordPress into a full featured business listings directory such as Yelp.com which allows businesses to add themselves and let customers rate them and leave comments. The theme has built-in monetization options so you can charge for listings, featured listings [...]]]></description>
			<content:encoded><![CDATA[<p><a rel="nofollow" target="_blank" href="http://rss.buysellads.com/click.php?z=1264759&amp;k=7b00119eaeee15661bc8c2a76269358e&amp;a=49781&amp;c=435193958"><br />
				<img src="http://rss.buysellads.com/img.php?z=1264759&amp;k=7b00119eaeee15661bc8c2a76269358e&amp;a=49781&amp;c=435193958" border="0" alt="" /></a></p>
<p><a rel="nofollow" target="_blank" href="http://buysellads.com/buy/sitedetails/pubkey/7b00119eaeee15661bc8c2a76269358e/zone/1264759">Advertise here with BSA</a></p>
<p>
<p>Vantage is the latest theme from AppThemes which allows you to turn WordPress into a full featured business listings directory such as Yelp.com which allows businesses to add themselves and let customers rate them and leave comments. The theme has built-in monetization options so you can charge for listings, featured listings or place advertisements.</p>
<p><a rel="nofollow" target="_blank" href="http://wplift.com/how-to-create-a-business-directory-like-yelp-with-wordpress">Visit Source</a></p>
<p>
<p><a rel="nofollow" target="_blank" href="http://rss.buysellads.com/click.php?z=1264760&amp;k=7b00119eaeee15661bc8c2a76269358e&amp;a=49781&amp;c=422340368"><br />
				<img src="http://rss.buysellads.com/img.php?z=1264760&amp;k=7b00119eaeee15661bc8c2a76269358e&amp;a=49781&amp;c=422340368" border="0" alt="" /></a></p>
<p><a rel="nofollow" target="_blank" href="http://buysellads.com/buy/sitedetails/pubkey/7b00119eaeee15661bc8c2a76269358e/zone/1264760">Advertise here with BSA</a></p>
<p><a href="http://feedads.g.doubleclick.net/~a/rPYPbBLN6_XeFQSDhjfi-aRD9Ig/0/da"><img src="http://feedads.g.doubleclick.net/~a/rPYPbBLN6_XeFQSDhjfi-aRD9Ig/0/di" border="0"></img></a><br />
<a href="http://feedads.g.doubleclick.net/~a/rPYPbBLN6_XeFQSDhjfi-aRD9Ig/1/da"><img src="http://feedads.g.doubleclick.net/~a/rPYPbBLN6_XeFQSDhjfi-aRD9Ig/1/di" border="0"></img></a></p>
<p><img src="http://feeds.feedburner.com/~r/designmagblogandnews/~4/j70KK5zaGXg" height="1" width="1" /></p>
]]></content:encoded>
			<wfw:commentRss>http://terrytoledo.com/2012/05/how-to-create-a-business-directory-like-yelp-with-wordpress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>25 New High Quality &amp; Free WordPress Themes for May 2012</title>
		<link>http://terrytoledo.com/2012/05/25-new-high-quality-free-wordpress-themes-for-may-2012/</link>
		<comments>http://terrytoledo.com/2012/05/25-new-high-quality-free-wordpress-themes-for-may-2012/#comments</comments>
		<pubDate>Wed, 16 May 2012 04:00:19 +0000</pubDate>
		<dc:creator>DesignM.ag</dc:creator>
				<category><![CDATA[DesignM.ag]]></category>

		<guid isPermaLink="false">http://terrytoledo.com/2012/05/25-new-high-quality-free-wordpress-themes-for-may-2012/</guid>
		<description><![CDATA[Advertise here with BSA Once again, the brilliant theme designers have been busy and we have loads of great free WordPress themes for you this month, nice clean business theme, portfolio themes, responsive, sliders – you name it and we have you covered. Visit Source Advertise here with BSA]]></description>
			<content:encoded><![CDATA[<p><a rel="nofollow" target="_blank" href="http://rss.buysellads.com/click.php?z=1264759&amp;k=7b00119eaeee15661bc8c2a76269358e&amp;a=49804&amp;c=1711651928"><br />
				<img src="http://rss.buysellads.com/img.php?z=1264759&amp;k=7b00119eaeee15661bc8c2a76269358e&amp;a=49804&amp;c=1711651928" border="0" alt="" /></a></p>
<p><a rel="nofollow" target="_blank" href="http://buysellads.com/buy/sitedetails/pubkey/7b00119eaeee15661bc8c2a76269358e/zone/1264759">Advertise here with BSA</a></p>
<p>
<p>Once again, the brilliant theme designers have been busy and we have loads of great free WordPress themes for you this month, nice clean business theme, portfolio themes, responsive, sliders – you name it and we have you covered.</p>
<p><a rel="nofollow" target="_blank" href="http://wplift.com/25-new-high-quality-free-wordpress-themes-for-may-2012">Visit Source</a></p>
<p>
<p><a rel="nofollow" target="_blank" href="http://rss.buysellads.com/click.php?z=1264760&amp;k=7b00119eaeee15661bc8c2a76269358e&amp;a=49804&amp;c=2109308002"><br />
				<img src="http://rss.buysellads.com/img.php?z=1264760&amp;k=7b00119eaeee15661bc8c2a76269358e&amp;a=49804&amp;c=2109308002" border="0" alt="" /></a></p>
<p><a rel="nofollow" target="_blank" href="http://buysellads.com/buy/sitedetails/pubkey/7b00119eaeee15661bc8c2a76269358e/zone/1264760">Advertise here with BSA</a></p>
<p><a href="http://feedads.g.doubleclick.net/~a/dCbZcRyGvae493yabcUF-0rMoAk/0/da"><img src="http://feedads.g.doubleclick.net/~a/dCbZcRyGvae493yabcUF-0rMoAk/0/di" border="0"></img></a><br />
<a href="http://feedads.g.doubleclick.net/~a/dCbZcRyGvae493yabcUF-0rMoAk/1/da"><img src="http://feedads.g.doubleclick.net/~a/dCbZcRyGvae493yabcUF-0rMoAk/1/di" border="0"></img></a></p>
<p><img src="http://feeds.feedburner.com/~r/designmagblogandnews/~4/iyPX7gD9LE4" height="1" width="1" /></p>
]]></content:encoded>
			<wfw:commentRss>http://terrytoledo.com/2012/05/25-new-high-quality-free-wordpress-themes-for-may-2012/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New Sweetest Music Film from LoungeV</title>
		<link>http://terrytoledo.com/2012/05/new-sweetest-music-film-from-loungev/</link>
		<comments>http://terrytoledo.com/2012/05/new-sweetest-music-film-from-loungev/#comments</comments>
		<pubDate>Wed, 16 May 2012 04:00:18 +0000</pubDate>
		<dc:creator>DesignM.ag</dc:creator>
				<category><![CDATA[DesignM.ag]]></category>

		<guid isPermaLink="false">http://terrytoledo.com/2012/05/new-sweetest-music-film-from-loungev/</guid>
		<description><![CDATA[Advertise here with BSA This film is a new 36 min sleep music addition to &#8220;Caribbean Lounge&#8221; 2 hour long collection of exotic HD landscapes with sounds of nature and peaceful melodies. Some of the sweetest lullabies with romantic guitar and soothing waves will softly surround you with peace and harmony. The full version of [...]]]></description>
			<content:encoded><![CDATA[<p><a rel="nofollow" target="_blank" href="http://rss.buysellads.com/click.php?z=1264759&amp;k=7b00119eaeee15661bc8c2a76269358e&amp;a=49773&amp;c=1511384789"><br />
				<img src="http://rss.buysellads.com/img.php?z=1264759&amp;k=7b00119eaeee15661bc8c2a76269358e&amp;a=49773&amp;c=1511384789" border="0" alt="" /></a></p>
<p><a rel="nofollow" target="_blank" href="http://buysellads.com/buy/sitedetails/pubkey/7b00119eaeee15661bc8c2a76269358e/zone/1264759">Advertise here with BSA</a></p>
<p>
<p>This film is a new 36 min sleep music addition to &#8220;Caribbean Lounge&#8221; 2 hour long collection of exotic HD landscapes with sounds of nature and peaceful melodies. Some of the sweetest lullabies with romantic guitar and soothing waves will softly surround you with peace and harmony. The full version of this relaxing sleep music film is now available in 1080p as well as 720p for computers and iPads.</p>
<p>SLEEP MUSIC<br />
It&#8217;s only a 3 minute clip but it will really set you in a sleepy mood. Even in severe cases of insomnia, the full-length film worked miracles. Simply believe in what you see and hear. We recommend playing this sleep music film on a TV while in bed. Just relax and stop resisting it. Sweet dreams <img src="http://designm.ag/wp-includes/images/smilies/icon_smile.gif" alt=":)" class="wp-smiley" /> </p>
<p>RELAXING MUSIC<br />
What do we usually have on TV while we eat at dinner table? I bet nothing similar to what you see above. I hope you&#8217;d enjoy spending some time to relax in a tropical paradise while having a great meal and a nice company beside you. I tried it myself dining with my wife and we had an amazing relaxing time, try it out folks. Don&#8217;t forget to plug a nice stereo system to enjoy this relaxing music. A full HD flat-screen would make things even better as you find yourselves on a vacation on a tropical island.</p>
<p>Web: http://www.loungev.com/ &amp; http://www.downloadhdvideo.com/films/melodic-surf-sleep-music/</p>
<p><a rel="nofollow" target="_blank" href="http://www.downloadhdvideo.com/">Visit Source</a></p>
<p>
<p><a rel="nofollow" target="_blank" href="http://rss.buysellads.com/click.php?z=1264760&amp;k=7b00119eaeee15661bc8c2a76269358e&amp;a=49773&amp;c=2049813174"><br />
				<img src="http://rss.buysellads.com/img.php?z=1264760&amp;k=7b00119eaeee15661bc8c2a76269358e&amp;a=49773&amp;c=2049813174" border="0" alt="" /></a></p>
<p><a rel="nofollow" target="_blank" href="http://buysellads.com/buy/sitedetails/pubkey/7b00119eaeee15661bc8c2a76269358e/zone/1264760">Advertise here with BSA</a></p>
<p><a href="http://feedads.g.doubleclick.net/~a/IFmxY3vFtgIrFjQaFmlrzEfIkH8/0/da"><img src="http://feedads.g.doubleclick.net/~a/IFmxY3vFtgIrFjQaFmlrzEfIkH8/0/di" border="0"></img></a><br />
<a href="http://feedads.g.doubleclick.net/~a/IFmxY3vFtgIrFjQaFmlrzEfIkH8/1/da"><img src="http://feedads.g.doubleclick.net/~a/IFmxY3vFtgIrFjQaFmlrzEfIkH8/1/di" border="0"></img></a></p>
<p><img src="http://feeds.feedburner.com/~r/designmagblogandnews/~4/qmLH7VwjQFo" height="1" width="1" /></p>
]]></content:encoded>
			<wfw:commentRss>http://terrytoledo.com/2012/05/new-sweetest-music-film-from-loungev/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>30 Awesome Free &amp; Premium Mobile WordPress Themes</title>
		<link>http://terrytoledo.com/2012/05/30-awesome-free-premium-mobile-wordpress-themes/</link>
		<comments>http://terrytoledo.com/2012/05/30-awesome-free-premium-mobile-wordpress-themes/#comments</comments>
		<pubDate>Wed, 16 May 2012 04:00:18 +0000</pubDate>
		<dc:creator>DesignM.ag</dc:creator>
				<category><![CDATA[DesignM.ag]]></category>

		<guid isPermaLink="false">http://terrytoledo.com/2012/05/30-awesome-free-premium-mobile-wordpress-themes/</guid>
		<description><![CDATA[Advertise here with BSA Mobile web browsing has never been more popular. It goes without saying that iOS, Android, and other mobile platforms are here to stay. At this point if you don’t have a mobile version of your blog then you are behind the times. Here are 30 of the best mobile WordPress themes [...]]]></description>
			<content:encoded><![CDATA[<p><a rel="nofollow" target="_blank" href="http://rss.buysellads.com/click.php?z=1264759&amp;k=7b00119eaeee15661bc8c2a76269358e&amp;a=49776&amp;c=470545545"><br />
				<img src="http://rss.buysellads.com/img.php?z=1264759&amp;k=7b00119eaeee15661bc8c2a76269358e&amp;a=49776&amp;c=470545545" border="0" alt="" /></a></p>
<p><a rel="nofollow" target="_blank" href="http://buysellads.com/buy/sitedetails/pubkey/7b00119eaeee15661bc8c2a76269358e/zone/1264759">Advertise here with BSA</a></p>
<p>
<p>Mobile web browsing has never been more popular. It goes without saying that iOS, Android, and other mobile platforms are here to stay. At this point if you don’t have a mobile version of your blog then you are behind the times. Here are 30 of the best mobile WordPress themes around.</p>
<p><a rel="nofollow" target="_blank" href="http://wplift.com/30-awesome-free-premium-mobile-wordpress-themes">Visit Source</a></p>
<p>
<p><a rel="nofollow" target="_blank" href="http://rss.buysellads.com/click.php?z=1264760&amp;k=7b00119eaeee15661bc8c2a76269358e&amp;a=49776&amp;c=215605712"><br />
				<img src="http://rss.buysellads.com/img.php?z=1264760&amp;k=7b00119eaeee15661bc8c2a76269358e&amp;a=49776&amp;c=215605712" border="0" alt="" /></a></p>
<p><a rel="nofollow" target="_blank" href="http://buysellads.com/buy/sitedetails/pubkey/7b00119eaeee15661bc8c2a76269358e/zone/1264760">Advertise here with BSA</a></p>
<p><a href="http://feedads.g.doubleclick.net/~a/7qQHee3VQ8tePc6Ib2Zf8KoCGiU/0/da"><img src="http://feedads.g.doubleclick.net/~a/7qQHee3VQ8tePc6Ib2Zf8KoCGiU/0/di" border="0"></img></a><br />
<a href="http://feedads.g.doubleclick.net/~a/7qQHee3VQ8tePc6Ib2Zf8KoCGiU/1/da"><img src="http://feedads.g.doubleclick.net/~a/7qQHee3VQ8tePc6Ib2Zf8KoCGiU/1/di" border="0"></img></a></p>
<p><img src="http://feeds.feedburner.com/~r/designmagblogandnews/~4/y1Kz6TbN-WU" height="1" width="1" /></p>
]]></content:encoded>
			<wfw:commentRss>http://terrytoledo.com/2012/05/30-awesome-free-premium-mobile-wordpress-themes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

