<?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>3 Roads Media</title>
	<atom:link href="http://www.3roadsmedia.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.3roadsmedia.com</link>
	<description>Denver Web Development, Graphic, &#38; Website Design</description>
	<lastBuildDate>Thu, 03 May 2012 18:32:02 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>ExpressionEngine Tip: Highlight Only Active Categories in a Category List</title>
		<link>http://www.3roadsmedia.com/blog/expressionengine-tip-highlight-only-active-categories-in-a-category-list/</link>
		<comments>http://www.3roadsmedia.com/blog/expressionengine-tip-highlight-only-active-categories-in-a-category-list/#comments</comments>
		<pubDate>Tue, 13 Mar 2012 02:39:05 +0000</pubDate>
		<dc:creator>Ryan</dc:creator>
				<category><![CDATA[Developer's Toolbox]]></category>
		<category><![CDATA[Expression Engine]]></category>
		<category><![CDATA[Tutorials]]></category>

		<guid isPermaLink="false">http://www.3roadsmedia.com/?p=2751</guid>
		<description><![CDATA[Perhaps you&#8217;ve been here before: you want to show all of the categories in a particular ExpressionEngine category group, while also highlighting only those categories to which a particular entry belongs. This is not something EE&#8217;s category tags can do natively, so I set out to find a way. I&#8217;ll show you what I discovered [...]]]></description>
			<content:encoded><![CDATA[<p>Perhaps you&#8217;ve been here before: you want to show all of the categories in a particular ExpressionEngine category group, while also highlighting only those categories to which a particular entry belongs.</p>
<p>This is not something EE&#8217;s category tags can do natively, so I set out to find a way. I&#8217;ll show you what I discovered in this short tutorial.</p>
<p><span id="more-2751"></span></p>
<h2>Last things first: the final result</h2>
<p>In case the concept is still abstract, here is a screenshot of the final result:</p>
<div id="attachment_2752" class="wp-caption aligncenter" style="width: 490px"><img class="size-full wp-image-2752 " title="A quick glimpse at the final result" src="http://www.3roadsmedia.com/wordpress/wp-content/uploads/2012/03/ee-categories.png" alt="" width="480" height="141" /><p class="wp-caption-text">A list of all categories, with active ones checked</p></div>
<p>What you see is a <strong>portion</strong> of a Safecracker form for editing a single entry. I wanted to let the end user see all of the category options, as well as which categories were already selected for the current entry. A checkbox field seemed like a logical choice.</p>
<p>You&#8217;ll notice that some of the checkboxes are checked, and that there are no duplicate categories. I know&#8230;like magic.</p>
<h2>How it&#8217;s done</h2>
<p>In this example, I&#8217;m using an embedded template, but that may not be necessary for everyone. In your parent template, place the following code:</p>
<pre><span style="color: #000080;">&lt;h2&gt;</span>Type of Venue<span style="color: #000080;">&lt;/h2&gt;</span>
<span style="color: #000080;">&lt;div class=<span style="color: #0000ff;">"cats"</span>&gt;</span>{embed="includes/fetch_cats" cat_group="1" entry_id="{entry_id}"}<span style="color: #000080;">&lt;/div&gt;</span></pre>
<p>Then, in your embedded template (<strong>includes/fetch_cats</strong> in this example), place the following code:</p>
<pre><span style="color: #ff0000;">&lt;?php</span>
<span style="color: #ff9900;">// get all categories in the specified group</span>
<span style="color: #3366ff;">$all_cats</span> <span style="color: #000080;">=</span> <span style="color: #3366ff;">$this</span><span style="color: #000080;">-&gt;</span>EE<span style="color: #000080;">-&gt;</span>db<span style="color: #000080;">-&gt;</span>query <span style="color: #000080;">(</span> <span style="color: #ff0000;">"SELECT cat_id, cat_name FROM exp_categories WHERE group_id = '{embed:cat_group}' ORDER BY cat_name"</span> <span style="color: #000080;">)</span>;

<span style="color: #ff9900;">// loop through each cat returned, marking a box checked if the current entry is in that cat</span>
<span style="color: #008000;">foreach</span> <span style="color: #000080;">(</span> <span style="color: #3366ff;">$all_cats</span><span style="color: #000080;">-&gt;</span>result<span style="color: #000080;">()</span> <span style="color: #008000;">as</span> <span style="color: #3366ff;">$row</span> <span style="color: #000080;">) {</span>
   <span style="color: #3366ff;">$venue_cats</span> = <span style="color: #3366ff;">$this</span><span style="color: #000080;">-&gt;</span>EE<span style="color: #000080;">-&gt;</span>db<span style="color: #000080;">-&gt;</span>query <span style="color: #000080;">(</span> <span style="color: #ff0000;">"SELECT cat_id AS venue_cat_id FROM exp_category_posts WHERE entry_id='{embed:entry_id}' AND cat_id = '"</span> <span style="color: #000080;">.</span> <span style="color: #3366ff;">$row</span><span style="color: #000080;">-&gt;</span>cat_id <span style="color: #000080;">.</span> <span style="color: #ff0000;">"'"</span> <span style="color: #000080;">)</span>;
   <span style="color: #008000;">if</span> <span style="color: #000080;">(</span> <span style="color: #3366ff;">$venue_cats</span><span style="color: #000080;">-&gt;</span>num_rows<span style="color: #000080;">() ) {</span>
      <span style="color: #008000;">echo</span> <span style="color: #ff0000;">'&lt;label&gt;&lt;input checked="checked" type="checkbox" name="category[]" value="'</span> <span style="color: #000080;">.</span> <span style="color: #3366ff;">$row</span><span style="color: #000080;">-&gt;</span>cat_id <span style="color: #000080;">.</span> <span style="color: #ff0000;">'" /&gt; '</span> <span style="color: #000080;">.</span> <span style="color: #3366ff;">$row</span><span style="color: #000080;">-&gt;</span>cat_name <span style="color: #000080;">.</span> <span style="color: #ff0000;">'&lt;/label&gt;'</span>;
   <span style="color: #000080;">}</span> <span style="color: #008000;">else</span> {
      <span style="color: #008000;">echo</span> <span style="color: #ff0000;">'&lt;label&gt;&lt;input type="checkbox" name="category[]" value="'</span> <span style="color: #000080;">.</span> <span style="color: #3366ff;">$row</span><span style="color: #000080;">-&gt;</span>cat_id <span style="color: #000080;">.</span> <span style="color: #ff0000;">'" /&gt; '</span> <span style="color: #000080;">.</span> <span style="color: #3366ff;">$row</span><span style="color: #000080;">-&gt;</span>cat_name <span style="color: #000080;">.</span> <span style="color: #ff0000;">'&lt;/label&gt;'</span>;
  <span style="color: #000080;"> }</span>
<span style="color: #000080;">} <span style="color: #ff0000;">?&gt; </span></span></pre>
<p><em><strong>Be sure that your embedded template has PHP enabled on Output.</strong></em></p>
<p>That&#8217;s all there is to it. The nice thing about using an embedded template is that it&#8217;s very modular; you can pass any category group ID  and entry ID to it and it will return the expected categories.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.3roadsmedia.com/blog/expressionengine-tip-highlight-only-active-categories-in-a-category-list/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>City of Blackhawk Website Goes Live</title>
		<link>http://www.3roadsmedia.com/blog/city-of-blackhawk-website-goes-live/</link>
		<comments>http://www.3roadsmedia.com/blog/city-of-blackhawk-website-goes-live/#comments</comments>
		<pubDate>Fri, 02 Mar 2012 18:49:35 +0000</pubDate>
		<dc:creator>patrick</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.3roadsmedia.com/?p=2614</guid>
		<description><![CDATA[Black Hawk is a scenic mountain town 32 miles west of Denver renowned for its casinos and rich history. Recent growth and changes in gambling laws have poised the city to blossom  into a tourism destination on a national level, but their former website did not reflect this. So the city came to us needing [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.visitblackhawk.org">Black Hawk</a> is a scenic mountain town 32 miles west of Denver renowned for its casinos and rich history. Recent growth and changes in gambling laws have poised the city to blossom  into a tourism destination on a national level, but their former website did not reflect this. So the city came to us needing a new website to help update their image from a local casino town to a modern gambling mecca with national appeal. The team at 3 Roads Media restructured their web page using updated graphics which accentuate the entertainment opportunities that Black Hawk has to offer.</p>
<p><a href="http://www.3roadsmedia.com/blog/city-of-blackhawk-website-goes-live/black-hawk-new-website-2/" rel="attachment wp-att-2744"><img class="alignnone size-full wp-image-2744" title="Black-Hawk-New-Website" src="http://www.3roadsmedia.com/wordpress/wp-content/uploads/2012/03/Black-Hawk-New-Website1.jpg" alt="" width="521" height="274" /></a></p>
<p>3 roads incorporated a better sense of organization to the website so that first-time visitors develop a strong first impression of the city as a tourist destination. By having “Gaming,” Lodging,” “Dining,” and “Travel” the main drop-down menus on the homepage, the city instantly asserts itself as a resort area centered around entertainment and service. The former Black Hawk website contained much of the same content, but it wasn’t organized in an accessible or enticing fashion for prospective vacationers browsing the website.</p>
<p>3 roads also designed a new Black Hawk logo: it features the city’s name with a pivoted die in the middle which brands Black Hawk in a definitive and meaningful way to the public by identifying the city’s primary selling point.</p>
<p>We also equipped the website with a content management system (CMS) that allows the client to manually update, edit, and add certain content to the website at their leisure and completely independently. The new website is easier to use for visitors, and allows them to find information more quickly.</p>
<p>Weather conditions, traffic reports, and a live webcam also serve as meaningful features and supply visitors with other pertinent and timely info that makes the new site as useful and interactive as possible.</p>
<p>Check out the new website for yourself and take a peek at the city’s new cyber real estate at <a href="http://visitblackhawk.org/">visitblackhawk.org</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.3roadsmedia.com/blog/city-of-blackhawk-website-goes-live/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Free Halloween Wallpaper 2011</title>
		<link>http://www.3roadsmedia.com/blog/free-halloween-wallpaper-2011/</link>
		<comments>http://www.3roadsmedia.com/blog/free-halloween-wallpaper-2011/#comments</comments>
		<pubDate>Mon, 17 Oct 2011 16:32:32 +0000</pubDate>
		<dc:creator>Brennan</dc:creator>
				<category><![CDATA[Freebies]]></category>
		<category><![CDATA[Illustrator]]></category>
		<category><![CDATA[Desktop Wallpaper]]></category>
		<category><![CDATA[Free]]></category>
		<category><![CDATA[Halloween]]></category>
		<category><![CDATA[Illustration]]></category>
		<category><![CDATA[Wallpaper]]></category>

		<guid isPermaLink="false">http://www.3roadsmedia.com/?p=2626</guid>
		<description><![CDATA[It has been awhile since we have released a desktop wallpaper, so with Halloween fast approaching, I thought I would illustrate a nice desktop Halloween wallpaper for the occasion. This designer wallpaper shows the best part of Halloween: Trick-or-Treating! A classic, muted color palette, some fun costumes and a spooky ghost following up the pack [...]]]></description>
			<content:encoded><![CDATA[<p>It has been awhile since we have released a desktop wallpaper, so with Halloween fast approaching, I thought I would illustrate a nice desktop Halloween wallpaper for the occasion.</p>
<p>This designer wallpaper shows the best part of Halloween: Trick-or-Treating! A classic, muted color palette, some fun costumes and a spooky ghost following up the pack all bring back memories of this classic American holiday. Whatever your plans this year, I hope you enjoy this free Halloween desktop wallpaper. Happy Halloween!</p>
<p><em>Font: &#8220;Canaveral&#8221; by Riley Cran for Lost Type Co-op</em></p>
<div id="attachment_2648" class="wp-caption alignnone" style="width: 490px"><a href="http://www.3roadsmedia.com/wordpress/wp-content/uploads/2011/10/Old_School_Halloween_Preview.jpg" rel="post-image"><img class="  " src="http://www.3roadsmedia.com/wordpress/wp-content/uploads/2011/10/Old_School_Halloween_Preview.jpg" alt="&quot;Old School Halloween&quot; Wallpaper Preview" width="480" height="300" /></a><p class="wp-caption-text">Good ol&#39; fashioned Trick-or-Treating</p></div>
<h2>Download the Halloween Wallpaper:</h2>
<ul>
<li><a href="http://www.3roadsmedia.com/wordpress/wp-content/uploads/2011/10/Old_School_Halloween_1024x768.png">1024&#215;768</a></li>
<li><a href="http://www.3roadsmedia.com/wordpress/wp-content/uploads/2011/10/Old_School_Halloween_1280x800.png">1280&#215;800</a></li>
<li><a href="http://www.3roadsmedia.com/wordpress/wp-content/uploads/2011/10/Old_School_Halloween_1280x1024.png">1280&#215;1024</a></li>
<li><a href="http://www.3roadsmedia.com/wordpress/wp-content/uploads/2011/10/Old_School_Halloween_1440x900.png">1440&#215;900</a></li>
<li><a href="http://www.3roadsmedia.com/wordpress/wp-content/uploads/2011/10/Old_School_Halloween_1650x1080.png">1650&#215;1080</a></li>
<li><a href="http://www.3roadsmedia.com/wordpress/wp-content/uploads/2011/10/Old_School_Halloween_1920x1200.png">1920&#215;1200</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.3roadsmedia.com/blog/free-halloween-wallpaper-2011/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Bordo Bello 2011</title>
		<link>http://www.3roadsmedia.com/blog/bordo-bello-2011/</link>
		<comments>http://www.3roadsmedia.com/blog/bordo-bello-2011/#comments</comments>
		<pubDate>Wed, 05 Oct 2011 15:20:19 +0000</pubDate>
		<dc:creator>Ryan</dc:creator>
				<category><![CDATA[Events]]></category>
		<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://www.3roadsmedia.com/?p=2592</guid>
		<description><![CDATA[Cliché as it might sound, it&#8217;s hard for us to believe that another year has gone by, and that our second Bordo Bello experience is already in the rear view mirror. While we seriously enjoyed ourselves at last year&#8217;s event, the event coordinators really outdid themselves this year. The four hours we spent at BB [...]]]></description>
			<content:encoded><![CDATA[<p>Cliché as it might sound, it&#8217;s hard for us to believe that another year has gone by, and that our second Bordo Bello experience is already in the rear view mirror. While we seriously enjoyed ourselves at last year&#8217;s event, the event coordinators really outdid themselves this year. The four hours we spent at BB &#8217;11 flew by in no time.</p>
<p>This year&#8217;s event was held at the much more spacious Redline Gallery (24th and Arapahoe), which gave us plenty of room to mill about, and also provided plenty of wall space for this year&#8217;s entries. We can&#8217;t be sure, but it felt like there were more boards on display this year (and the overall quality of submissions was definitely a step above 2010&#8242;s).</p>
<div id="attachment_2595" class="wp-caption aligncenter" style="width: 490px"><a href="http://www.3roadsmedia.com/wordpress/wp-content/uploads/2011/10/bordobello_vantage.jpg"><img class="size-medium wp-image-2595" title="Bordo Bello 2011 @ the Redline Gallery" src="http://www.3roadsmedia.com/wordpress/wp-content/uploads/2011/10/bordobello_vantage-480x320.jpg" alt="" width="480" height="320" /></a><p class="wp-caption-text">A view of the event in its early hours (photo courtesy of AIGA Colorado)</p></div>
<p><span id="more-2592"></span>This year&#8217;s theme was centered around old school arcade games. Regretfully, I was too busy perusing the boards and placing bids to enjoy the awesome arcade action (Donkey Kong? Are you kidding me?), but I noticed plenty of other participants enjoying the free fun.</p>
<div id="attachment_2596" class="wp-caption aligncenter" style="width: 490px"><a href="http://www.3roadsmedia.com/wordpress/wp-content/uploads/2011/10/bordobello_arcade.jpg"><img class="size-medium wp-image-2596" title="Enjoying Donkey Kong @ Bordo Bello" src="http://www.3roadsmedia.com/wordpress/wp-content/uploads/2011/10/bordobello_arcade-480x320.jpg" alt="" width="480" height="320" /></a><p class="wp-caption-text">Bathed in the warm glow of old school arcade goodness (photo courtesy of AIGA Colorado)</p></div>
<p>Other big pluses included with the ticket price:</p>
<ul>
<li>Plenty of free Sobe and Izze (thoughtful, non-alcoholic choices for those disinclined to cash in their drink tickets for Odell&#8217;s tasty beer)</li>
<li>Three slices of pizza by the talented folks at <a href="http://basickneadspizza.com/">Basic Kneads Pizza</a></li>
<li>A cool letterpress poster commemorating the event (which we forgot to pick up&#8230;drat)</li>
<li>Endless amounts of Popchips</li>
<li>Breakdancing performances by <a href="http://www.streetsidedance.com/">Streetside Dance</a></li>
<li>An unexpected marriage proposal (she said yes)</li>
</ul>
<h2>Cell phones (not really) optional</h2>
<p>AIGA Colorado (the event&#8217;s coordinators) introduced QR codes and online bidding through eBay for many of this year&#8217;s entries. This was a neat concept that made the event more interactive; however, it had a few drawbacks that we feel are worth mentioning:</p>
<ul>
<li>Those without smart phones (admittedly a small and shrinking percentage of people) couldn&#8217;t bid on the internet-only boards</li>
<li>An eBay account was required for online bidding.</li>
<li>To see the current bid, you had to scan the board&#8217;s QR code. If you&#8217;re tracking multiple internet only boards, this means constantly scanning codes and waiting for eBay to load; much slower than reading a bid sheet.</li>
<li>Using a phone to place a bid is more cumbersome than pencil and paper. I actually lost out on a board because of this.</li>
</ul>
<p>All that being said, I liked the idea of QR codes and think Bordo Bello should consider bringing them back next year.</p>
<h2>Our submissions</h2>
<p>In our <a href="http://www.3roadsmedia.com/blog/bordo-bello-2011-deck-previews/">previous post</a>, we previewed the two boards we were having printed for this year&#8217;s event. Here are shots of both hanging on the wall:</p>
<div id="attachment_2597" class="wp-caption aligncenter" style="width: 473px"><a href="http://www.3roadsmedia.com/wordpress/wp-content/uploads/2011/10/bordobello_letweet.jpg"><img class="size-medium wp-image-2597" title="Le Tweet" src="http://www.3roadsmedia.com/wordpress/wp-content/uploads/2011/10/bordobello_letweet-463x640.jpg" alt="" width="463" height="640" /></a><p class="wp-caption-text">Me, posing near my board</p></div>
<div id="attachment_2598" class="wp-caption aligncenter" style="width: 490px"><a href="http://www.3roadsmedia.com/wordpress/wp-content/uploads/2011/10/bordobello_zombie.jpg"><img class="size-medium wp-image-2598" title="Run Kids, Run" src="http://www.3roadsmedia.com/wordpress/wp-content/uploads/2011/10/bordobello_zombie-480x253.jpg" alt="" width="480" height="253" /></a><p class="wp-caption-text">Brennan&#39;s board, post bidding</p></div>
<h2>The booty</h2>
<p>I don&#8217;t know if our winning bids are technically &#8220;booty&#8221; (since we didn&#8217;t pirate them from Her Majesty&#8217;s Navy), but we think they&#8217;re fantastic.</p>
<div id="attachment_2599" class="wp-caption aligncenter" style="width: 490px"><a href="http://www.3roadsmedia.com/wordpress/wp-content/uploads/2011/10/bordobello_booty.jpg"><img class="size-medium wp-image-2599" title="Our winning boards" src="http://www.3roadsmedia.com/wordpress/wp-content/uploads/2011/10/bordobello_booty-480x553.jpg" alt="" width="480" height="553" /></a><p class="wp-caption-text">Our winning boards, on display in our studio</p></div>
<h2>Wrap up</h2>
<p>If you missed this year&#8217;s event, you can live vicariously by visiting the <a href="http://www.flickr.com/photos/14239083@N02/sets/72157627835902688/with/6218871783/">Bordo Bello 2011 Flickr page</a>. We&#8217;ll certainly be back for next year&#8217;s event, and really look forward to seeing how it evolves and improves in 2012.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.3roadsmedia.com/blog/bordo-bello-2011/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Bordo Bello 2011 Deck Previews</title>
		<link>http://www.3roadsmedia.com/blog/bordo-bello-2011-deck-previews/</link>
		<comments>http://www.3roadsmedia.com/blog/bordo-bello-2011-deck-previews/#comments</comments>
		<pubDate>Thu, 29 Sep 2011 00:14:41 +0000</pubDate>
		<dc:creator>patrick</dc:creator>
				<category><![CDATA[Events]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[Shop News]]></category>
		<category><![CDATA[3 Roads Media]]></category>
		<category><![CDATA[Bordo Bello 2011]]></category>
		<category><![CDATA[Denver design]]></category>
		<category><![CDATA[skateboard design]]></category>

		<guid isPermaLink="false">http://www.3roadsmedia.com/?p=2571</guid>
		<description><![CDATA[As mentioned a year ago, Bordo Bello is an annual skateboard art fundraiser which takes place right here in our backyard, beautiful Denver, Colorado. This year&#8217;s event is happening this Friday, September 30th, with participants from all over the country. We here at 3 Roads Media were very excited to once again jump on the chance to design [...]]]></description>
			<content:encoded><![CDATA[<p>As mentioned a year ago, <a title="Bordo Bello 2011" href="http://www.bordobello.com/">Bordo Bello</a> is an annual skateboard art fundraiser which takes place right here in our backyard, beautiful Denver, Colorado. This year&#8217;s event is happening this Friday, September 30th, with participants from all over the country. We here at 3 Roads Media were very excited to once again jump on the chance to design some more decks for such a great cause! We will post a recap of the event after this Friday (<a href="http://www.3roadsmedia.com/blog/bordo-bello-2010-recap/">See our Bordo Bello 2010 recap here</a>), but for now we thought we&#8217;d give a preview of our submissions.</p>
<p><a href="http://www.3roadsmedia.com/blog/bordo-bello-2011-deck-previews/run-kids-run-small/" rel="attachment wp-att-2580"><img class="alignnone size-full wp-image-2580" title="Run, Kids, Run!" src="http://www.3roadsmedia.com/wordpress/wp-content/uploads/2011/09/run-kids-run-small.jpg" alt="" /></a><br />
Our lead graphic designer, Brennan, designed &amp; illustrated this radical pink and green zombie deck aptly titled &#8220;Run, Kids, Run!&#8221;.</p>
<p><a href="http://www.3roadsmedia.com/wordpress/wp-content/uploads/2011/09/le-tweet.jpg"><img class="aligncenter size-full wp-image-2610" title="Le Tweet" src="http://www.3roadsmedia.com/wordpress/wp-content/uploads/2011/09/le-tweet.jpg" alt="" width="175" height="604" /></a></p>
<p>Lead web designer &amp; developer, Ryan, designed this deck (&#8220;Le Tweet&#8221;) which pokes fun at Twitter and social media culture, his twittering bird fully equipped with beret, baguette, and self-importance.</p>
<p>If you have not yet done so, be sure to grab tickets for Bordo Bello 2011 over on their website: <a href="http://www.bordobello.com/">BordoBello.com</a> (tickets are $15 online, and $20 at the door). Last year was a great event, and we can&#8217;t wait to see how the fine folks with AIGA have topped themselves this year!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.3roadsmedia.com/blog/bordo-bello-2011-deck-previews/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Free Photoshop Brush Design Set: Box Labels</title>
		<link>http://www.3roadsmedia.com/blog/free-photoshop-brush-design-set-box-labels/</link>
		<comments>http://www.3roadsmedia.com/blog/free-photoshop-brush-design-set-box-labels/#comments</comments>
		<pubDate>Thu, 04 Aug 2011 23:21:43 +0000</pubDate>
		<dc:creator>Ryan</dc:creator>
				<category><![CDATA[Freebies]]></category>
		<category><![CDATA[Photoshop]]></category>

		<guid isPermaLink="false">http://www.3roadsmedia.com/?p=2534</guid>
		<description><![CDATA[When you combine a love for Photoshop brush designs with a plethora of boxes, you get a nifty brush set. At least&#8230;that&#8217;s how things work in our studio. In our first foray into the world of PS brushes, we scanned labels from some of the boxes laying around our workspace, tidied them up, and packed [...]]]></description>
			<content:encoded><![CDATA[<p>When you combine a love for Photoshop brush designs with a plethora of boxes, you get a nifty brush set. At least&#8230;that&#8217;s how things work in our studio. In our first foray into the world of PS brushes, we scanned labels from some of the boxes laying around our workspace, tidied them up, and packed them into a neat little set of 11 real-life box stamps and seals.</p>
<div id="attachment_2535" class="wp-caption alignnone" style="width: 490px"><img class="size-full wp-image-2535" title="A creative sample of our brush pack" src="http://www.3roadsmedia.com/wordpress/wp-content/uploads/2011/08/brush-sample.png" alt="" width="480" height="240" /><p class="wp-caption-text">A sample of the brushes in this pack.</p></div>
<h2><span id="more-2534"></span>Previews</h2>
<p>Here&#8217;s a peek at what&#8217;s included (not all brushes are shown at actual size):</p>
<p><img class="alignnone size-full wp-image-2536" title="Brush Preview" src="http://www.3roadsmedia.com/wordpress/wp-content/uploads/2011/08/brushes-preview.jpg" alt="" width="480" height="1560" /></p>
<h2><span class="Apple-style-span" style="font-size: 20px; font-weight: bold;">License</span></h2>
<p>These brushes are licensed under a <a href="http://creativecommons.org/licenses/by-nc-nd/3.0/" rel="license">Creative Commons Attribution-NonCommercial-NoDerivs 3.0 Unported License</a>.</p>
<p>In plain English: these brushes are only suitable for use in personal, non-commercial projects. If you like them, or if you use any of them in your work, we&#8217;d love to hear about it.</p>
<p><a href="http://creativecommons.org/licenses/by-nc-nd/3.0/" rel="license"><img style="border-width: 0;" src="http://i.creativecommons.org/l/by-nc-nd/3.0/88x31.png" alt="Creative Commons License" /></a></p>
<h2>Download</h2>
<p><a title="Click here to download (289 kb)" href="http://www.3roadsmedia.com/wordpress/wp-content/uploads/2011/08/3RM-Box-Symbol-Brushes.zip">Click here to download the brush pack (289 kb)</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.3roadsmedia.com/blog/free-photoshop-brush-design-set-box-labels/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>The New Steamboat Lodging Website Offers Deals for Travelers</title>
		<link>http://www.3roadsmedia.com/blog/the-new-steamboat-lodging-website-offers-deals-for-travelers/</link>
		<comments>http://www.3roadsmedia.com/blog/the-new-steamboat-lodging-website-offers-deals-for-travelers/#comments</comments>
		<pubDate>Fri, 22 Jul 2011 19:21:04 +0000</pubDate>
		<dc:creator>Ellen</dc:creator>
				<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://www.3roadsmedia.com/?p=2471</guid>
		<description><![CDATA[We are proud to announce that we have designed a new website for Steamboat Lodging and it has been released into the wild. The Steamboat Lodging website was designed to showcase amazing deals on lodging and vacation rental properties in Steamboat Springs, Colorado. Visitors can search different categories of lodging including On Mountain, Downtown, Homes or Condos.  Vacation-goers [...]]]></description>
			<content:encoded><![CDATA[<p>We are proud to announce that we have designed a new website for <a title="Steamboat Lodging" href="http://www.steamboatlodging.org">Steamboat Lodging</a> and it has been released into the wild. The Steamboat Lodging website was designed to showcase amazing deals on lodging and vacation rental properties in Steamboat Springs, Colorado.</p>
<p><a href="http://www.3roadsmedia.com/blog/the-new-steamboat-lodging-website-offers-deals-for-travelers/steamboat-lodging-website/" rel="attachment wp-att-2479"><img class="alignnone size-full wp-image-2479" title="Steamboat Lodging Website" src="http://www.3roadsmedia.com/wordpress/wp-content/uploads/2011/07/Steamboat-Lodging-Website.jpg" alt="" width="480" height="335" /></a></p>
<p>Visitors can search different categories of lodging including On Mountain, Downtown, Homes or Condos.  Vacation-goers looking for great deals on a wide range of rental properties, from affordable to 5-star luxury lodging can search the website to find a variety of options.<span id="more-2471"></span></p>
<h3>Screenshots from the new website:</h3>
<p><a href="http://www.3roadsmedia.com/blog/the-new-steamboat-lodging-website-offers-deals-for-travelers/about-steamboat-lodging/" rel="attachment wp-att-2507"><img class="alignnone size-full wp-image-2507" title="About Steamboat Lodging" src="http://www.3roadsmedia.com/wordpress/wp-content/uploads/2011/07/About-Steamboat-Lodging.jpg" alt="" width="480" height="335" /></a><a href="http://www.3roadsmedia.com/blog/the-new-steamboat-lodging-website-offers-deals-for-travelers/on-mountain-lodging/" rel="attachment wp-att-2487"><img class="alignnone size-full wp-image-2487" title="On Mountain Lodging" src="http://www.3roadsmedia.com/wordpress/wp-content/uploads/2011/07/On-Mountain-Lodging.jpg" alt="" width="480" height="335" /></a><a href="http://www.3roadsmedia.com/blog/the-new-steamboat-lodging-website-offers-deals-for-travelers/condos-and-townhomes/" rel="attachment wp-att-2502"><img class="alignnone size-full wp-image-2502" title="Condos and Townhomes" src="http://www.3roadsmedia.com/wordpress/wp-content/uploads/2011/07/Condos-and-Townhomes.jpg" alt="" width="480" height="335" /></a></p>
<h3>Check out the private ski home rentals</h3>
<p>The website includes some exceptionally beautiful private <a title="Ski Home Rentals" href="http://www.steamboatlodging.org/private-rental-homes.html">ski home rentals</a>.  Visit the Steamboat Lodging website for photos of these beautiful Steamboat properties, and for exceptional lodging deals.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.3roadsmedia.com/blog/the-new-steamboat-lodging-website-offers-deals-for-travelers/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Headshots by Denver&#8217;s Best Photographer</title>
		<link>http://www.3roadsmedia.com/blog/headshots-by-denvers-best-photographer/</link>
		<comments>http://www.3roadsmedia.com/blog/headshots-by-denvers-best-photographer/#comments</comments>
		<pubDate>Wed, 04 May 2011 16:13:26 +0000</pubDate>
		<dc:creator>Brennan</dc:creator>
				<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://www.3roadsmedia.com/?p=2405</guid>
		<description><![CDATA[To coincide with the complete overhaul of our studio website (3roadsmedia.com), we were recently lucky enough to get new headshots from an extremely talented and well-known photo-journalistic photographer in Denver: Jackie Nuxoll with Selah Photography. The photo shoot was extremely fun and relaxed and provided us with some great shots. As the company grows, we [...]]]></description>
			<content:encoded><![CDATA[<p>To coincide with the complete overhaul of our studio website (3roadsmedia.com), we were recently lucky enough to get new headshots from an extremely talented and well-known <a href="http://www.selahphotography.org">photo-journalistic photographer</a> in Denver: Jackie Nuxoll with Selah Photography. The photo shoot was extremely fun and relaxed and provided us with some great shots. As the company grows, we can&#8217;t wait to use these to promote our endeavors as a forward moving design and interactive agency in Denver, Colorado.</p>
<p>Continue reading to check out some of our favorite photos from the shoot, and view more on Jackie&#8217;s blog: http://www.selahphotography.org/creative-headshot-photographer-denver/</p>
<p><span id="more-2405"></span></p>
<p><img class="alignnone size-full wp-image-2409" title="ellen1" src="http://www.3roadsmedia.com/wordpress/wp-content/uploads/2011/04/ellen1.jpg" alt="Ellen Laughing" width="480" height="318" /></p>
<p><img class="alignnone size-full wp-image-2411" title="ryan1" src="http://www.3roadsmedia.com/wordpress/wp-content/uploads/2011/04/ryan1.jpg" alt="Ryan Laughing" width="480" height="303" /></p>
<p><img class="alignnone size-full wp-image-2407" title="brennan1" src="http://www.3roadsmedia.com/wordpress/wp-content/uploads/2011/04/brennan1.jpg" alt="Brennan Serious" width="480" height="336" /></p>
<p><img class="alignnone size-full wp-image-2410" title="ellen2" src="http://www.3roadsmedia.com/wordpress/wp-content/uploads/2011/04/ellen2.jpg" alt="Ellen Brick" width="480" height="323" /></p>
<p><img class="alignnone size-full wp-image-2412" title="ryan2" src="http://www.3roadsmedia.com/wordpress/wp-content/uploads/2011/04/ryan2.jpg" alt="Ryan Brick" width="480" height="320" /></p>
<p><img class="alignnone size-full wp-image-2408" title="brennan2" src="http://www.3roadsmedia.com/wordpress/wp-content/uploads/2011/04/brennan2.jpg" alt="Brennan Glasses" width="480" height="319" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.3roadsmedia.com/blog/headshots-by-denvers-best-photographer/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Cufón font replacement with dropdown menus</title>
		<link>http://www.3roadsmedia.com/blog/cufon-font-replacement-with-dropdown-menus/</link>
		<comments>http://www.3roadsmedia.com/blog/cufon-font-replacement-with-dropdown-menus/#comments</comments>
		<pubDate>Sat, 23 Apr 2011 22:06:00 +0000</pubDate>
		<dc:creator>Ryan</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[Cufón]]></category>
		<category><![CDATA[Drop-down Menus]]></category>
		<category><![CDATA[HTML5]]></category>

		<guid isPermaLink="false">http://www.3roadsmedia.com/wordpress/?p=1941</guid>
		<description><![CDATA[On a recent client project, we decided to use Cufón font replacement on the website's main navigation. This navigation included some drop-down menus, where the main link was font replaced, but the nested list items were not. We had a few more requirements, and getting them all to work together was harder to pull off than expected. In an effort to save my fellow developers some time, I present the following solution.]]></description>
			<content:encoded><![CDATA[<p>On a recent client project, we decided to use Cufón font replacement on the website&#8217;s main navigation. This navigation included some drop-down menus, where the main link was font replaced, but the nested list items were not. We also had a couple of other requirements, and getting them all implemented was harder to pull off than I expected.</p>
<p>In an effort to save my fellow developers some time, I present the following solution.</p>
<h3>A working demonstration</h3>
<p>Before you get into the solution, you might want to <a href="http://www.3roadsmedia.com/wordpress/wp-content/themes/sketchy/demos/cufon-dropdown-demo.html">view a working demo</a>. This demo meets all of the requirements laid out in the next section.<br />
<span id="more-1941"></span></p>
<h3>The problem</h3>
<p>If you&#8217;re reading this, chances are good that you have the following three requirements:</p>
<ul>
<li>I want to do Cufón font replacement on my main navigation</li>
<li>Some or all of my navigation items will be drop-downs</li>
<li>I only want to do font replacement on the top level items; the nested list items should be unchanged</li>
</ul>
<p>Additionally, I also wanted to do the following:</p>
<ul>
<li>Apply a nice <code>text-shadow</code> to replaced text</li>
<li>Keep top level anchors highlighted while hovering on their drop-downs</li>
</ul>
<h3>The solution</h3>
<p>You can view the source code of the <a href="http://www.3roadsmedia.com/wordpress/wp-content/themes/sketchy/demos/cufon-dropdown-demo.html">demo page</a>, or read on.</p>
<h4>The HTML</h4>
<p>Your first task is to create a nice, standard, nested list:</p>
<pre><span style="color: #000080;">&lt;nav&gt; &lt;ul&gt; &lt;li&gt;</span>
         <span style="color: #008000;">&lt;a href=</span><span style="color: #0000ff;">"#"</span><span style="color: #008000;">&gt;</span>Movies<span style="color: #008000;">&lt;/a&gt;</span>
<span style="color: #000080;"> &lt;ul&gt; &lt;li&gt;</span>
               <span style="color: #008000;">&lt;a href=</span><span style="color: #0000ff;">"#"</span><span style="color: #008000;">&gt;</span>2010 Oscar Nominees<span style="color: #008000;">&lt;/a&gt;</span>
<span style="color: #000080;"> &lt;ul&gt; &lt;li&gt;</span><span style="color: #008000;">&lt;a href=</span><span style="color: #0000ff;">"#"</span><span style="color: #008000;">&gt;</span>True Grit<span style="color: #008000;">&lt;/a&gt;</span><span style="color: #000080;">&lt;/li&gt; &lt;li&gt;</span><span style="color: #008000;">&lt;a href=</span><span style="color: #0000ff;">"#"</span><span style="color: #008000;">&gt;</span>Jeff Bridges<span style="color: #008000;">&lt;/a&gt;</span><span style="color: #000080;">&lt;/li&gt; </span><span style="color: #000080;"> &lt;li&gt;</span><span style="color: #008000;">&lt;a href=</span><span style="color: #0000ff;">"#"</span><span style="color: #008000;">&gt;</span>Hailee Steinfeld<span style="color: #008000;">&lt;/a&gt;</span><span style="color: #000080;">&lt;/li&gt; &lt;/ul&gt; &lt;/li&gt; &lt;li&gt; </span><span style="color: #008000;"> &lt;a href=</span><span style="color: #0000ff;">"#"</span><span style="color: #008000;">&gt;</span>2010 Oscar Winners<span style="color: #008000;">&lt;/a&gt; </span><span style="color: #000080;"> &lt;ul&gt; &lt;li&gt;</span><span style="color: #008000;">&lt;a href=</span><span style="color: #0000ff;">"#"</span><span style="color: #008000;">&gt;</span>The King's Speech<span style="color: #008000;">&lt;/a&gt;</span><span style="color: #000080;">&lt;/li&gt; &lt;li&gt;</span><span style="color: #008000;">&lt;a href=</span><span style="color: #0000ff;">"#"</span><span style="color: #008000;">&gt;</span>Colin Firth<span style="color: #008000;">&lt;/a&gt;</span><span style="color: #000080;">&lt;/li&gt; </span><span class="Apple-style-span" style="color: #000080;"> &lt;/ul&gt; &lt;/li&gt; &lt;/ul&gt; &lt;/li&gt; </span><span class="Apple-style-span" style="color: #808080;"> &lt;!-- (see demo source code for the rest) --&gt; </span><span class="Apple-style-span" style="color: #000080;"> &lt;/ul&gt; &lt;/nav&gt;</span></pre>
<h4>The CSS</h4>
<p>Next up: some basic styling. This code is also available on the <a href="http://www.3roadsmedia.com/wordpress/wp-content/themes/sketchy/demos/cufon-dropdown-demo.html">demo page</a>; just view the source code to grab it.</p>
<pre><span style="color: #ff00ff;">a.fly {</span> <span style="color: #000080;">background</span><span style="color: #ff00ff;">:</span><span style="color: #0000ff;">#b2ab9b url(fly-arrow.gif) 175px center no-repeat</span><span style="color: #ff00ff;">; }</span></pre>
<pre><span style="color: #ff00ff;">li:hover &gt; a {</span> <span style="color: #000080;">background</span><span style="color: #ff00ff;">:</span><span style="color: #0000ff;">#dfd7ca</span><span style="color: #ff00ff;">;</span> <span style="color: #000080;">color</span><span style="color: #ff00ff;">:</span><span style="color: #0000ff;">#c00</span><span style="color: #ff00ff;">; }</span></pre>
<pre><span style="color: #ff00ff;">li:hover &gt; a.fly {</span> <span style="color: #000080;">background</span><span style="color: #ff00ff;">:</span><span style="color: #0000ff;">#dfd7ca url(fly-arrow-hover.gif) 175px center no-repeat</span><span style="color: #ff00ff;">; }</span></pre>
<pre><span style="color: #ff00ff;">nav &gt; ul {</span>
   <span style="color: #000080;">float</span><span style="color: #ff00ff;">:</span><span style="color: #0000ff;">left</span><span style="color: #ff00ff;">;</span>
   <span style="color: #000080;">list-style</span><span style="color: #ff00ff;">:</span><span style="color: #0000ff;">none</span><span style="color: #ff00ff;">;</span>
   <span style="color: #000080;">margin</span><span style="color: #ff00ff;">:</span><span style="color: #0000ff;">0 0 50px</span><span style="color: #ff00ff;">;</span>
   <span style="color: #000080;">padding</span><span style="color: #ff00ff;">:</span><span style="color: #0000ff;">0</span><span style="color: #ff00ff;">;</span>
   <span style="color: #000080;">position</span><span style="color: #ff00ff;">:</span><span style="color: #0000ff;">relative</span><span style="color: #ff00ff;">;</span>
   <span style="color: #000080;">width</span><span style="color: #ff00ff;">:</span><span style="color: #0000ff;">100%</span><span style="color: #ff00ff;">;</span>
   <span style="color: #000080;">z-index</span><span style="color: #ff00ff;">:</span><span style="color: #0000ff;">500</span><span style="color: #ff00ff;">; }</span></pre>
<pre><span style="color: #ff00ff;">nav &gt; ul ul {</span> <span style="color: #000080;">list-style</span><span style="color: #ff00ff;">:</span><span style="color: #0000ff;">none</span><span style="color: #ff00ff;">;</span> <span style="color: #000080;">margin-left</span><span style="color: #ff00ff;">:</span><span style="color: #0000ff;">0</span><span style="color: #ff00ff;">;</span> <span style="color: #000080;">padding</span><span style="color: #ff00ff;">:</span><span style="color: #0000ff;">0</span><span style="color: #ff00ff;">; }</span></pre>
<pre><span style="color: #ff00ff;">nav &gt; ul li {</span> <span style="color: #000080;">float</span><span style="color: #ff00ff;">:</span><span style="color: #0000ff;">left</span><span style="color: #ff00ff;">;</span> <span style="color: #000080;">position</span><span style="color: #ff00ff;">:</span><span style="color: #0000ff;">relative</span><span style="color: #ff00ff;">; }</span></pre>
<pre><span style="color: #ff00ff;">nav &gt; ul a, nav &gt; ul a:visited {</span>
   <span style="color: #000080;">background</span><span style="color: #ff00ff;">:</span><span style="color: #0000ff;">#b2ab9b</span><span style="color: #ff00ff;">;</span>
   <span style="color: #000080;">border</span><span style="color: #ff00ff;">:</span><span style="color: #0000ff;">1px solid #fff</span><span style="color: #ff00ff;">;</span>
   <span style="color: #000080;">border-width</span><span style="color: #ff00ff;">:</span><span style="color: #0000ff;">0 1px 1px 0</span><span style="color: #ff00ff;">;</span>
   <span style="color: #000080;">color</span><span style="color: #ff00ff;">:</span><span style="color: #0000ff;">#000</span><span style="color: #ff00ff;">;</span>
   <span style="color: #000080;">display</span><span style="color: #ff00ff;">:</span><span style="color: #0000ff;">block</span><span style="color: #ff00ff;">;</span>
   <span style="color: #000080;">font</span><span style="color: #ff00ff;">:</span><span style="color: #0000ff;">14px Georgia, Times, serif</span><span style="color: #ff00ff;">;</span>
   <span style="color: #000080;">height</span><span style="color: #ff00ff;">:</span><span style="color: #0000ff;">23px</span><span style="color: #ff00ff;">;</span>
   <span style="color: #000080;">line-height</span><span style="color: #ff00ff;">:</span><span style="color: #0000ff;">23px</span><span style="color: #ff00ff;">;</span>
   <span style="color: #000080;">padding</span><span style="color: #ff00ff;">:</span><span style="color: #0000ff;">5px 20px</span><span style="color: #ff00ff;">;</span>
   <span style="color: #000080;">text-decoration</span><span style="color: #ff00ff;">:</span><span style="color: #0000ff;">none</span><span style="color: #ff00ff;">;</span>
   <span style="color: #000080;">width</span><span style="color: #ff00ff;">:</span><span style="color: #0000ff;">160px</span><span style="color: #ff00ff;">; }</span></pre>
<pre><span style="color: #ff00ff;">nav &gt; ul ul {</span> <span style="color: #000080;">display</span><span style="color: #ff00ff;">:</span><span style="color: #0000ff;">none</span><span style="color: #ff00ff;">; }</span></pre>
<pre><span style="color: #ff00ff;">nav &gt; ul li:hover &gt; ul { </span><span style="color: #000080;">display</span><span style="color: #ff00ff;">:</span><span style="color: #0000ff;">block</span><span style="color: #ff00ff;">;</span> <span style="color: #000080;">left</span><span style="color: #ff00ff;">:</span><span style="color: #0000ff;">201px</span><span style="color: #ff00ff;">;</span> <span style="color: #000080;">position</span><span style="color: #ff00ff;">:</span><span style="color: #0000ff;">absolute</span><span style="color: #ff00ff;">;</span> <span style="color: #000080;">top</span><span style="color: #ff00ff;">:</span><span style="color: #0000ff;">0</span><span style="color: #ff00ff;">; }</span></pre>
<pre><span style="color: #ff00ff;">nav &gt; ul &gt; li:hover &gt; ul {</span> <span style="color: #000080;">left</span><span style="color: #ff00ff;">:</span><span style="color: #0000ff;">0</span><span style="color: #ff00ff;">;</span> <span style="color: #000080;">top</span><span style="color: #ff00ff;">:</span><span style="color: #0000ff;">34px</span><span style="color: #ff00ff;">; }</span></pre>
<h4>The JavaScript</h4>
<p>Place this code block after your main Cufón scripts (see the <a href="https://github.com/sorccu/cufon/wiki/Usage">documentation</a>):</p>
<pre>Cufon.<span style="color: #008080;">replace</span><span style="color: #000080;">(</span><span style="color: #0000ff;">'nav &gt; ul &gt; li'</span>,<span style="color: #000080;"> {</span>
   fontFamily<span style="color: #0000ff;">: 'Adelle Basic Rg'</span>,
   hover<span style="color: #0000ff;">:</span> <span style="color: #000080;">true</span>,
   hoverables<span style="color: #0000ff;">:</span> <span style="color: #000080;">{</span> li<span style="color: #0000ff;">:</span> <span style="color: #000080;">true }</span>,
   ignore<span style="color: #0000ff;">:</span> <span style="color: #000080;">{</span> ul<span style="color: #0000ff;">:</span> <span style="color: #000080;">true }</span>,
   textShadow<span style="color: #0000ff;">: '1px 1px #fff' </span><span style="color: #000080;">})</span>;</pre>
<h3>Everything explained</h3>
<ul>
<li>The <code>Cufon.replace()</code> function above uses the CSS <strong>child selector</strong> to target the top level list items in your main <code>&lt;ul&gt;</code>. <em></em></li>
<li>The <code>fontFamily</code> option tells Cufón which font to use. This is only required if you are using Cufón to replace more than one font.</li>
<li>By default, Cufón does not respect CSS hover properties, so we enable it by setting <code>hover</code> to true.</li>
<li>Without the <code>hoverables</code> option, the top level links will retain their hover styling after hovering over a submenu and then leaving.</li>
<li>The child selector alone is not enough; Cufón will replace <em>all </em>of your list items, so we tell it to <code>ignore</code> nested lists.</li>
<li>Finally, we add a little <code>textShadow</code>. We do this here because Cufón will not read it from our CSS.</li>
</ul>
<p>Remember that Cufón does not support the &#8220;blur&#8221; option of <code>text-shadow</code>, which means you&#8217;ll have to settle for relatively hard-looking shadows. In the code block above, I&#8217;ve only specified the X- and Y-offset and the shadow color.</p>
<p>This code has been tested in Firefox 4, IE 8, Chrome 10, and Safari 4.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.3roadsmedia.com/blog/cufon-font-replacement-with-dropdown-menus/feed/</wfw:commentRss>
		<slash:comments>12</slash:comments>
		</item>
		<item>
		<title>Website Redesign Featured by Getty Images</title>
		<link>http://www.3roadsmedia.com/blog/website-redesign-featured-on-getty-images-photos-com/</link>
		<comments>http://www.3roadsmedia.com/blog/website-redesign-featured-on-getty-images-photos-com/#comments</comments>
		<pubDate>Mon, 28 Mar 2011 16:56:22 +0000</pubDate>
		<dc:creator>Brennan</dc:creator>
				<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://www.3roadsmedia.com/wordpress/?p=1660</guid>
		<description><![CDATA[Just recently, Getty Images approached us requesting to feature one of our favorite website redesigns on their Photos.com Facebook page. We were excited for the opportunity to delve a bit deeper into our successful, client-pleasing redesign. Getty Images&#8217; Photos.com features high-quality redesigns, particularly, successful website facelifts. When they first approached us saying that they wanted [...]]]></description>
			<content:encoded><![CDATA[<p>Just recently, Getty Images approached us requesting to feature one of our favorite website redesigns on their Photos.com Facebook page.</p>
<p>We were excited for the opportunity to delve a bit deeper into our successful, client-pleasing redesign.<strong> </strong></p>
<p><strong>Getty Images&#8217;</strong> <a href="http://www.photos.com/">Photos.com</a> features high-quality redesigns, particularly, successful website facelifts. When they first approached us saying that they wanted to feature one of our redesigns on their website and Facebook fan page, we were certainly excited; it was then a matter of choosing which redesign to feature.</p>
<div id="attachment_1668" class="wp-caption alignnone" style="width: 490px"><a rel="post-image" href="http://www.3roadsmedia.com/wordpress/wp-content/uploads/2011/03/web_old.jpg"><img class="size-full wp-image-1668 " src="http://www.3roadsmedia.com/wordpress/wp-content/uploads/2011/03/web_old.jpg" alt="" width="480" height="358" /></a><p class="wp-caption-text">Professional Ponds Website: BEFORE</p></div>
<p><span id="more-1660"></span><br />
As a studio, we take pride in each and every project we take on. Often times, website redesigns can be some of the most challenging and yet satisfying types of projects in that the client knows what&#8217;s not working and needs you to fix it. After some thought, we all agreed that the redesign of Professional Ponds (<a href="http://www.professionalponds.com/">www.professionalponds.com</a>) was a notably rewarding redesign.</p>
<div id="attachment_1667" class="wp-caption alignnone" style="width: 490px"><a rel="post-image" href="http://www.3roadsmedia.com/wordpress/wp-content/uploads/2011/03/web_new.jpg"><img class="size-full wp-image-1667  " src="http://www.3roadsmedia.com/wordpress/wp-content/uploads/2011/03/web_new.jpg" alt="" width="480" height="358" /></a><p class="wp-caption-text">Professional Ponds Website: AFTER</p></div>
<p>Check out our case study of the Professional Ponds website redesign at <a href="http://photosdotcom.posterous.com/professional-ponds">photosdotcom.posterous.com/professional-ponds</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.3roadsmedia.com/blog/website-redesign-featured-on-getty-images-photos-com/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

