<?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>Web Design Dev &#187; Web Development</title>
	<atom:link href="http://www.webdesigndev.com/category/web-development/feed" rel="self" type="application/rss+xml" />
	<link>http://www.webdesigndev.com</link>
	<description></description>
	<lastBuildDate>Mon, 06 Feb 2012 16:30:17 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>How to use checkboxes and radio buttons in Flash</title>
		<link>http://www.webdesigndev.com/flash/how-to-use-checkboxes-and-radio-buttons-in-flash</link>
		<comments>http://www.webdesigndev.com/flash/how-to-use-checkboxes-and-radio-buttons-in-flash#comments</comments>
		<pubDate>Fri, 03 Feb 2012 14:40:33 +0000</pubDate>
		<dc:creator>Iggy</dc:creator>
				<category><![CDATA[Flash Tutorials]]></category>
		<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://www.webdesigndev.com/?p=9077</guid>
		<description><![CDATA[When you are developing rich and interactive applications in flash, you need to provide the best communication between the user and the application. Flash has some very easy to implement UI components that you can use with your applications. These components will save you from the hassle of designing and programming the User Interface. In [...]]]></description>
			<content:encoded><![CDATA[<p>When you are developing rich and interactive applications in flash, you need to provide the best communication between the user and the application. Flash has some very easy to implement UI components that you can use with your applications. These components will save you from the hassle of designing and programming the User Interface. In this tutorial I am going to show you how to implement the radio button and the checkbox component in your applications. It is important that you know a little bit of ActionScript 3.0 before you begin this tutorial.</p>
<p>Start by creating a new ActionScript 3.0 document in Flash. You can find the UI components in the components window. Press ctrl+F7 to open the components window and drag some radio buttons and checkboxes to stage.</p>
<p><a href="http://www.webdesigndev.com/wp-content/uploads/2011/12/12.png"><img class="alignnone size-full wp-image-9078" src="http://www.webdesigndev.com/wp-content/uploads/2011/12/12.png" alt="" width="333" height="380" /></a></p>
<p>I have dragged 3 of each to stage.</p>
<p><a href="http://www.webdesigndev.com/wp-content/uploads/2011/12/22.png"><img class="alignnone size-full wp-image-9079" src="http://www.webdesigndev.com/wp-content/uploads/2011/12/22.png" alt="" width="663" height="317" /></a></p>
<p>At this point these are pretty generic components but you can see that they are visually perfect, the only visual details that need to be changed are the text. If you press ctrl+ENTER to test the movie at this time you can click on these and see that they really work.</p>
<p>Now lets change some of the settings of these components. Select any of the components and head over to the “Component Parameters” section in the properties window. You can see some properties listed here. The properties are pretty much self-explanatory but I will explain them just in case. Lets go to the radio button’s property first.</p>
<p>The first thing here is the &#8220;enabled&#8221; checkbox. This would enable or disable the radio button to be selected. Group name sets the group that the radio button belongs to. A user can select one option from one set of radio buttons. The selected option specifies whether the button is initially selected or not. The value field sets a value that the radio button contains. So if a user selects this radio button then we can retrieve its value with ActionScript. At last the visible property selects whether the button is visible to the user or not. This property has some pretty limited applications.</p>
<p><a href="http://www.webdesigndev.com/wp-content/uploads/2011/12/32.png"><img class="alignnone size-full wp-image-9080" src="http://www.webdesigndev.com/wp-content/uploads/2011/12/32.png" alt="" width="295" height="286" /></a></p>
<p>If you head over to the checkbox component parameters you can see that all the properties are same except the label placement. This property selects the placement of label relative to the checkbox. Also note that there is not group name here. That is because there are no groups in checkboxes and each checkbox is independent.</p>
<p><a href="http://www.webdesigndev.com/wp-content/uploads/2011/12/321.png"><img class="alignnone size-full wp-image-9084" src="http://www.webdesigndev.com/wp-content/uploads/2011/12/321.png" alt="" width="295" height="379" /></a></p>
<p>I have labeled all the checkboxes and radio buttons with some names of foods. Now we examine the code that we need to process these components. For the code to work with these components, they need to have some variable names. I have given these the names of radio1_mc,radio2_mc,radio3_mc,check1_mc,check2_mc &amp; check3_mc. I have also created a button that would be used to submit these values and I have named it submit_btn.</p>
<p><a href="http://www.webdesigndev.com/wp-content/uploads/2011/12/42.png"><img class="alignnone size-full wp-image-9081" src="http://www.webdesigndev.com/wp-content/uploads/2011/12/42.png" alt="" width="468" height="405" /></a></p>
<p>Now create a new layer for actionscript and insert the following code in it.</p>
<p>submit_btn.addEventListener(MouseEvent.CLICK,processButtons);</p>
<p>function processButtons(e:MouseEvent){</p>
<p>if(radio1_mc.selected){</p>
<p>trace(&#8220;Radio button 1 is selected&#8221;);</p>
<p>}</p>
<div id="in_post_ad_middle_1" style="margin: 5px;padding: 0px;"><a href="http://www.wix.com/amazingwebsites/editoreasy?utm_campaign=af_webdesigndev.com&experiment_id=af_webdesigndev.com1middlepostnewLP" target="_blank" rel="nofollow">
<img src="http://www.webdesigndev.com/expressions_website3.gif" width="300" height="250" alt="create a free website" /></a></div><p>if(radio2_mc.selected){</p>
<p>trace(&#8220;Radio button 2 is selected&#8221;);</p>
<p>}</p>
<p>if(radio3_mc.selected){</p>
<p>trace(&#8220;Radio button 3 is selected&#8221;);</p>
<p>}</p>
<p>if(check1_mc.selected){</p>
<p>trace(&#8220;Checkbox 1 is selected&#8221;);</p>
<p>}</p>
<p>if(check2_mc.selected){</p>
<p>trace(&#8220;Checkbox 2 is selected&#8221;);</p>
<p>}</p>
<p>if(check3_mc.selected){</p>
<p>trace(&#8220;Checkbox 3 is selected&#8221;);</p>
<p>}</p>
<p>}</p>
<p><a href="http://www.webdesigndev.com/wp-content/uploads/2011/12/52.png"><img class="alignnone size-full wp-image-9083" src="http://www.webdesigndev.com/wp-content/uploads/2011/12/52.png" alt="" width="911" height="574" /></a></p>
<p>The code is pretty simple but let me explain it to you. First I add and event listener that handles the clicks on the submit button. In the event handler I check the “selected” property of  all the radio buttons and checkboxes. If that is true then it means the radio button or checkbox  is selected and so I trace on to the output that the radio button/checkbox is selected.</p>
<p>I hope you have learned how to use these UI components. Use these components to make your applications user friendly and save precious development time.</p>
<p>By the way, don&#8217;t forget to check out <a title="Wix" href="http://www.wix.com/amazingwebsites/editoreasy?utm_campaign=af_webdesigndev.com&amp;experiment_id=af_webdesigndev.comCheckboxes" rel="nofollow" target="_blank">Wix</a>, an awesome free Flash website builder.</p>
<div style='clear:both'></div>]]></content:encoded>
			<wfw:commentRss>http://www.webdesigndev.com/flash/how-to-use-checkboxes-and-radio-buttons-in-flash/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Top 10 Flash Slideshow Image Viewers</title>
		<link>http://www.webdesigndev.com/web-development/top-10-flash-slideshow-image-viewers</link>
		<comments>http://www.webdesigndev.com/web-development/top-10-flash-slideshow-image-viewers#comments</comments>
		<pubDate>Sat, 07 Jan 2012 16:11:24 +0000</pubDate>
		<dc:creator>Scott Stanton</dc:creator>
				<category><![CDATA[Inspiration]]></category>
		<category><![CDATA[Roundups]]></category>
		<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://www.webdesigndev.com/?p=9318</guid>
		<description><![CDATA[Featuring professionally edited photos on your website is a surefire way of making your site stand out above others. Slideshows are a great way to capture the attention of a visitor and hold them on your page. It will cause them to pause and watch the pictures rotate through while they’re also viewing the other [...]]]></description>
			<content:encoded><![CDATA[<p>Featuring professionally edited photos on your website is a surefire way of making your site stand out above others. Slideshows are a great way to capture the attention of a visitor and hold them on your page. It will cause them to pause and watch the pictures rotate through while they’re also viewing the other content on your site that surrounds your slideshow. However, building a robust, professional looking slideshow can be quite time consuming and implementing a pre-built slideshow may be the ideal solution. So, let’s take a look at some of the options out there.</p>
<h3><a href="http://slideshowpro.net/">SlideShowPro</a></h3>
<p><a href="http://slideshowpro.net/"><img class="aligncenter size-full wp-image-9324" src="http://www.webdesigndev.com/wp-content/uploads/2012/01/slideshowpro.jpg" alt="SlideShowPro" width="720" height="450" /></a></p>
<p><a href="http://slideshowpro.net/">SlideShowPro</a> is a very popular solution that you have probably come across while surfing the interwebs. SlideShowPro is fully customizable, layout, transparencey, allowing you to adjust the colors of the player for a seamless integration with the rest of your site. You may download a free trial, but the full version will cost $39.</p>
<h3><a href="http://simpleviewer.net/simpleviewer/">SimpleViewer Gallery</a></h3>
<p><a href="http://simpleviewer.net/simpleviewer/"><img class="aligncenter size-full wp-image-9323" src="http://www.webdesigndev.com/wp-content/uploads/2012/01/simpleviewer.jpg" alt="SimpleViewer Gallery" width="740" height="395" /></a></p>
<p><a href="http://simpleviewer.net/simpleviewer/">SimpleViewer Gallery</a> supports Universal Playback and can be viewed on Windows, MacOS, iOS, Linux and Android, meaning it works on virtually every computer, tablet, or mobile device! Navigating the slideshow is simple thanks to the multiple layers of controls, viewers can choose from keyboard shortcuts, clicking the main image, or using the thumbnails to navigate through the gallery. A free trial version is available for download, but the full version runs for $45.</p>
<h3><a href="http://www.dwuser.com/flashslideshow/">XML Flash Slideshow v4</a></h3>
<p><a href="http://www.dwuser.com/flashslideshow/"><img class="aligncenter size-full wp-image-9327" src="http://www.webdesigndev.com/wp-content/uploads/2012/01/xmlFlasv4.jpg" alt="XML Flash Slideshow v4" width="620" height="470" /></a></p>
<p><a href="http://www.dwuser.com/flashslideshow/">XML Flash Slideshow v4</a> is available as a Dreamweaver extension or standalone application, both allow you to create media-rich presentations to polish up your website. There is a built in thumbnail generator to keep you from spending unnecessary time creating thumbnails for your images and Flickr integration for easy updating. $24.95 is all it takes to make this viewer yours.</p>
<h3><a href="http://simpleviewer.net/tiltviewer/">TiltViewer Gallery</a></h3>
<p><a href="http://simpleviewer.net/tiltviewer/"><img class="aligncenter size-full wp-image-9325" src="http://www.webdesigndev.com/wp-content/uploads/2012/01/tiltviewer.jpg" alt="TiltViewer Gallery" width="603" height="643" /></a></p>
<p><a href="http://simpleviewer.net/tiltviewer/">TiltViewer</a> is an image viewer brought to you by the same company as <a href="http://simpleviewer.net/simpleviewer/">SimpleViewer Gallery</a> and features a unique viewing experience. As you move the mouse your thumbnails tilt and rotate, clicking on an image zooms you in for a closer look and hitting the circular arrow flips the image so you can read any caption that may be on the back. A free demo version is available to download, while the Pro version costs $45.</p>
<h3><a href="http://simpleviewer.net/postcardviewer/">PostcardViewer</a></h3>
<p><a href="http://simpleviewer.net/postcardviewer/"><img class="aligncenter size-full wp-image-9322" src="http://www.webdesigndev.com/wp-content/uploads/2012/01/postcardViewer.jpg" alt="PostcardViewer" width="609" height="617" /></a></p>
<p><a href="http://simpleviewer.net/postcardviewer/">PostcardViewer</a> is very similar to <a href="http://simpleviewer.net/tiltviewer/">TiltViewer</a> with the exception of it not tilting as you hover over the viewer with your mouse. Like all other viewers available from <a title="SimpleViewer" href="http://www.simpleviewer.net/products/" target="_blank">SimpleViewer</a>, PostcardViewer will work on any website, has a smart image pre-loading, scales and resizes itself to work at any screen resolution, and is lightweight. Free trial or $45 to go pro.</p>
<h3><a href="http://simpleviewer.net/autoviewer/">AutoViewer</a></h3>
<div id="in_post_ad_middle_1" style="margin: 5px;padding: 0px;"><a href="http://www.wix.com/amazingwebsites/editoreasy?utm_campaign=af_webdesigndev.com&experiment_id=af_webdesigndev.com1middlepostnewLP" target="_blank" rel="nofollow">
<img src="http://www.webdesigndev.com/expressions_website3.gif" width="300" height="250" alt="create a free website" /></a></div><p><a href="http://simpleviewer.net/autoviewer/"><img class="aligncenter size-full wp-image-9319" src="http://www.webdesigndev.com/wp-content/uploads/2012/01/autoviewer.jpg" alt="AutoViewer" width="740" height="493" /></a></p>
<p><a href="http://simpleviewer.net/autoviewer/">AutoViewer</a> is yet another image viewer from the folks that originally brought us the <a href="http://simpleviewer.net/simpleviewer/">SimpleViewer Gallery</a>. An auto-play feature allows the viewer to enjoy a hands free viewing experience and the viewer is able to automatically scale and resize to fit any browser window. You’re able to display captions and the image title as an overlay and a right-click option to open the image in a new window is available. Free trial version or $45 to go pro.</p>
<h3><a href="http://www.monoslideshow.com/">Monoslideshow</a></h3>
<p><a href="http://www.monoslideshow.com/"><img class="aligncenter size-full wp-image-9321" src="http://www.webdesigndev.com/wp-content/uploads/2012/01/monoSlideshow.jpg" alt="Monoslideshow" width="642" height="401" /></a></p>
<p><a href="http://www.monoslideshow.com/">Monoslideshow</a> offers over 20 photo transitions and features the Ken Burns effect of panning and zooming on images. You can easily feed photos to your slideshow from flickr, tumblr, mobypicture, picasa or via a RSS feed making it easier than ever to keep your images fresh and updated. Monoslideshow works on any website and will work under any dimension and screen resolution. The Monoslideshow license costs €25.</p>
<h3><a href="http://www.ws-slideshow.com/">WS-Slideshow 2</a></h3>
<p><a href="http://www.ws-slideshow.com/"><img class="aligncenter size-full wp-image-9326" src="http://www.webdesigndev.com/wp-content/uploads/2012/01/wsSlideshow2.jpg" alt="WS-Slideshow 2" width="740" height="383" /></a></p>
<p><a href="http://www.ws-slideshow.com/">WS-Slideshow 2</a> offers a host of new features, including 10 cool slide effects, the ability to add background music, and customizable thumbnail sizes! You can scale WS-Slideshow from 380 x 250 up to full screen, feature unlimited albums and slides, and feed your flickr photos in to it for easy updating. There is a freeware and commercial versions available starting at €15.</p>
<h3><a href="http://imagin.ro/">IMAGIN</a></h3>
<p><a href="http://imagin.ro/"><img class="aligncenter size-full wp-image-9320" src="http://www.webdesigndev.com/wp-content/uploads/2012/01/imagin.jpg" alt="IMAGIN" width="740" height="450" /></a></p>
<p><a href="http://imagin.ro/">IMAGIN</a> is a simple flash image gallery that’s easy to navigate and easy to use. There is no limit to the number of albums you can have or the levels of albums within albums. IMAGIN simply needs to be pointed to a directory that contains photos, everything from that point on is automatic. There’s a freeware version or for $30 you can purchase a version that doesn’t contain the IMAGIN logo.</p>
<h3><a href="http://flash-gallery.com/zen-flash-gallery/">Zen Flash Gallery</a></h3>
<p><a href="http://flash-gallery.com/zen-flash-gallery/"><img class="aligncenter size-full wp-image-9328" src="http://www.webdesigndev.com/wp-content/uploads/2012/01/zenSlideshow.jpg" alt="Zen Flash Gallery" width="550" height="400" /></a></p>
<p><a href="http://flash-gallery.com/zen-flash-gallery/">Zen Flash Gallery</a> is an easy to use Flash image viewer that is also available as a WordPress Plugin and Joomla! Extension. There are a host of customizable parameters within the gallery, such as what you want the viewer to see in the initial state, image scale mode, frame size, shadowing, and the ability to change the frame and background color for a seamless fit to your website. The Zen Flash Gallery costs $40.</p>
<p>When you compare the cost of a pre-built gallery to the time it would take you to develop something similar, the decision to go with something already available seems like an easy one. It will save you the time and headache of having to create a custom image viewer, not to mention the ongoing need to fix any bugs that may arise over time, and will keep the overall cost of the site down for your client. If you know of any other good options out there, please feel free to let us know in the comments section below.</p>
<p>About the author: with over ten years in the freelance web design and writing fields, Scott Stanton has had his finger on the beating pulse of the industry&#8217;s hottest design trends and bends for the past decade. Scott regularly writes for Wix.com the free <a title="website builder" href="http://www.wix.com/website/builder?utm_campaign=se_gb_webdesigndev.com&amp;experiment_id=FWB" target="_blank">website builder</a>.</p>
<div style='clear:both'></div>]]></content:encoded>
			<wfw:commentRss>http://www.webdesigndev.com/web-development/top-10-flash-slideshow-image-viewers/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>10 World Class Athlete Websites</title>
		<link>http://www.webdesigndev.com/web-development/10-omg-cool-athlete-websites</link>
		<comments>http://www.webdesigndev.com/web-development/10-omg-cool-athlete-websites#comments</comments>
		<pubDate>Fri, 06 Jan 2012 16:36:35 +0000</pubDate>
		<dc:creator>Scott Stanton</dc:creator>
				<category><![CDATA[Inspiration]]></category>
		<category><![CDATA[Roundups]]></category>
		<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://www.webdesigndev.com/?p=9305</guid>
		<description><![CDATA[I have always appreciated an athlete who has their own website. Especially now days when they could call it good with a Facebook fan page, or really go above and beyond with a Twitter account. Some athlete’s are active members of charity organizations, or have their own product line, and they use their personal site [...]]]></description>
			<content:encoded><![CDATA[<p>I have always appreciated an athlete who has their own website. Especially now days when they could call it good with a Facebook fan page, or really go above and beyond with a Twitter account. Some athlete’s are active members of charity organizations, or have their own product line, and they use their personal site as a platform to pitch and promote those organizations or products. In other words, they use it to generate revenue. Others aren’t trying to pitch anything and just want to give their fans a place to learn a little more about them. Let’s take a look at some of the better athlete websites out there.</p>
<h3><a title="Tom Cleverley" href="http://www.tomcleverley23.com/" target="_blank">Tom Cleverley</a></h3>
<p><a href="http://www.tomcleverley23.com/"><img class="aligncenter size-full wp-image-9314" src="http://www.webdesigndev.com/wp-content/uploads/2012/01/tomCleverley.jpg" alt="Tom Cleverley" width="740" height="518" /></a></p>
<p><a title="Tom Cleverley" href="http://www.tomcleverley23.com/" target="_blank">Tom Cleverley</a> is not only quickly making his presence known on the football pitch, but online as well. His website allows fans to learn more about the England international and keep up to date with his accomplishments as well as what he’s up to. His site features his Twitter feed, a news section, and a monthly playlist of his favorite songs.</p>
<h3><a title="Bjoern Dunkerbeck" href="http://www.dunkerbeck.com/" target="_blank">Bjoern Dunkerbeck</a></h3>
<p><a href="http://www.dunkerbeck.com/"><img class="aligncenter size-full wp-image-9306" src="http://www.webdesigndev.com/wp-content/uploads/2012/01/dunkerbeck.jpg" alt="Bjoern Dunkerbeck" width="740" height="372" /></a></p>
<p><a title="Bjoern Dunkerbeck" href="http://www.dunkerbeck.com/" target="_blank">Bjoern Dunkerbeck</a> is a world-class windsurfer with a world-class website. The Flash site features some stunning fullscreen background images, cool music, news, projects, and contact info, amongst other things.</p>
<h3><a href="http://www.mariasharapova.com">Maria Sharipova</a></h3>
<p><a href="http://www.mariasharapova.com"><img class="aligncenter size-full wp-image-9313" src="http://www.webdesigndev.com/wp-content/uploads/2012/01/sharipova.jpg" alt="Maria Sharipova" width="740" height="520" /></a></p>
<p><a href="http://www.mariasharapova.com">Maria Sharipova</a> is not only stunning on and off the court, but on the web as well! Her personal website is packed full of content, including Facebook updates, photos, videos, news updates on her foundation, links to her various collections and products, as well as info on her sponsors.</p>
<h3><a href="http://www.andresiniesta.es/">Andres Iniesta</a></h3>
<p><a href="http://www.andresiniesta.es/"><img class="aligncenter size-full wp-image-9308" src="http://www.webdesigndev.com/wp-content/uploads/2012/01/inesta.jpg" alt="Andres Iniesta" width="740" height="484" /></a></p>
<p>Hailed as one of the greatest modern day footballers, <a href="http://www.andresiniesta.es/">Andres Iniesta</a> has a rather flashy Flash site to stay in touch with his fans. The site is packed full of photos, videos, news, bio and background info on the World Champion goal scorer at both club and international level. The site can also be viewed in Spanish, Catalonian or English.</p>
<h3><a href="http://www.serenawilliams.com">Serena Williams</a></h3>
<p><a href="http://www.serenawilliams.com"><img class="aligncenter size-full wp-image-9312" src="http://www.webdesigndev.com/wp-content/uploads/2012/01/serenaWilliams.jpg" alt="Serena Williams" width="740" height="519" /></a></p>
<p><a href="http://www.serenawilliams.com">Serena Williams</a> took the time to develop a site packed full of information on her and her various accomplishments. Amongst the standard, bio, pics, media, sponsor info, and contact links there is a schedule of her upcoming events, as well as a page about her foundation.</p>
<h3><a href="http://troy43.com/">Troy Polamalu</a></h3>
<div id="in_post_ad_middle_1" style="margin: 5px;padding: 0px;"><a href="http://www.wix.com/amazingwebsites/editoreasy?utm_campaign=af_webdesigndev.com&experiment_id=af_webdesigndev.com1middlepostnewLP" target="_blank" rel="nofollow">
<img src="http://www.webdesigndev.com/expressions_website3.gif" width="300" height="250" alt="create a free website" /></a></div><p><a href="http://troy43.com/"><img class="aligncenter size-full wp-image-9315" src="http://www.webdesigndev.com/wp-content/uploads/2012/01/troyP.jpg" alt="Troy Polamalu" width="740" height="519" /></a></p>
<p><a href="http://troy43.com/">Troy Polamalu</a> is an American football player and a man to be feared on the field. If anyone was wondering how intimidating it may be to come face-to-face with him, you may now do so on his homepage. Along with a very stoic and intimidating background pic, Polamalu also has a store on his site where fans can buy his merchandise. You can also learn about the foundations Troy supports from his website as well.</p>
<h3><a href="http://www.floydmayweather.com">Floyd Mayweather, Jr</a></h3>
<p><a href="http://www.floydmayweather.com"><img class="aligncenter size-full wp-image-9311" src="http://www.webdesigndev.com/wp-content/uploads/2012/01/moneyMay.jpg" alt="Floyd &quot;Money&quot; Mayweather, Jr." width="740" height="519" /></a></p>
<p>Love him or hate him, <a href="http://www.floydmayweather.com">Floyd &#8220;Money&#8221; Mayweather, Jr</a> is a force to be reckoned with in the boxing world. You can access Money’s Facebook page, Twitter account and YouTube channel, as well as well as get info on the not-for-profit The Floyd Mayweather Jr, Foundation or shop his online store.</p>
<h3><a href="http://www.lancearmstrong.com/">Lance Armstrong</a></h3>
<p><a href="http://www.lancearmstrong.com/"><img class="aligncenter size-full wp-image-9309" src="http://www.webdesigndev.com/wp-content/uploads/2012/01/lanceArmstrong.jpg" alt="Lance Armstrong" width="740" height="484" /></a></p>
<p>Seven time Tour de France champion, <a href="http://www.lancearmstrong.com/">Lance Armstrong</a> has become a worldwide cancer awareness advocate since he gained worldwide fame as a cyclist. The site contains info on the Livestrong foundation, photos, news, pics, a bio, sponsors, and a whole lot more.</p>
<h3><a href="http://www.felipemassa.com/">Felipe Massa</a></h3>
<p><a href="http://www.felipemassa.com/"><img class="aligncenter size-full wp-image-9307" src="http://www.webdesigndev.com/wp-content/uploads/2012/01/felipeMassa.jpg" alt="Felipe Massa" width="740" height="511" /></a></p>
<p><a href="http://www.felipemassa.com/">Felipe Massa</a> is a Formula 1 driver for Ferrari with an extremely cool website. Featuring a fullscreen background image slideshow, multiple language options, and all of the standard, media, bio, and news content you’d expect. Felipe also has a fan club you can join from his site, as well as a link to the Ferrari merchandise store.</p>
<h3><a href="http://www.lebronjames.com/">LeBron James</a></h3>
<p><a href="http://www.lebronjames.com/"><img class="aligncenter size-full wp-image-9310" src="http://www.webdesigndev.com/wp-content/uploads/2012/01/lebronJames.jpg" alt="LeBron James" width="740" height="511" /></a></p>
<p><a href="http://www.lebronjames.com/">LeBron James</a> has a site you must witness. A single page concept with a parallax scrolling effect that hovers over character drawings of the man himself, the site has your standard updates, and links to his social media presence. But the content gold mine comes in the way of “The LeBrons” cartoons.</p>
<p>There are some certain trends that you can see present throughout the majority of these sites, lots of color, emphasis on images, and basic content elements like bio, contact info, and links to social media platforms. These concepts can be applied to many other niches of web design and don’t have to be limited to athletes, the same concepts could work for artists, musicians, cooks, and many other professions.</p>
<p>About the author: with over ten years in the freelance web design and writing fields, Scott Stanton has had his finger on the beating pulse of the industry&#8217;s hottest design trends and bends for the past decade. Scott regularly writes for Wix.com the free <a title="website builder" href="http://www.wix.com/website/builder?utm_campaign=se_gb_webdesigndev.com&amp;experiment_id=FWB" target="_blank">website builder</a>.  Follow him on Twitter @TheScottStanton.</p>
<div style='clear:both'></div>]]></content:encoded>
			<wfw:commentRss>http://www.webdesigndev.com/web-development/10-omg-cool-athlete-websites/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Create a Full Page Background Image with CSS3</title>
		<link>http://www.webdesigndev.com/dreamweaver/create-a-full-page-background-image-with-css3</link>
		<comments>http://www.webdesigndev.com/dreamweaver/create-a-full-page-background-image-with-css3#comments</comments>
		<pubDate>Thu, 05 Jan 2012 16:45:17 +0000</pubDate>
		<dc:creator>Scott Stanton</dc:creator>
				<category><![CDATA[Dreamweaver]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://www.webdesigndev.com/?p=9234</guid>
		<description><![CDATA[The other day we looked at 10 Awesome Websites With Full Screen Background Images.  At the beginning of the article I had mentioned that there were a few ways of approaching this effect, some developers prefer to do it with jQuery, some with CSS, and others with Flash.  In this article we’re going to take [...]]]></description>
			<content:encoded><![CDATA[<p>The other day we looked at <a href="http://www.webdesigndev.com/?p=9216">10 Awesome Websites With Full Screen Background Images</a>.  At the beginning of the article I had mentioned that there were a few ways of approaching this effect, some developers prefer to do it with jQuery, some with CSS, and others with Flash.  In this article we’re going to take a look at how to achieve a full screen background image with CSS.</p>
<p>CSS3 allows us to choose between a few different values for the “background-size” property.  The properties are, length, percentage, cover, and contain.  The value that we’re going to use first is the “cover” value, which will scale an image to a size that will allow it to fill the content area.  I would like to point out that in doing this some parts of the image may be cut off depending on the screen resolution or dimensions of the browser window.  <a href="http://centrogenesis.com/">Centro Genesis</a> is a good example.  Look at how the background image displays in a widescreen browser.</p>
<p><a href="http://centrogenesis.com/"><img class="aligncenter size-full wp-image-9235" src="http://www.webdesigndev.com/wp-content/uploads/2011/12/genesisWide.jpg" alt="Centro Genesis" width="740" height="377" /></a></p>
<p>Now look at how the image appears in a traditional square browser. The majority of the photo is the same, it just cuts off a piece of it in order to fill the height of the screen.</p>
<p><a href="http://centrogenesis.com/"><img class="aligncenter size-full wp-image-9236" src="http://www.webdesigndev.com/wp-content/uploads/2011/12/genesisSkinny.jpg" alt="Centro Genesis" width="740" height="530" /></a></p>
<p>The code for this is method is really quite simple.  All you have to do is insert these few lines of CSS in your external CSS file or in the head of your page.</p>
<p>html {<br />
background: url(images/bg.jpg) no-repeat center center fixed;<br />
-webkit-background-size: cover;<br />
-moz-background-size: cover;<br />
-o-background-size: cover;<br />
background-size: cover;<br />
}</p>
<p>That was easy.  Now let’s take a closer look at what we did.  With the first line we’re calling in our background image and applying some style to it, “background: url(images/bg.jpg)” is pulling up our actual image.  Then “no-repeat” is telling the browser to not repeat the image, “center center” is telling the browser to center the image horizontally and vertically, and “fixed” is telling the image to fix itself in that position and not scroll with the rest of the content on the page if there is a need to scroll.  After we’ve called the background image and styled it we target all of the major browsers, webkit covers Safari 5+ and Chrome, Moz is Mozilla Firefox 4+, -o is Opera, and the plain and simple background-size with no prefix takes care if IE9+.</p>
<p>This technique is simple and works, but you’re relying on one image to please all resolution sizes.  How do you decide what dimensions to use for your one background image?  If you have an image that’s 1900px wide and someone’s trying to view your site on their mobile phone, the image may take quite some time to load.  But if you try to shoot the gap and go with an image that’s around 1,000px wide then the image may become pixilated and blurry to anyone viewing your site on a widescreen monitor with the resolution set to 1440px.  And chances are even at 1,000px it’s still going to take that mobile viewer a while to fully load your site because of your large background image.</p>
<p>Before you curse the variables like screen resolution and monitor shapes that can make our jobs so frustrating at times, allow me to give you the answer you’re looking for: media queries.  CSS will allow you to define different attributes for various parameters.  In other words, you can set a media query that tells a browser to load a largeBG.jpg, mediumBG.jpg, or a smallBG.jpg depending on what the browser dimensions of the viewer are.</p>
<div id="in_post_ad_middle_1" style="margin: 5px;padding: 0px;"><a href="http://www.wix.com/amazingwebsites/editoreasy?utm_campaign=af_webdesigndev.com&experiment_id=af_webdesigndev.com1middlepostnewLP" target="_blank" rel="nofollow">
<img src="http://www.webdesigndev.com/expressions_website3.gif" width="300" height="250" alt="create a free website" /></a></div><p>For example, rather than defining your background image within the HTML of your site let’s say you create a div for your page and assign it the id of “container”.  Pretty standard.  Much like we did in the first method, we’re going to assign our “container” div id with our background image, add some style, then tell it to cover.  I would recommend making your “largeBG.jpg” image somewhere in the ballpark of 1440px wide to 1900px wide.</p>
<p>#container{<br />
background: url(images/largeBG.jpg) no-repeat center center fixed;<br />
-webkit-background-size: cover;<br />
-moz-background-size: cover;<br />
-o-background-size: cover;<br />
background-size: cover;<br />
}</p>
<p>Now that we’ve got the big version of our background image set, we can move on to the medium.  This is a little different as we’re going to have to do a media query to tell the browser to load a smaller version of our background image.  I typically set a media query for a screen resolution width of 1024, as this is the resolution of an iPad and the possibility of the viewer relying on a network rather than high speed wifi to load the page.  To set a media query for 1024 you simply add this line in to your CSS.</p>
<p>@media only screen and (max-width: 1024px) and (orientation:landscape) {<br />
#container { background: url(images/mediumBG.jpg) 50% 0 no-repeat fixed; !important; background-size: 100% auto;<br />
-webkit-background-size: cover;<br />
-moz-background-size: cover;<br />
-o-background-size: cover;<br />
background-size: cover;<br />
}<br />
}</p>
<p>The background-size properties are somewhat optional at this point.  You can’t adjust the resolution of your iPad, but you have to remember that this media query is not specifically targeting iPad’s, it’s targeting that screen resolution.  Since there are surely still a large portion of web surfers on older monitors set in the ballpark of 1024&#215;768, it’s an easy enough step to enhance their viewing experience a little more.</p>
<p>After defining the landscape view for iPad’s let’s make a media query for the portrait view.  Depending on your image, you may want to consider putting in a cropped, taller version of your image here so that it display’s full screen without getting too distorted and pixilated.  You’ll also want to adjust the positioning to make sure the image stays aligned properly.</p>
<p>@media only screen and (min-width: 768px) and (max-width: 991px) {<br />
#container { background: url(images/mediumTallBG.jpg) 50% 80% no-repeat fixed !important<br />
-webkit-background-size: cover;<br />
-moz-background-size: cover;<br />
-o-background-size: cover;<br />
background-size: cover;<br />
}<br />
}</p>
<p>Finally, we can set another media query for mobile devices.</p>
<p>@media only screen and (min-width: 0px) and (max-width: 767px) {<br />
#container { background: url(images/smalBG.jpg) 50% 80% no-repeat fixed !important; background-size: auto !important;<br />
-webkit-background-size: cover;<br />
-moz-background-size: cover;<br />
-o-background-size: cover;<br />
background-size: cover;<br />
}<br />
}</p>
<p>I would encourage you to play around with these tricks and leave a link to the page you’ve created in the comments section below so we can all see what you’ve come up with.</p>
<p>About the author: with over ten years in the freelance web design and writing fields, Scott Stanton has had his finger on the beating pulse of the industry&#8217;s hottest design trends and bends for the past decade. Scott regularly writes for Wix.com the free <a title="website builder" href="http://www.wix.com/website/builder?utm_campaign=se_gb_webdesigndev.com&amp;experiment_id=FWB" target="_blank">website builder</a>.  Follow him on Twitter @TheScottStanton.</p>
<div style='clear:both'></div>]]></content:encoded>
			<wfw:commentRss>http://www.webdesigndev.com/dreamweaver/create-a-full-page-background-image-with-css3/feed</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>10 Awesome Single Page Websites</title>
		<link>http://www.webdesigndev.com/web-development/10-awesome-single-page-websites</link>
		<comments>http://www.webdesigndev.com/web-development/10-awesome-single-page-websites#comments</comments>
		<pubDate>Wed, 04 Jan 2012 18:18:43 +0000</pubDate>
		<dc:creator>Scott Stanton</dc:creator>
				<category><![CDATA[Inspiration]]></category>
		<category><![CDATA[Roundups]]></category>
		<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://www.webdesigndev.com/?p=9281</guid>
		<description><![CDATA[These days it seems like the term “webpage” and “website” are thrown around loosely, often being used interchangeably. I can’t recall how many times I’ve been in a meeting with a client and had them tell me they’d like a webpage, which I interpret as a basic, single-page website that is basically a digital business [...]]]></description>
			<content:encoded><![CDATA[<p>These days it seems like the term “webpage” and “website” are thrown around loosely, often being used interchangeably. I can’t recall how many times I’ve been in a meeting with a client and had them tell me they’d like a webpage, which I interpret as a basic, single-page website that is basically a digital business card. Something that gives them a web presence without breaking the bank, but then what they begin to describe is a fairly complex, multi-page structure, or something that I would define as a “website.” Thanks to jQuery, Java, CSS, and some good ol’ fashioned HTML, there are quite a few tricks that allow a singular webpage to function like a multi-page website. Let’s take a look at 10 Awesome Single-Page Websites.</p>
<h3><a title="Fandango Media Group" href="http://fandangomediagroup.com/" target="_blank">Fandango Media Group</a></h3>
<p><a href="http://fandangomediagroup.com/"><img class="aligncenter size-full wp-image-9282" src="http://www.webdesigndev.com/wp-content/uploads/2011/12/fandangoMedia.jpg" alt="Fandango Media Group" width="740" height="377" /></a></p>
<p><a title="Fandango Media Group" href="http://fandangomediagroup.com/" target="_blank">Fandango Media Group</a> utilizes a very basic CSS fixed background trick to add heaps of character to how the content flows on the page. It’s not much, but it certainly gives navigating the page an edge over most other vertically scrolling sites or pages. I found it interesting that they opted to use images for a majority of their text. It certainly works, but more often than not people seemed to be concerned about their SEO, at least to some degree, and text is the best way to boost your SEO.</p>
<h3><a title="Bennett Feely" href="http://bfeely.com/" target="_blank">Bennett Feely</a></h3>
<p><a href="http://bfeely.com/"><img class="aligncenter size-full wp-image-9283" src="http://www.webdesigndev.com/wp-content/uploads/2011/12/bfeely.jpg" alt="Bennett Feely" width="740" height="377" /></a></p>
<p><a title="Bennett Feely" href="http://bfeely.com/" target="_blank">Bennett Feely</a> has developed a very clever webpage for himself. I like his fixed position navigation bar at the top of the page, it’s both hidden and transparent, as to not intrude on the page too much, but enough to let you know it’s there. Bennett also a slider in his portfolio to showcase his work, and a fun CSS transition effect on his email contact link. It’s simple and minimalist, yet gives you everything you need.</p>
<h3><a title="HatBox" href="http://hatbox.co/" target="_blank">HatBox</a></h3>
<p><a href="http://hatbox.co/"><img class="aligncenter size-full wp-image-9284" src="http://www.webdesigndev.com/wp-content/uploads/2011/12/hatbox.jpg" alt="HatBox" width="740" height="377" /></a></p>
<p><a title="HatBox" href="http://hatbox.co/" target="_blank">HatBox</a> is another excellent webpage and I especially like that it’s responsive without any loss of content. I really admired how they opted for a creative icon tab navigation for their portfolio where I feel most companies would have gone with an image slider. HatBox is another example of not overwhelming the viewer with information and things to look at and click. You get what you need. The only minor critique I would give is to make the contact information a little more visible, the text for the email address is easy to overlook. Simply adding an icon in with the social media icons could do the trick.</p>
<h3><a title="Code Slingers" href="http://codeslingerschallenge.com/" target="_blank">Code Slingers</a></h3>
<p><a href="http://codeslingerschallenge.com/"><img class="aligncenter size-full wp-image-9285" src="http://www.webdesigndev.com/wp-content/uploads/2011/12/codeSlingers.jpg" alt="Code Slingers Challenge" width="740" height="378" /></a></p>
<p><a title="Code Slingers" href="http://codeslingerschallenge.com/" target="_blank">Code Slingers</a> only has two sections, home and about. But they utilize parallax scrolling to give the page heaps of character. I’m also a fan of sites that utilize the header to put color in to a site and set the tone, then have the bottom of the header image set a single color background for the rest of the site.</p>
<h3><a title="CoFinery" href="http://www.cofinery.com/" target="_blank">CoFinery</a></h3>
<p><a href="http://www.cofinery.com/"><img class="aligncenter size-full wp-image-9286" src="http://www.webdesigndev.com/wp-content/uploads/2011/12/CoFinery.jpg" alt="CoFinery" width="740" height="586" /></a></p>
<p><a title="CoFinery" href="http://www.cofinery.com/" target="_blank">CoFinery</a> is another perfect example of a webpage that gives you exactly what you need, and nothing more. They have a large main image banner that helps set the tone for the site and give it a little character, along with some text explaining who they are and what they do. You’ll also find icon links to their twitter and dribble accounts. Below the belt you find the rest of the details you need, the who and what, along with contact info.</p>
<h3><a title="Pixelbacker" href="http://www.pixelbaecker.de/" target="_blank">Pixelbacker</a></h3>
<div id="in_post_ad_middle_1" style="margin: 5px;padding: 0px;"><a href="http://www.wix.com/amazingwebsites/editoreasy?utm_campaign=af_webdesigndev.com&experiment_id=af_webdesigndev.com1middlepostnewLP" target="_blank" rel="nofollow">
<img src="http://www.webdesigndev.com/expressions_website3.gif" width="300" height="250" alt="create a free website" /></a></div><p><a href="http://www.pixelbaecker.de/"><img class="aligncenter size-full wp-image-9287" src="http://www.webdesigndev.com/wp-content/uploads/2011/12/pixelBacker.jpg" alt="Pixelbacker" width="740" height="376" /></a></p>
<p><a title="Pixelbacker" href="http://www.pixelbaecker.de/" target="_blank">Pixelbacker</a> reminds me of one of my favorite arcade games from the 80’s, Asteroids. The home page consists of some fun animations, with parallax scrolling asteroids in the background. The navigation system is very non-traditional and is set up more like a video game, with links placed throughout the page rather than featuring a standard navigation bar.</p>
<h3><a title="TM Design" href="http://www.tmdesign.sk/" target="_blank">TM Design</a></h3>
<p><a href="http://www.tmdesign.sk/"><img class="aligncenter size-full wp-image-9288" src="http://www.webdesigndev.com/wp-content/uploads/2011/12/tmDesign.jpg" alt="TM Design" width="740" height="377" /></a></p>
<p><a title="TM Design" href="http://www.tmdesign.sk/" target="_blank">TM Design</a> isn’t the first site I’ve seen that features a full screen background image and origami on the homepage. But that’s not all this page has going for it, parallax scrolling, an easy to navigate portfolio section with multiple links rather than one decorating the middle of the page, and a footer that is more than just an afterthought round out the rest of the highlights. In fact, I really like the footer, it has a little mission statement, an image to tie the page together and all of their contact information.</p>
<h3><a title="Rareview" href="http://www.rareview.com/" target="_blank">Rareview</a></h3>
<p><a href="http://www.rareview.com/"><img class="aligncenter size-full wp-image-9289" src="http://www.webdesigndev.com/wp-content/uploads/2011/12/rareView.jpg" alt="Rareview" width="740" height="395" /></a></p>
<p><a title="Rareview" href="http://www.rareview.com/" target="_blank">Rareview</a> is exactly that, a rare view. They don’t rely on too many fancy scrolling or navigation gimmicks, but they don’t need it. There are some simple anchor links that quickly jump you further down the page, but that’s about it as far as a navigation system. The design is very clean, and just a basic, vertically scrolling site. It’s a timeless design that doesn’t instigate any popular trends, which means there’s no need to keep updating or redesigning the site as trends rise and fall.</p>
<h3><a title="Marcela Garces" href="http://thisismarcela.com/" target="_blank">Marcela Garces</a></h3>
<p><a href="http://thisismarcela.com/"><img class="aligncenter size-full wp-image-9290" src="http://www.webdesigndev.com/wp-content/uploads/2011/12/marcela.jpg" alt="Marcela Garces" width="740" height="538" /></a></p>
<p><a title="ThisIsMarcela.com" href="http://thisismarcela.com/" target="_blank">ThisIsMarcela.com</a> is a fun site to browse thanks to the color palette, animated graphics, icons, and soft textures. I enjoyed the ever-present navigation bar adorning the left side of the page. The page includes some fun facts about the designer, a healthy amount of portfolio samples, and is another great example of utilizing the footer as a design element, rather than a quick way to tie off the end of the page.</p>
<h3><a title="Ready When You Are" href="http://www.readywhenyouare.co.nz/" target="_blank">Ready When You Are</a></h3>
<p><a href="http://www.readywhenyouare.co.nz/"><img class="aligncenter size-full wp-image-9291" src="http://www.webdesigndev.com/wp-content/uploads/2011/12/taxis.jpg" alt="Ready When You Are" width="740" height="469" /></a></p>
<p>What better way to spruce up a taxi webpage than with a taxi driving through it? That’s what <a title="Ready When You Are" href="http://www.readywhenyouare.co.nz/" target="_blank">Ready When You Are</a> has done, starting with a crazy driving cabby navigating through the various highlights of the page. Then, with each click, the taxi is right there behind you. This is another perfect example of giving the viewer enough content to keep them happy and encourage them to actually read it all, rather than overloading the page and overwhelming the viewer, which may cause them to leave the page without reading anything.</p>
<p>It’s clear from some of these examples that there is a blurred line between what constitutes as a single page, or a webpage and a website. A site may scroll left or right, giving the appearance that it’s a new page, but a quick look at the URL will show that the developer just used an anchor to take the viewer to a different section of the same page. As with developing any website, the most important thing is structure and navigation. If a viewer can’t figure out how to get around your site, or get to the information they’re licking for quickly, they’re going to get frustrated and leave. Keep that in mind if you’re planning on developing a creative, single-page, horizontally scrolling page.</p>
<p>About the author: with over ten years in the freelance web design and writing fields, Scott Stanton has had his finger on the beating pulse of the industry&#8217;s hottest design trends and bends for the past decade. Scott regularly writes for Wix.com the free <a title="website builder" href="http://www.wix.com/website/builder?utm_campaign=se_gb_webdesigndev.com&amp;experiment_id=FWB" target="_blank">website builder</a>.  Follow him on Twitter @TheScottStanton.</p>
<div style='clear:both'></div>]]></content:encoded>
			<wfw:commentRss>http://www.webdesigndev.com/web-development/10-awesome-single-page-websites/feed</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>10 Awesome Websites With Full Screen Background Images</title>
		<link>http://www.webdesigndev.com/web-development/10-awesome-websites-with-full-screen-background-images</link>
		<comments>http://www.webdesigndev.com/web-development/10-awesome-websites-with-full-screen-background-images#comments</comments>
		<pubDate>Tue, 03 Jan 2012 12:22:14 +0000</pubDate>
		<dc:creator>Scott Stanton</dc:creator>
				<category><![CDATA[Inspiration]]></category>
		<category><![CDATA[Roundups]]></category>
		<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://www.webdesigndev.com/?p=9216</guid>
		<description><![CDATA[10 Awesome Websites With Full Screen Background Images When it comes to web design my tastes walk on a very thin line. I like simplicity and visual stimulation, which is a very difficult balance to pull off. However, one of the easiest ways to do so is by featuring a full screen background image on [...]]]></description>
			<content:encoded><![CDATA[<h1>10 Awesome Websites With Full Screen Background Images</h1>
<p>When it comes to web design my tastes walk on a very thin line. I like simplicity and visual stimulation, which is a very difficult balance to pull off. However, one of the easiest ways to do so is by featuring a full screen background image on your site. Accomplishing this feat is not as easy as it may sound once you take in to consideration all the different sized monitors and screen resolutions out there, not to mention tablets and mobile devices. That’s not to say it can’t be done as there are multiple ways to approach this technique, but for now we’re just going to look at ten sites that utilize a full screen background image.</p>
<h3><a title="Go To China" href="http://ringvemedia.com/" target="_blank">Go To China</a></h3>
<p>&nbsp;</p>
<p><a href="http://ringvemedia.com/"><img class="aligncenter size-full wp-image-9222" src="http://www.webdesigndev.com/wp-content/uploads/2011/12/goToChina.jpg" alt="Go To China" width="740" height="374" /></a></p>
<p>If you drag, shrink, pull, push and widen <a title="this page" href="http://ringvemedia.com/" target="_blank">this page</a> you will notice that the background image not only continuously fills your browser window, but it’s also keeping the image in scale. Meaning the image is not a fixed size where someone who has their screen resolution set to 800&#215;600 will miss the majority of the image, where as someone who has their monitor set to 1440&#215;900 is able to see most of it. This site is able to achieve the effect thanks to the “cover” attribute for background-size in CSS3.</p>
<h3><a title="Bjoern Dunkerbeck" href="http://www.dunkerbeck.com/" target="_blank">Bjoern Dunkerbeck</a></h3>
<p><a href="http://www.dunkerbeck.com/"><img class="aligncenter size-full wp-image-9220" src="http://www.webdesigndev.com/wp-content/uploads/2011/12/dunkerbeck.jpg" alt="Bjoern Dunkerbeck" width="740" height="372" /></a></p>
<p>Pro surfboarder Bjoern Dunkerbeck has a pretty rockin’ <a title="website" href="http://www.dunkerbeck.com/" target="_blank">website</a> complete with a full screen background image. As a matter of fact, he has multiple background images that cycle through as a slideshow while you’re on his site. Bjoern’s site uses Flash in order to display the full screen image.</p>
<h3><a title="The Door Works" href="http://www.doorworksco.com/" target="_blank">The Door Works</a></h3>
<p><a href="http://www.doorworksco.com/"><img class="aligncenter size-full wp-image-9219" src="http://www.webdesigndev.com/wp-content/uploads/2011/12/doorWorks.jpg" alt="The Door Works" width="740" height="374" /></a></p>
<p><a title="The Door Works" href="http://www.doorworksco.com/" target="_blank">The Door Works</a> use a full screen background image to establish their high quality craftsmanship to the viewer immediately. Through the use of jQuery the image is clipped and resized on the fly. This may sound similar to what the previous sites were doing, but those sites had the image dimensions set to 100% in order to fill the screen. Meaning the image colors won’t get blotchy if the window is shrunk much smaller than the original size of the image, or the image won’t become blurry and pixilated if it’s stretched much larger than the original size of the image.</p>
<h3><a title="Ben Thomson Photography" href="http://www.benthomsonphoto.com/" target="_blank">Ben Thomson Photography</a></h3>
<p><a href="http://www.benthomsonphoto.com"><img class="aligncenter size-full wp-image-9217" src="http://www.webdesigndev.com/wp-content/uploads/2011/12/benThomas.jpg" alt="Ben Thomson Photography" width="740" height="372" /></a></p>
<p>I’m a sucker for a good photography website, you’ve got a plethora of creative, high-res images to look at and capture your attention. And that’s exactly what Ben Thomson accomplished with his <a title="website" href="http://www.benthomsonphoto.com/" target="_blank">website</a>. Ben keeps it clean and simple, only offering what’s necessary for a man of his profession to have on a website.</p>
<h3><a title="Fleming Steele" href="http://www.flemingsteele.com/" target="_blank">Fleming Steele</a></h3>
<p><a href="http://www.flemingsteele.com/"><img class="aligncenter size-full wp-image-9221" src="http://www.webdesigndev.com/wp-content/uploads/2011/12/flemingSteele.jpg" alt="Fleming Steele" width="740" height="374" /></a></p>
<p>The <a title="Fleming Steele" href="http://www.flemingsteele.com/" target="_blank">Fleming Steele</a> creative agency understands the importance of a website. They understand that a site should not only represent you and what you do, but encompass your personality and philosophy as a company. The full screen, black and white, background images of the city they’re based out of immediate triggers words in my head like “elegant”, “creative”, and “clever”.</p>
<h3><a title="Teletech" href="http://www.teletech.com/" target="_blank">Teletech</a></h3>
<div id="in_post_ad_middle_1" style="margin: 5px;padding: 0px;"><a href="http://www.wix.com/amazingwebsites/editoreasy?utm_campaign=af_webdesigndev.com&experiment_id=af_webdesigndev.com1middlepostnewLP" target="_blank" rel="nofollow">
<img src="http://www.webdesigndev.com/expressions_website3.gif" width="300" height="250" alt="create a free website" /></a></div><p><a href="http://www.teletech.com/"><img class="aligncenter size-full wp-image-9225" src="http://www.webdesigndev.com/wp-content/uploads/2011/12/teletech.jpg" alt="Teletech" width="740" height="376" /></a></p>
<p><a title="Teletech" href="http://www.teletech.com/" target="_blank">Teletech</a> dishes up some phenomenal photos as their background images, but they don’t stop there. Their site features a miniature camera icon just to the right of their main navigation bar, towards the top of the page, clicking on it results in getting background information on the photo. Unique and educational.</p>
<h3><a title="Gravitate Design" href="http://www.gravitatedesign.com/" target="_blank">Gravitate Design</a></h3>
<p><a href="http://www.gravitatedesign.com/"><img class="aligncenter size-full wp-image-9223" src="http://www.webdesigndev.com/wp-content/uploads/2011/12/gravitate.jpg" alt="Gravitate Design" width="740" height="376" /></a></p>
<p><a title="Gravitate Design" href="http://www.gravitatedesign.com/" target="_blank">Gravitate Design</a> is a bit of a special case for me. On its own the image isn’t that interesting or intriguing. But in the context of the design and the website as a whole, it’s perfection in its simplest form. It delivers some character to the homepage, it’s simple, clean and full screen. Try picturing this website with out the image, you wouldn’t have the textures that the wood and wall offer or the character and creativity that the origami crane offers. Try putting in one of the images from the other sites and all of a sudden the site would become to cluttered and you wouldn’t know what to focus on.</p>
<h3><a title="Medis Kitchen and Bar" href="http://www.mediskokochbar.se/" target="_blank">Medis Bar</a></h3>
<p><a href="http://www.mediskokochbar.se/"><img class="aligncenter size-full wp-image-9224" src="http://www.webdesigndev.com/wp-content/uploads/2011/12/medis.jpg" alt="Medis Kitchen and Bar" width="740" height="373" /></a></p>
<p><a title="Medis Kitchen and Bar" href="http://www.mediskokochbar.se/" target="_blank">Medis Kitchen and Bar</a> is another site featuring a full screen background image slideshow. In fact, I didn’t even need to know Swedish to know what the place offered or for the site to convince me I need to go there. Their images tell it all through pictures of the food, bar, coffee, cooks and servers.</p>
<p><a title="Tour Alarm" href="http://www.touralarm.de/" target="_blank">Tour Alarm</a></p>
<p><a href="http://www.touralarm.de/"><img class="aligncenter size-full wp-image-9226" src="http://www.webdesigndev.com/wp-content/uploads/2011/12/tourAlarm.jpg" alt="Tour Alarm" width="740" height="376" /></a></p>
<p>I can only hope that the only thing this bus was used for was to get the background image for the <a title="Tour Alarm Website" href="http://www.touralarm.de/" target="_blank">Tour Alarm website</a>. A couple aspects of the site that I really enjoyed and really worked for me was the ability to translate the page to English, from German, and the ability to close the content so you can see the full picture of the bus unobstructed. Now, whether the bus works or not is another story.</p>
<h3><a title="Davidia" href="http://www.davidia-int.hr" target="_blank">Davidia</a></h3>
<p><a href="http://www.davidia-int.hr"><img class="aligncenter size-full wp-image-9218" src="http://www.webdesigndev.com/wp-content/uploads/2011/12/davidia.jpg" alt="Davidia" width="740" height="374" /></a></p>
<p><a title="Davidia" href="http://www.davidia-int.hr" target="_blank">Davidia</a> is a Croatian company that knows multiple forms of design, or at least interior and web design. This site is another example of a full sized background image that maintains the proper scale and proportions as it is resized. The image also never looks to pixilated, blurred or blotchy.</p>
<p>Content is nice, but how many of the people visiting your site do you think read every word written on your site? And, let’s be honest, was the content written because you thought the visitor had an interest in it, or because you had an interest in optimizing your site for search engines? You will notice that with most of these sites you didn’t need to read a single word to figure out what the company the website was representing did, what the service was they offered, or how good they were at their job. All of those messages were conveyed through a handful of images that perfectly represented the company. Think about that next time you’re trying to type out a 1,000 word “About Us” page. After all, a picture’s worth 1,000 words.</p>
<p>About the author: with over ten years in the freelance web design and writing fields, Scott Stanton has had his finger on the beating pulse of the industry&#8217;s hottest design trends and bends for the past decade. Scott regularly writes for Wix.com the free <a title="website builder" href="http://www.wix.com/website/builder?utm_campaign=se_gb_webdesigndev.com&amp;experiment_id=FWB" target="_blank">website builder</a>.  Follow him on Twitter @TheScottStanton.</p>
<div style='clear:both'></div>]]></content:encoded>
			<wfw:commentRss>http://www.webdesigndev.com/web-development/10-awesome-websites-with-full-screen-background-images/feed</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Why People Are Not Using My Website the Way I Want Them To?!</title>
		<link>http://www.webdesigndev.com/web-development/why-people-are-not-using-my-website-the-way-i-want-them-to</link>
		<comments>http://www.webdesigndev.com/web-development/why-people-are-not-using-my-website-the-way-i-want-them-to#comments</comments>
		<pubDate>Thu, 22 Dec 2011 17:06:12 +0000</pubDate>
		<dc:creator>Karol K</dc:creator>
				<category><![CDATA[Web Development]]></category>
		<category><![CDATA[obvious web design]]></category>
		<category><![CDATA[web design goals]]></category>

		<guid isPermaLink="false">http://www.webdesigndev.com/?p=9147</guid>
		<description><![CDATA[Bad websites. The internet is full of them. Ugly ones, slow ones, buggy ones, hacked ones, and the worst of them all – what-the-hell-is-going-on-here ones. It seems like creating a good website is pure witchcraft&#8230; only it isn&#8217;t. And here&#8217;s why. We all have our reasons (or our clients have them) for creating a website. [...]]]></description>
			<content:encoded><![CDATA[<p>Bad websites. The internet is full of them. Ugly ones, slow ones, buggy ones, hacked ones, and the worst of them all – what-the-hell-is-going-on-here ones. It seems like creating a good website is pure witchcraft&#8230; only it isn&#8217;t. And here&#8217;s why.</p>
<p>We all have our reasons (or our clients have them) for creating a website. We always want to achieve something specific. We want it to be an asset. We want it to interact with users in a specific way. We want users to do something. Maybe to buy a product. Maybe to buy a series of products. Maybe to download our piece of software. Maybe to donate some money. It doesn&#8217;t matter.</p>
<p>What matters is the fact that you can&#8217;t afford to forget about one crucial thing – <strong>telling your users exactly what you want them to do</strong>.</p>
<p>It&#8217;s incredible how many designers forget about this. It seems like every day we see pages that were supposed to provide a download link for some software, but the link is not visible at all. Or online stores without a proper buy button. Or information portals with too much clutter, making the information impossible to digest. Or sales pages that are not clear enough, and stand absolutely no chance when trying to get a customer through a sales funnel of some kind.</p>
<p>Here&#8217;s a small piece of advice: <strong>There should be only one main element on each webpage</strong>. That&#8217;s it. Just one.</p>
<h2>How to choose the right element?</h2>
<p><img class="alignnone size-full wp-image-9148" src="http://www.webdesigndev.com/wp-content/uploads/2011/12/question.jpg" alt="question" width="600" height="406" /></p>
<p>It&#8217;s not that difficult actually. The only thing you have to do is to ask yourself the question: &#8220;<strong>what is the purpose of this page?</strong>&#8221;</p>
<p>If the page exists to provide a download link then the most important element should be indeed that download link. Not the description. Not the header. Not testimonials. Not the features description. The download link itself. Make it big. &#8220;Purple cow&#8221;-it.</p>
<p>If the page exists to sell some kind of a product then the most important element should be the buy button. Same rules apply. Big, purple-cow-like.</p>
<p>What about a blog? Every blog is about one thing and one thing only – providing good quality content (sorry for the cliché). The content itself should be the most visible element of a blog page. Invest in some good typography. You can also try minimalist design. It works well for a blog because it doesn&#8217;t overwhelm the text content.</p>
<p>For big news portals create one block that will feature the most important news of the day. Situation when every piece of news seems to have the same importance is not good. If you try to show that everything matters in the end nothing will.</p>
<p><strong>In a nutshell. The main element should be the one that will attract the most attention</strong>. That&#8217;s why it&#8217;s crucial for it to be the most important element at the same time.</p>
<p>You can use a little trick while coming up with this element. Picture this: If you&#8217;d have to remove everything from your webpage and leave just one thing, what would it be? – That&#8217;s your main element.</p>
<p>But what to do when you have to create a sequence, or a funnel of pages?</p>
<h2>Creating a funnel of pages</h2>
<div id="in_post_ad_middle_1" style="margin: 5px;padding: 0px;"><a href="http://www.wix.com/amazingwebsites/editoreasy?utm_campaign=af_webdesigndev.com&experiment_id=af_webdesigndev.com1middlepostnewLP" target="_blank" rel="nofollow">
<img src="http://www.webdesigndev.com/expressions_website3.gif" width="300" height="250" alt="create a free website" /></a></div><p><img class="alignnone size-full wp-image-9149" src="http://www.webdesigndev.com/wp-content/uploads/2011/12/funnel.jpg" alt="funnel" width="600" height="287" /></p>
<p>This has significant importance for all sorts of sales pages. Try to find yourself in a situation where you have to create a series of webpages, each trying to achieve a slightly different goal. Such a thing can&#8217;t be done without a clear focus on the most important element of each individual page.</p>
<p>Imagine you&#8217;re in a cinema. You know how it works. First you have to get a ticket. And surprisingly enough there&#8217;s only one kind of thing you can buy at the cash register (a.k.a. the first sales page) – tickets. Nothing else. Just the thing you visited the cinema for in the first place.</p>
<p>The cinema is perfectly clear about what it is they&#8217;re selling, and what is their &#8220;main element&#8221;. Buying a ticket is the entry point. You can&#8217;t go further if you don&#8217;t get a ticket.</p>
<p>Next you proceed to a different sales page (so to speak) – the food stand. This thing is so big you can&#8217;t possibly miss it. This is their main element at this stage of the funnel. They will try to upsell you on some food, and they&#8217;ll probably succeed. You feel almost weird if you don&#8217;t buy something.</p>
<p>Finally you find your chair and sit down. What&#8217;s the main element? The screen. Nothing else there because they don&#8217;t want you to be distracted by anything. That&#8217;s why the lights are off and you can&#8217;t see anything but the screen. At this stage you get what you paid for, at last.</p>
<p>As you can see each step has a different main element, but still the whole process turns out to be very natural and consistent. You don&#8217;t feel weird or uncomfortable at any point. Cinemas do a great job at providing a different main element at every stage of their sales funnel.</p>
<p>However, be aware of the many things that could have been messed up along the way. The food stand could have been not big enough. The screen could have been too small, and the lights too bright. Making it an overall bad experience.</p>
<p>There&#8217;s no doubt, these things just can&#8217;t happen in the real world. But guess what? They&#8217;re happening all the time on the internet. And <strong>when they do, you end up with a what-the-hell-is-going-on-here website</strong>.</p>
<p>Try to be very clear with your online message – just like you would have been in the real world. Clear about what you want to accomplish with your website. Clear about what its main element is.</p>
<p>(One bonus tip. Look around. The real world can give you some big inspiration for your online endeavors.)</p>
<p>If you end up remembering just one thing from this article, let it be this: You always have to <strong>tell your users exactly what you want them to do. </strong>Just put up a giant food stand, and dim the lights. Be obvious. Obvious = good.</p>
<p><strong>What is your story? Have you ever visited a what-the-hell-is-going-on-here website?</strong></p>
<h3>About the Author</h3>
<p>Karol K. (<a href="http://twitter.com/carlosinho">@carlosinho</a>) is a 20-something year old web 2.0 entrepreneur from Poland, and a grad student at the Silesian University of Technology. He shares his thoughts at newInternetOrder.com. Tune in to get his advice on design and <a href="http://newinternetorder.com/starting-an-online-business/">starting an online business</a>.</p>
<div style='clear:both'></div>]]></content:encoded>
			<wfw:commentRss>http://www.webdesigndev.com/web-development/why-people-are-not-using-my-website-the-way-i-want-them-to/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>10 Incredible Examples of Responsive Web Design</title>
		<link>http://www.webdesigndev.com/web-development/10-incredible-examples-of-responsive-web-design</link>
		<comments>http://www.webdesigndev.com/web-development/10-incredible-examples-of-responsive-web-design#comments</comments>
		<pubDate>Wed, 21 Dec 2011 15:01:48 +0000</pubDate>
		<dc:creator>Scott Stanton</dc:creator>
				<category><![CDATA[Inspiration]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Roundups]]></category>
		<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://www.webdesigndev.com/?p=9094</guid>
		<description><![CDATA[With more people surfing the web from their mobile devices, designers and developers have been trying to figure out the best way to cater to visitors on both mobile devices and computers. When internet capable phones first began gaining popularity the method was to have two separate sites, a mobile site and a “full” site. [...]]]></description>
			<content:encoded><![CDATA[<p>With more people surfing the web from their mobile devices, designers and developers have been trying to figure out the best way to cater to visitors on both mobile devices and computers. When internet capable phones first began gaining popularity the method was to have two separate sites, a mobile site and a “full” site. But that would limit the mobile viewers experience because the site would be so basic it would cause you to wonder if it was coded by chisel and stone. That was then, now everyone is jumping on the “Responsive Web Design” bandwagon and finding it to be a rather happy median.</p>
<p>Responsive web design refers to a site that is developed to degrade nicely across multiple screen sizes and resolutions, from the largest Mac display down to the minutest mobile device. It also works wonders on frame size, square or widescreen, as well as window size, as not everyone prefers their browser to be full screen. There are three key factors to developing a responsive website, flexible layouts, flexible images, and media queries. Let’s take a look at 10 excellent examples of responsive web design.</p>
<h3>Sony</h3>
<p><a href="http://www.webdesigndev.com/wp-content/uploads/2011/12/Sony.jpg"><img class="aligncenter size-full wp-image-9103" src="http://www.webdesigndev.com/wp-content/uploads/2011/12/Sony.jpg" alt="Sony" width="740" height="186" /></a></p>
<p><a title="Sony" href="http://www.sony.com" target="_blank">Sony</a> is a big brand that has embraced responsive web design. You’ll notice there’s not much of a difference between the widescreen and traditional square screen versions other than everything looks a little more compact on the square screen. But if you start with it out wide and squeeze your browser window in, you’ll notice that the main image actually resizes itself to a smaller version. It resizes itself again once you get down towards mobile device width as well.</p>
<h3>Gravitate Design</h3>
<p><a href="http://www.webdesigndev.com/wp-content/uploads/2011/12/Gravitate.jpg"><img class="aligncenter size-full wp-image-9101" src="http://www.webdesigndev.com/wp-content/uploads/2011/12/Gravitate.jpg" alt="Gravitate Design" width="740" height="175" /></a></p>
<p>It’s no surprise that a design studio such as <a title="Gravitate Design" href="http://www.gravitatedesign.com/" target="_blank">Gravitate Design</a> features a responsive website design on their own site. Whether you are a freelancer or a large design studio, you always want your website to display the full extent of your design prowess and knowledge. I really like Gravitate’s site not only because it’s responsive but because it’s very clean and simple. Their color palette compliments itself nicely and they didn’t go overboard on shadowing, borders or putting all their content in boxes.</p>
<h3>Spark Box</h3>
<p><a href="http://www.webdesigndev.com/wp-content/uploads/2011/12/sparkBox.jpg"><img class="aligncenter size-full wp-image-9104" src="http://www.webdesigndev.com/wp-content/uploads/2011/12/sparkBox.jpg" alt="Spark Box" width="740" height="181" /></a></p>
<p><a title="Spark Box" href="http://seesparkbox.com/" target="_blank">Spark Box</a> is another web design studio that knows a good thing when they see it and doesn’t hesitate to implement it on their own site. One thing I really like about their website is how they use the width when they have it, but gracefully adjust when they don’t have it. Their little text blurb to the right of the monitor icons on the home page is a great example. It doesn’t look out of place aligned to the right in widescreen mode, nor does it look out of place centered underneath in square mode and mobile mode.</p>
<h3>Food Sense</h3>
<p><a href="http://www.webdesigndev.com/wp-content/uploads/2011/12/foodSense.jpg"><img class="aligncenter size-full wp-image-9100" src="http://www.webdesigndev.com/wp-content/uploads/2011/12/foodSense.jpg" alt="Food Sense" width="740" height="197" /></a></p>
<p><a title="Food Sense" href="http://foodsense.is/" target="_blank">Food Sense</a> is another great example of responsive web design. They use the width when they have it, but when they don’t they adjust without losing any of the clean look or flow to the site. The only unfortunate thing about the site is that once you leave their widescreen parameters you lose their latest tweet and Facebook plug that’s on the side column under the navigation. They still have links to both social networks in the footer, so it’s not a huge deal. But still would have been nice to see those features appear elsewhere in the skinnier designs.</p>
<h3>dConstruct</h3>
<p><a href="http://www.webdesigndev.com/wp-content/uploads/2011/12/dConstruct.jpg"><img class="aligncenter size-full wp-image-9098" src="http://www.webdesigndev.com/wp-content/uploads/2011/12/dConstruct.jpg" alt="dConstruct" width="740" height="202" /></a></p>
<p><a title="dConstruct" href="http://2011.dconstruct.org/" target="_blank">dConstruct</a> is a stunning example of dynamic images that are resized on the fly. As you drag the window left and right you will see that the padding between images isn’t what’s adjusting in width and size, but the images themselves are. Once you hit a certain parameter all of the images resize to a smaller, or larger depending on if you’re shrinking or expanding the site, version to accommodate the screen size.</p>
<h3>Clean Air Challenge</h3>
<div id="in_post_ad_middle_1" style="margin: 5px;padding: 0px;"><a href="http://www.wix.com/amazingwebsites/editoreasy?utm_campaign=af_webdesigndev.com&experiment_id=af_webdesigndev.com1middlepostnewLP" target="_blank" rel="nofollow">
<img src="http://www.webdesigndev.com/expressions_website3.gif" width="300" height="250" alt="create a free website" /></a></div><p><a href="http://www.webdesigndev.com/wp-content/uploads/2011/12/cleanAir.jpg"><img class="aligncenter size-full wp-image-9097" src="http://www.webdesigndev.com/wp-content/uploads/2011/12/cleanAir.jpg" alt="Clean Air Challenge" width="740" height="187" /></a></p>
<p>Last week I talked about <a title="sites with parallax scrolling" href="http://www.webdesigndev.com/inspiration/10-awesome-parallax-scrolling-sites" target="_blank">sites with parallax scrolling</a> and this <a title="Clean Air Challenge" href="http://clearairchallenge.com/" target="_blank">Clean Air Challenge</a> site just barely missed making my list. The site itself isn’t totally parallax scrolling, just the clouds in the background are. However, the site is an excellent example of responsive web design. Another aspect of this site that I liked was that the only images that you lose once you hit the mobile sized version of the site is the repeat of the main navigation icons that appear in the footer.</p>
<h3>Sasquatch Music Festival</h3>
<p><a href="http://www.webdesigndev.com/wp-content/uploads/2011/12/sasquatch.jpg"><img class="aligncenter size-full wp-image-9102" src="http://www.webdesigndev.com/wp-content/uploads/2011/12/sasquatch.jpg" alt="Sasquatch Music Festival" width="740" height="205" /></a></p>
<p><a title="Sasquatch" href="http://sasquatchfestival.com/" target="_blank">Sasquatch</a> is an annual music festival in my neck of the woods featuring some big name artists. When I came across their site and saw that it’s as fun to look at as the bands they book are to listen to, I was quite excited. This site sticks out from a lot of the others for me because of all the colors, images, icons and overall sense of style it has to offer. A lot of the responsive websites I come across seem to be heavy on text, light on imagery, and only two or three colors throughout the site.</p>
<h3>Flexslider</h3>
<p><a href="http://www.webdesigndev.com/wp-content/uploads/2011/12/flexSlider.jpg"><img class="aligncenter size-full wp-image-9099" src="http://www.webdesigndev.com/wp-content/uploads/2011/12/flexSlider.jpg" alt="Flexslider" width="740" height="177" /></a></p>
<p>It only seems fitting that <a title="Flexslider" href="http://flex.madebymufffin.com/" target="_blank">Flexslider</a> also has a flexible website to promote their handy jQuery image slider. And what better way to get people interested in the slider than to use pictures of cupcakes to show off how it works! One of the best things this site has going for it is that you don’t lose a single thing between widescreen mode and mobile mode, all icons, images, elements, comments, and everything stay there. This way visitor’s don’t feel cheated between missing out on content if they’re browsing the site from their mobile device or desktop computer.</p>
<h3>The Cacao Trail</h3>
<p><a href="http://www.webdesigndev.com/wp-content/uploads/2011/12/cacaoTour.jpg"><img class="aligncenter size-full wp-image-9096" src="http://www.webdesigndev.com/wp-content/uploads/2011/12/cacaoTour.jpg" alt="The Cacao Trail" width="891" height="224" /></a></p>
<p>I can only imagine that <a title="The Cacao Trail website" href="http://www.cacaotour.com/index.php/en/home" target="_blank">The Cacao Trail website</a> is almost as enjoyable to navigate as the actual trail is. You lose the main image on this site as soon as you go from widescreen down to a more traditional sized monitor, which I don’t mind as the image doesn’t really do too much for me and it would certainly save you a lot of load time on a mobile device. I do like how the main navigation links enlarge once you hit the mobile sized version, it can get to be a bit of an annoyance trying to touch tiny words to navigate a site on your touch screen mobile device.</p>
<h3>Alsacreations</h3>
<p><a href="http://www.webdesigndev.com/wp-content/uploads/2011/12/alsacreations.jpg"><img class="aligncenter size-full wp-image-9095" src="http://www.webdesigndev.com/wp-content/uploads/2011/12/alsacreations.jpg" alt="" width="740" height="199" /></a></p>
<p><a title="Alsacreations" href="http://www.alsacreations.fr/" target="_blank">Alsacreations</a> took another interesting approach to their responsive web design. Rather than worrying about keeping all aspects and elements of their site intact between different resolutions, they simply focused on what was important and dropped the bells and whistles. From widescreen to square they dropped their image slider, then from square to mobile they dropped all elements except their “About” blurb and their email form, while including links to everything else.</p>
<p>I like sites that maintain their appearance, at least to some degree, all the way down the resolution latter. But I also understand that specific industries and target audiences come in to play. In some industries a person may only be viewing a site from their mobile device to find that companies contact info. In those instances it’s probably best that’s what they get from your mobile sized home page as soon as it loads, you can always include links at the bottom to everything else. I would encourage you to help your clients figure out what’s best for them, and keep all monitor sizes and internet browsing devices in mind as you’re developing your next project.</p>
<p>About the author: with over ten years in the freelance web design and writing fields, Scott Stanton has had his finger on the beating pulse of the industry&#8217;s hottest design trends and bends for the past decade. Scott regularly writes for Wix.com the free <a title="website builder" href="http://www.wix.com/website/builder?utm_campaign=se_gb_webdesigndev.com&amp;experiment_id=FWB" target="_blank">website builder</a>.  Follow him on Twitter @TheScottStanton.</p>
<div style='clear:both'></div>]]></content:encoded>
			<wfw:commentRss>http://www.webdesigndev.com/web-development/10-incredible-examples-of-responsive-web-design/feed</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>Untangling the CSS3 :not Selector</title>
		<link>http://www.webdesigndev.com/web-development/untangling-css3-not-selector</link>
		<comments>http://www.webdesigndev.com/web-development/untangling-css3-not-selector#comments</comments>
		<pubDate>Mon, 19 Dec 2011 00:39:33 +0000</pubDate>
		<dc:creator>David F. Weiss</dc:creator>
				<category><![CDATA[Web Development]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[CSS 3]]></category>
		<category><![CDATA[CSS 3 Techniques]]></category>
		<category><![CDATA[CSS3 Article]]></category>
		<category><![CDATA[Useful CSS 3 Tips]]></category>

		<guid isPermaLink="false">http://www.webdesigndev.com/?p=9111</guid>
		<description><![CDATA[The CSS3 :not selector may not be as flashy nor widely known as animations or media queries, but this simple pseudo-class packs a punch and is easy to use. Before we dig in, I&#8217;d like to point out (no pun intended) the excellent CSS reference section on the SitePoint website. You&#8217;ll find a nice description [...]]]></description>
			<content:encoded><![CDATA[<p>The CSS3 :not selector may not be as flashy nor widely known as animations or media queries, but this simple pseudo-class packs a punch and is easy to use. Before we dig in, I&#8217;d like to point out (no pun intended) the excellent <a href="http://reference.sitepoint.com/css/pseudoclass-not" target="_blank">CSS reference section</a> on the SitePoint website. You&#8217;ll find a nice description and browser compatibility table for the :not selector, as well as information about the other CSS3 pseudo-classes, like :nth-child, :last-child and :checked.</p>
<h3>Why :not?</h3>
<p>The :not pseudo-class is easy to use and if you&#8217;re at all familiar with the jQuery version of this selector, then you should feel right at home. Let&#8217;s take a look at the following example.</p>
<pre><code>p.intro {
    color:#333;
    line-height:1.5em;
    margin-bottom:1.25em;
}
p:not(.intro) {
    color:#444;
    font-size:.875em;
    line-height:1.3em;
    margin-bottom:1em;
    width:80%;
}</code></pre>
<p>Notice the second rule, which uses the :not selector. What this CSS3 pseudo-class does is first select all paragraphs, then exclude any paragraphs with the <strong>intro</strong> class. In other words, what comes before :not will be targeted and what comes after :not in parentheses will be excluded. You can target whatever elements you want, however there are some restrictions on what you can and cannot negate. Unsurprisingly, you can&#8217;t use the :not selector within a :not selector. And you also can&#8217;t use a pseudo element like <strong>p:before</strong>, not to be confused with pseudo-classes like <strong>li:last-child</strong>, which thankfully you can use. What&#8217;s nice about the :not selector is that we can really focus in on a specific group of elements, style them and not have to worry about the elements that were excluded. Now that you know a little more about this pseudo-class, I&#8217;d like to share two of my favorite uses for the CSS3 :not selector.</p>
<h3>List of Links</h3>
<div id="in_post_ad_middle_1" style="margin: 5px;padding: 0px;"><a href="http://www.wix.com/amazingwebsites/editoreasy?utm_campaign=af_webdesigndev.com&experiment_id=af_webdesigndev.com1middlepostnewLP" target="_blank" rel="nofollow">
<img src="http://www.webdesigndev.com/expressions_website3.gif" width="300" height="250" alt="create a free website" /></a></div><pre><code>li:not(:last-child) {
    border-right:1px solid #000;
}</code></pre>
<p><img class="alignnone size-full wp-image-9185" src="http://www.webdesigndev.com/wp-content/uploads/2011/12/not-selector-1.png" alt="CSS3 :not selector example 1" width="559" height="100" /></p>
<h3>Form Fields</h3>
<pre><code>input:not([type=checkbox]) {
    border:1px solid #999;
    border-radius:3px;
    color:#aaa;
    padding:4px 2px;
    width:40%;
}</code></pre>
<p><img class="alignnone size-full wp-image-9190" src="http://www.webdesigndev.com/wp-content/uploads/2011/12/not-selector-2.png" alt="CSS3 :not selector example 2" width="559" height="215" /><br />
How have you been using the CSS3 :not pseudo-class? Leave a comment below or tell me on <a href="http://twitter.com/dfweiss" target="_blank">Twitter</a>.</p>
<hr />
<a href="http://dfweiss.com/" target="_blank">David F. Weiss</a> is a Front-End Web Designer/Developer &amp; Web Enthusiast, who lives and works in Connecticut, USA. He is passionate about the web and spends way too many hours in front of a computer and not enough time with his wife and little princess.</p>
<div style='clear:both'></div>]]></content:encoded>
			<wfw:commentRss>http://www.webdesigndev.com/web-development/untangling-css3-not-selector/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CSS3 Buttons For Every Web Browser</title>
		<link>http://www.webdesigndev.com/web-development/css3-buttons-for-every-web-browser</link>
		<comments>http://www.webdesigndev.com/web-development/css3-buttons-for-every-web-browser#comments</comments>
		<pubDate>Fri, 19 Aug 2011 14:29:58 +0000</pubDate>
		<dc:creator>David F. Weiss</dc:creator>
				<category><![CDATA[Web Development]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[CSS 3]]></category>
		<category><![CDATA[Web Design Tutorials]]></category>
		<category><![CDATA[Website Button Tutorial]]></category>

		<guid isPermaLink="false">http://www.webdesigndev.com/?p=7920</guid>
		<description><![CDATA[The age of using images for buttons on websites is quickly coming to an end, thanks to expanded browser support for CSS3 properties like rounded corners, gradients and text shadows. Browsers, like Firefox and Safari, actually started supporting some of these properties long before CSS3 became a buzzword, but now with IE slowly getting into [...]]]></description>
			<content:encoded><![CDATA[<p>The age of using images for buttons on websites is quickly coming to an end, thanks to expanded browser support for CSS3 properties like rounded corners, gradients and text shadows. Browsers, like Firefox and Safari, actually started supporting some of these properties long before CSS3 became a buzzword, but now with IE slowly getting into the game, there are no more excuses. Pure CSS buttons are easy to design, implement and manage — welcoming words to any front-end web developer!</p>
<p>I&#8217;ll show you, step by step, how to create CSS buttons, but if you&#8217;d like to view the demo now and grab the code, <a href="http://dfweiss.com/demos/css3-buttons/" target="_blank">here it is</a>. Of course, there are plenty of websites out there where you can generate a CSS3 button in seconds. My favorite is <a href="http://css3.me" target="_blank">CSS3 Generator</a>. Although, you don&#8217;t really learn from a generator, so we&#8217;ll build a CSS button from scratch and better understand how it works.</p>
<h3>Input &amp; Anchor Tag</h3>
<p>In most cases, you&#8217;ll use either the <em>input</em> or <em>anchor</em> tag to display a button that will either trigger an action on the current page or send the visitor off to another page. Let&#8217;s go ahead and write the markup for our two elements.<br />
<code><br />
&lt;input type="submit" value="Accept" class="btn" /&gt;<br />
&lt;a href="#" class="btn"&gt;Decline&lt;/a&gt;<br />
</code></p>
<p>Notice that we&#8217;re using the CSS class <strong>btn</strong>. This will be our base CSS class for our buttons. In an effort to keep object oriented CSS in mind, we&#8217;ll first create a simple class of <strong>btn</strong>, which all of our buttons will inherit and then extend that with additional classes for color and size differences.</p>
<h3>CSS Round 1</h3>
<p>First, let&#8217;s set some elemental properties on the <strong>btn</strong> class. This is mostly to override default browser styling of the elements and lay the groundwork for a button-like design.<br />
<code> </code></p>
<pre><code>     .btn {
          /* Round 1 */
          border:1px solid #666;
          cursor:pointer;
          display:block;
          margin:10px auto 0;
          padding:5px;
          text-align:center;
          text-decoration:none;
          width:140px;
     }</code></pre>
<p><code> </code></p>
<p><img class="aligncenter size-full wp-image-7987" src="http://www.webdesigndev.com/wp-content/uploads/2011/08/css3-buttons-css-1.png" alt="" width="650" height="121" /></p>
<h3>CSS Round 2</h3>
<p>Now, for the fun part, let&#8217;s style these <em>input</em> and <em>anchor</em> tags and turn them into buttons, using  the border radius, gradient, and text shadow properties, along with a few others for good measure.<br />
<code> </code></p>
<pre><code>     .btn {
          /* Round 1 */
          border:1px solid #666;
          cursor:pointer;
          display:block;
          margin:10px auto 0;
          padding:5px;
          text-align:center;
          text-decoration:none;
          width:140px;
          /* Round 2 */
          -moz-border-radius:15px;
          -webkit-border-radius:15px;
          background:#20c167;
          background-image:-moz-linear-gradient(top, #20c167, #157f44);
          background-image:-o-linear-gradient(top, #20c167, #157f44);
          background-image:-webkit-gradient(linear, center top, center bottom,
               from(#20c167), to(#157f44));
          background-image:linear-gradient(top, #20c167, #157f44);
          border-radius:15px;
          color:#FFF;
          font-size:.75em;
          font-weight:bold;
          text-shadow:-1px -1px 0 #444;
     }</code></pre>
<p><code> </code></p>
<p>As you can see below, our CSS3 buttons are taking shape. The gradient, rounded corners and text shadow combine to create one sexy button, if I must say so.<img class="aligncenter size-full wp-image-7989" src="http://www.webdesigndev.com/wp-content/uploads/2011/08/css3-buttons-css-2.png" alt="" width="650" height="117" /></p>
<h3>CSS Round 3</h3>
<p>Let&#8217;s extend the <strong>btn</strong> class with one called <strong>decline</strong>, which we&#8217;ll use to, you guessed it, style the decline button. If we use our base button class to cover the browser overrides and general button styles, then we can use semantically named classes to change the button&#8217;s size, color and anything else we need to.<br />
<code> </code></p>
<div id="in_post_ad_middle_1" style="margin: 5px;padding: 0px;"><a href="http://www.wix.com/amazingwebsites/editoreasy?utm_campaign=af_webdesigndev.com&experiment_id=af_webdesigndev.com1middlepostnewLP" target="_blank" rel="nofollow">
<img src="http://www.webdesigndev.com/expressions_website3.gif" width="300" height="250" alt="create a free website" /></a></div><pre><code>     .decline {
          background:#ad232e;
	  background-image:-moz-linear-gradient(top, #ff3443, #ad232e);
	  background-image:-o-linear-gradient(top, #ff3443, #ad232e);
	  background-image:-webkit-gradient(linear, center top, center bottom,
               from(#ff3443), to(#ad232e));
          background-image:linear-gradient(top, #ff3443, #ad232e);
          width:90px;
     }</code></pre>
<p><code> </code></p>
<p><img class="aligncenter size-full wp-image-7991" src="http://www.webdesigndev.com/wp-content/uploads/2011/08/css3-buttons-css-3.png" alt="" width="650" height="117" /></p>
<p>Now we&#8217;re cookin&#8217;! Our decline button is a little smaller and has a nice red gradient. By using this approach, creating all sorts of buttons for your website should be no big deal. Just use a base class like <strong>btn</strong> and then extend it with custom classes to create different buttons.</p>
<h3>What about IE?</h3>
<p>Before you stop reading and start creating CSS3 buttons, we should probably talk about IE. Funny how that browser always wiggles its way into CSS discussions. Now, Microsoft does have its own proprietary gradient filter, but I&#8217;m not the biggest fan of using it. Instead, to make our buttons more cross-browser compatible, we&#8217;ll use a 1 pixel background image.<code> </code></p>
<pre><code>     .btn {
          background:#20c167 url(btnAccept-default.gif) repeat-x left bottom;
     }
     .decline {
          background:#ff3443 url(btnDecline-default.gif) repeat-x left bottom;
     }</code></pre>
<p><code> </code></p>
<p><img class="aligncenter size-full wp-image-7999" src="http://www.webdesigndev.com/wp-content/uploads/2011/08/css3-buttons-ie.png" alt="" width="600" height="200" /></p>
<p>With our gradient background image in place, we have an okay looking button in IE7/IE8 and a pretty nice one in IE9. Unfortunately, there still isn&#8217;t text shadow support in IE9, but at least we have rounded corners.</p>
<h3>Finishing Touches</h3>
<p>Lastly, for a nice button press effect, we&#8217;ll reverse the gradient colors on the active state of the element.<br />
<code> </code></p>
<pre><code>     .btn:active {
          background:#157f44;
	  background-image:-moz-linear-gradient(top, #157f44, #20c167);
	  background-image:-o-linear-gradient(top, #157f44, #20c167);
          background-image:-webkit-gradient(linear, center top, center bottom,
               from(#157f44), to(#20c167));
	  background-image:linear-gradient(top, #157f44, #20c167);
     }</code></pre>
<p><code> </code></p>
<p>So there you have it — a great looking button styled with the latest CSS3 properties that works in all the major browsers. For a closer look at the code, <a href="http://dfweiss.com/demos/css3-buttons/" target="_blank">view the demo</a>. Thanks for reading and feel free to leave comments or questions!</p>
<hr /><a href="http://dfweiss.com/" target="_blank">David F. Weiss</a> is a Front-End Web Designer/Developer &amp; Web Enthusiast, who lives and works in Connecticut, USA. He is passionate about the web and spends way too many hours in front of a computer and not enough time with his wife and little princess.</p>
<div style='clear:both'></div>]]></content:encoded>
			<wfw:commentRss>http://www.webdesigndev.com/web-development/css3-buttons-for-every-web-browser/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using disk: basic (Feed is rejected)
Page Caching using disk: basic
Object Caching 1148/1225 objects using disk: basic

Served from: www.webdesigndev.com @ 2012-02-09 15:05:26 -->
