<?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>WebDesign&#38;Such</title>
	<atom:link href="http://webdesignandsuch.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://webdesignandsuch.com</link>
	<description>a Beantown Design Production</description>
	<lastBuildDate>Thu, 17 May 2012 23:40:44 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>Change Howdy Text in WordPress 3.3</title>
		<link>http://webdesignandsuch.com/change-howdy-text-in-wordpress-3-3/</link>
		<comments>http://webdesignandsuch.com/change-howdy-text-in-wordpress-3-3/#comments</comments>
		<pubDate>Fri, 13 Apr 2012 14:30:20 +0000</pubDate>
		<dc:creator>mike ilz</dc:creator>
				<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://webdesignandsuch.com/?p=3381</guid>
		<description><![CDATA[Who says "Howdy"? Nobody other than your WordPress admin. Here is how to change the howdy text in WordPress 3.3 and up.]]></description>
			<content:encoded><![CDATA[<p>I previously showed how to change the &#8220;Howdy&#8221; text in the top right of the WordPress admin. This code worked great until WordPress 3.3. After that update you need different code to change the howdy text in WordPress 3.3, here is the code to use in your functions.php file.</p>
<pre class="brush: php; title: ; notranslate">// Change howdy text in WordPress 3.3
add_action( 'admin_bar_menu', 'wp_admin_bar_my_custom_account_menu', 11 );

function wp_admin_bar_my_custom_account_menu( $wp_admin_bar ) {
$user_id = get_current_user_id();
$current_user = wp_get_current_user();
$profile_url = get_edit_profile_url( $user_id );

if ( 0 != $user_id ) {
/* Add the &quot;My Account&quot; menu */
$avatar = get_avatar( $user_id, 28 );
$howdy = sprintf( __('Welcome Back, %1$s'), $current_user-&gt;display_name );
$class = empty( $avatar ) ? '' : 'with-avatar';

$wp_admin_bar-&gt;add_menu( array(
'id' =&gt; 'my-account',
'parent' =&gt; 'top-secondary',
'title' =&gt; $howdy . $avatar,
'href' =&gt; $profile_url,
'meta' =&gt; array(
'class' =&gt; $class,
),
) );

}
}</pre>
<p><a href="http://www.wpbeginner.com/wp-tutorials/how-to-change-the-howdy-text-in-wordpress-3-3-admin-bar/" target="_blank">Code source </a></p>
<p style="height:30px">
]]></content:encoded>
			<wfw:commentRss>http://webdesignandsuch.com/change-howdy-text-in-wordpress-3-3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Register Multiple Custom Menus in WordPress</title>
		<link>http://webdesignandsuch.com/how-to-register-multiple-custom-menus-in-wordpress/</link>
		<comments>http://webdesignandsuch.com/how-to-register-multiple-custom-menus-in-wordpress/#comments</comments>
		<pubDate>Thu, 12 Apr 2012 14:14:11 +0000</pubDate>
		<dc:creator>mike ilz</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[Slider]]></category>

		<guid isPermaLink="false">http://webdesignandsuch.com/?p=3240</guid>
		<description><![CDATA[WordPress custom menus are one of the best features released within the last few years by the WordPress team. But what if you need to add multiple menus (perhaps separate header and footer navigation menus)? Here's how you add multiple custom menus in WordPress.]]></description>
			<content:encoded><![CDATA[<p>WordPress custom menus are one of the best features released within the last few years by the WordPress team. The easy drag and drop editor makes it a breeze to add pages, categories, or even external links without the use of any plugins. But what if you need to add multiple menus (perhaps separate header and footer navigation menus)? Here&#8217;s how you add multiple custom menus in WordPress.</p>
<p>Add the following to your functions.php file. The 2 menus we are creating are the &#8220;Primary&#8221;, and &#8220;Secondary&#8221; menus.</p>
<pre class="brush: php; title: ; notranslate">//Register Navigations
add_action( 'init', 'my_custom_menus' );
function my_custom_menus() {
    register_nav_menus(
        array(
            'primary-menu' =&gt; __( 'Primary Menu' ),
            'secondary-menu' =&gt; __( 'Secondary Menu' )
        )
    );
}
</pre>
<p>To add them to your site you need to add the following to your WordPress template files <em>(most likely your header.php and footer.php files)</em>. I also added the code which allows you to change the CSS class for the nav bars.</p>
<pre class="brush: php; title: ; notranslate">
&lt;?php wp_nav_menu (array('theme_location' =&gt; 'primary-menu','menu_class' =&gt; 'nav'));?&gt;
&lt;?php wp_nav_menu (array('theme_location' =&gt; 'secondary-menu','menu_class' =&gt; 'nav'));?&gt;
</pre>
<p style="height:100px">
]]></content:encoded>
			<wfw:commentRss>http://webdesignandsuch.com/how-to-register-multiple-custom-menus-in-wordpress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Post filler text if the_content is empty WordPress</title>
		<link>http://webdesignandsuch.com/post-filler-text-if-the_content-empty-wordpres/</link>
		<comments>http://webdesignandsuch.com/post-filler-text-if-the_content-empty-wordpres/#comments</comments>
		<pubDate>Tue, 21 Feb 2012 13:11:30 +0000</pubDate>
		<dc:creator>mike ilz</dc:creator>
				<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://webdesignandsuch.com/?p=3373</guid>
		<description><![CDATA[Coding a WordPress theme the other day I realized it would be nice if blank pages had filler content until somebody posted content to the page. This helps to visualize the site and pages better. So if the_content is empty, add filler content..when it is not empty replace the filler content with the real content.]]></description>
			<content:encoded><![CDATA[<p>Coding a WordPress theme the other day I realized it would be nice if blank pages had filler content until somebody posted content to the page. This helps to visualize the site and pages better. So if the_content is empty, add filler content..when it is not empty replace the filler content with the real content. Here is the solution:</p>
<pre class="brush: php; title: ; notranslate">
&lt;?php
$cc = get_the_content();
if($cc != '') { ?&gt;
&lt;?php the_content(); ?&gt;
&lt;?php } else { ?&gt;
&lt;p&gt;My filler content goes here.&lt;/p&gt;
&lt;?php } ?&gt;
</pre>
<p>Source: <a href="http://wordpress.org/support/topic/if-content-exists" target="_blank">http://wordpress.org/support/topic/if-content-exists</a></p>
]]></content:encoded>
			<wfw:commentRss>http://webdesignandsuch.com/post-filler-text-if-the_content-empty-wordpres/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Redirect to a Mobile Site with .htaccess and Set a Cookie to Break Redirect</title>
		<link>http://webdesignandsuch.com/redirect-to-a-mobile-site-with-htaccess-and-set-a-cookie-to-break-redirect/</link>
		<comments>http://webdesignandsuch.com/redirect-to-a-mobile-site-with-htaccess-and-set-a-cookie-to-break-redirect/#comments</comments>
		<pubDate>Sat, 14 Jan 2012 17:50:37 +0000</pubDate>
		<dc:creator>mike ilz</dc:creator>
				<category><![CDATA[Coding]]></category>
		<category><![CDATA[htaccess]]></category>
		<category><![CDATA[JQuery]]></category>
		<category><![CDATA[Mobile]]></category>
		<category><![CDATA[Slider]]></category>

		<guid isPermaLink="false">http://webdesignandsuch.com/?p=3341</guid>
		<description><![CDATA[What good is a mobile website if you can't get people to it? By using a .htaccess file and setting a cookie you can direct people on mobile devices to your mobile website, and allow them to then visit your full site without being redirected.]]></description>
			<content:encoded><![CDATA[<p>Recently mobile websites have become extremely popular and important in the web development world. The days of people having crappy flip phones with no internet or javascript are over. People have quality phones now, so having a mobile optimized website is no longer a luxury but a necessity.</p>
<p>If you&#8217;re looking into developing a mobile website for your business or for your client make sure to checkout my mobile website and theme pack &#8220;emdot&#8221;, available <a href="http://goo.gl/d1TJL" target="_blank">exclusively on ThemeForest</a>. For only $9 you get a fully functioning mobile site with 12 different themes, a validating contact form, a portfolio with mobile touch, an &#8220;add to home bubble&#8221; for iPhones and iPads, 50+ icons for the navigation, 20 social media icons, and a bunch more. Simply pop in your content and you&#8217;re ready to go. Well almost ready to go, the last thing you&#8217;re going to need is to redirect people to your new mobile website.</p>
<p>Redirecting people to your mobile website is easy enough by using a .htaccess file. Basically you say &#8220;if people visiting my website are on a mobile device send them to http://m.example.com, and if they aren&#8217;t on a mobile device send them to http://example.com&#8221;. This of course assumes that you setup a subdomain located at &#8220;m.example.com&#8221;.</p>
<p>After setting this up for a client I realized one problem with this. When setting up your mobile website you should have a link in the footer allowing the user to visit your full website (you most likely have some content on your full website that you don&#8217;t have on your mobile website). Your link would look something like this: </p>
<pre class="brush: plain; title: ; notranslate">&lt;a href=&quot;http://example.com&quot;&gt;Visit full site&lt;/a&gt;</pre>
<p> Easy enough, except for one thing.. we redirected the users from the main site to the mobile site. So if they click the &#8220;visit full site&#8221; link they will be redirected back to the mobile site again. </p>
<p>The solution is to set a cookie which allows you to visit the full site without being redirected. Setting the cookie allows you to go from the mobile site to the full site, and visit any page on the full site once you&#8217;re there without being redirected back to the mobile site.</p>
<h4 style="margin-bottom:5px">Step 1.</h4>
<p> Setup your mobile site at http://m.example.com</p>
<h4 style="margin-bottom:5px">Step 2.</h4>
<p> Add the following link to your mobile site: </p>
<pre class="brush: plain; title: ; notranslate">&lt;a href=&quot;http://www.example.com?m=0&quot;&gt;Full Website&lt;/a&gt;</pre>
<p>*If you&#8217;re using jQuery mobile (such as the <a href="http://goo.gl/d1TJL" target="_blank">emdot theme</a>), you may need to add rel=&#8221;external&#8221; to your link, like this:</p>
<pre class="brush: plain; title: ; notranslate">&lt;a rel=&quot;external&quot; href=&quot;http://www.example.com?m=0&quot;&gt;Full Website&lt;/a&gt;</pre>
<h4 style="margin-bottom:5px">Step 3.</h4>
<p> Create a .htaccess file (which is just a regular file such as a .txt files renamed .htaccess). Add the following code and replace the 2 domain names. Upload the file to the root of your website. If you already have a .htaccess file simply add this code to the existing file.</p>
<p><em>*Notes: Make sure you don&#8217;t overwrite your existing .htaccess file by accident. This only works on Apache servers.</em></p>
<pre class="brush: plain; title: ; notranslate">RewriteEngine on
RewriteBase /

# Check if this is the noredirect query string
RewriteCond %{QUERY_STRING} (^|&amp;)m=0(&amp;|$)
# Set a cookie, and skip the next rule
RewriteRule ^ - [CO=mredir:0:www.example.com]

RewriteCond %{HTTP:x-wap-profile} !^$ [OR]
RewriteCond %{HTTP:Profile}       !^$ [OR]
RewriteCond %{HTTP_USER_AGENT} &quot;acs|alav|alca|amoi|audi|aste|avan|benq|bird|blac|blaz|brew|cell|cldc|cmd-&quot; [NC,OR]
RewriteCond %{HTTP_USER_AGENT} &quot;dang|doco|eric|hipt|inno|ipaq|java|jigs|kddi|keji|leno|lg-c|lg-d|lg-g|lge-&quot; [NC,OR]
RewriteCond %{HTTP_USER_AGENT}  &quot;maui|maxo|midp|mits|mmef|mobi|mot-|moto|mwbp|nec-|newt|noki|opwv&quot; [NC,OR]
RewriteCond %{HTTP_USER_AGENT} &quot;palm|pana|pant|pdxg|phil|play|pluc|port|prox|qtek|qwap|sage|sams|sany&quot; [NC,OR]
RewriteCond %{HTTP_USER_AGENT} &quot;sch-|sec-|send|seri|sgh-|shar|sie-|siem|smal|smar|sony|sph-|symb|t-mo&quot; [NC,OR]
RewriteCond %{HTTP_USER_AGENT} &quot;teli|tim-|tosh|tsm-|upg1|upsi|vk-v|voda|w3cs|wap-|wapa|wapi&quot; [NC,OR]
RewriteCond %{HTTP_USER_AGENT} &quot;wapp|wapr|webc|winw|winw|xda|xda-&quot; [NC,OR]
RewriteCond %{HTTP_USER_AGENT} &quot;up.browser|up.link|windowssce|iemobile|mini|mmp&quot; [NC,OR]
RewriteCond %{HTTP_USER_AGENT} &quot;symbian|midp|wap|phone|pocket|mobile|pda|psp&quot; [NC]
RewriteCond %{HTTP_USER_AGENT} !macintosh [NC]

# Check if we're not already on the mobile site
RewriteCond %{HTTP_HOST}          !^m\.
# Can not read and write cookie in same request, must duplicate condition
RewriteCond %{QUERY_STRING} !(^|&amp;)m=0(&amp;|$) 

# Check to make sure we haven't set the cookie before
RewriteCond %{HTTP_COOKIE}        !^.*mredir=0.*$ [NC]

# Now redirect to the mobile site
RewriteRule ^ http://m.example.com [R,L]</pre>
<p><em>Credit.</em> I tried a few different scripts to find a solution that worked for me, and the above script was the winner. The original script came from <a href="http://stackoverflow.com/questions/3680463/mobile-redirect-using-htaccess" target="_blank">this thread</a> on Stack Overflow.</p>
]]></content:encoded>
			<wfw:commentRss>http://webdesignandsuch.com/redirect-to-a-mobile-site-with-htaccess-and-set-a-cookie-to-break-redirect/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress 3.3 &#8220;Sonny&#8221; Released Improved User Experience</title>
		<link>http://webdesignandsuch.com/wordpress-3-3-sonny-released-improved-user-experience/</link>
		<comments>http://webdesignandsuch.com/wordpress-3-3-sonny-released-improved-user-experience/#comments</comments>
		<pubDate>Tue, 13 Dec 2011 13:38:46 +0000</pubDate>
		<dc:creator>mike ilz</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://webdesignandsuch.com/?p=3318</guid>
		<description><![CDATA[WordPress 3.3 &#8220;named &#8216;Sonny&#8217; in honor of the great jazz saxophonist Sonny Stitt&#8221; has just been released. The most noticeable improvements improve the user experience. New fly out menus save [...]]]></description>
			<content:encoded><![CDATA[<p>WordPress 3.3 &#8220;<em>named &#8216;Sonny&#8217; in honor of the great jazz saxophonist Sonny Stitt</em>&#8221; has just been released. The most noticeable improvements improve the user experience. New fly out menus save room in the admin. As a developer I&#8217;m excited about the new editor API, which makes it easy to create popup pointer-tips to point out to certain things in the admin (help clients find custom features).</p>
<p>The dashboard experience has been improved for iPads and other tablets, which will help people on the move. Other features of the dashboard include a responsive design of some elements, HTML5 doctype, a new dashboard welcome feature and new help tabs. A new drag-and-drop feature has made uploading different types of content a breeze.</p>
<p>This latest release is exciting for developers worldwide, and reminds me how happy I am to be part of the WordPress community.</p>
]]></content:encoded>
			<wfw:commentRss>http://webdesignandsuch.com/wordpress-3-3-sonny-released-improved-user-experience/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Link to the Root Directory of a WordPress Theme</title>
		<link>http://webdesignandsuch.com/link-to-root-directory-wordpress-theme/</link>
		<comments>http://webdesignandsuch.com/link-to-root-directory-wordpress-theme/#comments</comments>
		<pubDate>Mon, 12 Dec 2011 15:00:55 +0000</pubDate>
		<dc:creator>mike ilz</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://webdesignandsuch.com/?p=3305</guid>
		<description><![CDATA[Here's how to quickly link to the root directory of your WordPress theme with PHP.]]></description>
			<content:encoded><![CDATA[<p>When coding a WordPress theme you&#8217;re obviously going to need to link scripts to your theme files. If you were going to link directly a file it would look something like this:</p>
<pre class="brush: php; title: ; notranslate">&lt;script src='http://mydomain.com/wp-content/themes/mytheme/js/slider.js'&gt;&lt;/script&gt;</pre>
<p>Luckily there is a quicker way to link directly to these files. The following PHP snippet links directly to the root of your theme:</p>
<pre class="brush: php; title: ; notranslate">&lt;?php bloginfo('template_directory'); ?&gt;</pre>
<p>So to link to the same example file as above you would do this:</p>
<pre class="brush: php; title: ; notranslate">&lt;script src='&lt;?php bloginfo('template_directory'); ?&gt;/js/slider.js'&gt;&lt;/script&gt;</pre>
<p>This is obviously easier, less code, and if you move your WordPress install or change the theme name the link will still be correct.</p>
]]></content:encoded>
			<wfw:commentRss>http://webdesignandsuch.com/link-to-root-directory-wordpress-theme/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Using fancyBox for Responsive Google Maps</title>
		<link>http://webdesignandsuch.com/using-fancybox-for-responsive-google-maps/</link>
		<comments>http://webdesignandsuch.com/using-fancybox-for-responsive-google-maps/#comments</comments>
		<pubDate>Fri, 09 Dec 2011 15:30:37 +0000</pubDate>
		<dc:creator>mike ilz</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[Resources]]></category>
		<category><![CDATA[Fancybox]]></category>
		<category><![CDATA[Google Maps]]></category>
		<category><![CDATA[JQuery]]></category>
		<category><![CDATA[Responsive]]></category>

		<guid isPermaLink="false">http://webdesignandsuch.com/?p=3276</guid>
		<description><![CDATA[The latest release of fancyBox is responsive, so now your maps can auto adjust based on your browser window size!]]></description>
			<content:encoded><![CDATA[<p>The popular jQuery lightbox fancyBox recently had a major overhaul. The new version has better transitions, more options, and most importantly a <strong>responsive layout</strong>.</p>
<p>One great way to use fancyBox is to open Google Maps over your webpage. If you need to have a map but don&#8217;t have enough room on the page to embed the map you can integrate fancyBox with Google Maps and open the enlarged map when you click on a link. Checkout the demo and download. Since this latest release of fancyBox is responsive the frame around the map resizes based on the size of the browser window! <img src='http://webdesignandsuch.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
<div class="postButtons">
<div class="double"><a href="http://webdesignandsuch.com/posts/fancybox-download/google-maps-fancybox/fancybox-google-maps.html" class="demo">Demo</a><a href="http://webdesignandsuch.com/posts/fancybox-download/google-maps-fancybox/fancybox-g-maps.zip" class="download">Download</a></div>
</div>
<p><strong>Note:</strong> The new version of fancyBox has different licensing, be sure to visit the website for full details to make sure you are using it correctly, and for all the customization details.</p>
<p><a href="http://fancyapps.com/fancybox/" target="_blank">http://fancyapps.com/fancybox/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://webdesignandsuch.com/using-fancybox-for-responsive-google-maps/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Responsive YouTube Videos with fancyBox</title>
		<link>http://webdesignandsuch.com/responsive-youtube-videos-with-fancybox/</link>
		<comments>http://webdesignandsuch.com/responsive-youtube-videos-with-fancybox/#comments</comments>
		<pubDate>Thu, 08 Dec 2011 14:30:09 +0000</pubDate>
		<dc:creator>mike ilz</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[Resources]]></category>
		<category><![CDATA[Fancybox]]></category>
		<category><![CDATA[JQuery]]></category>
		<category><![CDATA[Responsive]]></category>
		<category><![CDATA[YouTube]]></category>

		<guid isPermaLink="false">http://webdesignandsuch.com/?p=3257</guid>
		<description><![CDATA[The newest version of fancyBox has a responsive layout, making it the perfect solution for your responsive YouTube video needs.]]></description>
			<content:encoded><![CDATA[<p>In a <a href="http://wp.me/p11izc-oK">previous post</a> I showed how to use fancyBox with YouTube videos. Responsive website layouts are the hottest thing on the web right now, which has left developers looking for solutions for responsive sliders and galleries. Luckily a new version of fancyBox was recently released, one of the major updates being the ability to resize images or videos depending on the screen size!</p>
<p><strong>Old FancyBox video / browser large.</strong><br />
<img src="http://webdesignandsuch.com/wp-content/uploads/responsive-videos-1.jpg" alt="fancybox youtube videos" title="fancybox youtube videos" width="575" height="465" class="alignnone size-full wp-image-3259" /></p>
<p><strong>Old FancyBox video / browser small (and cutoff). <img src='http://webdesignandsuch.com/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' /> </strong><img src="http://webdesignandsuch.com/wp-content/uploads/responsive-videos-2.jpg" alt="using fancybox with youtube videos" title="using fancybox with youtube videos" width="400" height="371" class="alignnone size-full wp-image-3260" /></p>
<p><strong>New FancyBox video / browser large.</strong><br />
<img src="http://webdesignandsuch.com/wp-content/uploads/responsive-videos-4.jpg" alt="responsive youtube" title="responsive youtube" width="575" height="381" class="alignnone size-full wp-image-3261" /></p>
<p><strong>New FancyBox video / browser small (and auto resized!). <img src='http://webdesignandsuch.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </strong><img src="http://webdesignandsuch.com/wp-content/uploads/responsive-videos-3.jpg" alt="youtube with fancybox" title="youtube with fancybox" width="400" height="294" class="alignnone size-full wp-image-3262" /></p>
<div class="postButtons">
<div class="double"><a href="http://webdesignandsuch.com/posts/fancybox-download/responsive-youtube-videos/fancybox-youtube.html" class="demo">Demo</a><a href="http://webdesignandsuch.com/posts/fancybox-download/responsive-youtube-videos/fancybox-youtube-videos.zip" class="download">Download</a></div>
</div>
<p><strong>Note:</strong> The new version of fancyBox has different licensing, be sure to visit the website for full details to make sure you are using it correctly, and for all the customization details.</p>
<p><a href="http://fancyapps.com/fancybox/" target="_blank">http://fancyapps.com/fancybox/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://webdesignandsuch.com/responsive-youtube-videos-with-fancybox/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>fancyBox 2 Responsive Lightbox Download</title>
		<link>http://webdesignandsuch.com/fancybox-2-responsive-lightbox-download/</link>
		<comments>http://webdesignandsuch.com/fancybox-2-responsive-lightbox-download/#comments</comments>
		<pubDate>Wed, 07 Dec 2011 19:30:46 +0000</pubDate>
		<dc:creator>mike ilz</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[Resources]]></category>

		<guid isPermaLink="false">http://webdesignandsuch.com/?p=3250</guid>
		<description><![CDATA[The popular jQuery lightbox fancyBox recently had a major overhaul. The new version has better transitions, more options, and most importantly a responsive layout! I've packaged all the required files into one easy to use download.]]></description>
			<content:encoded><![CDATA[<p>The popular jQuery lightbox fancyBox recently had a major overhaul. The new version has better transitions, more options, and most importantly a <strong>responsive layout</strong> (an enlarged image will resize to fit in the screen as the screen is resized)! </p>
<p>The website for fancyBox tells you how to add all the files to make everything work, but doesn&#8217;t have a simple, packaged together download. Since I use fanyBox on a fairly regular basis I need to have a simple package ready to go. I&#8217;ve created this, and am offering it to everyone to use.</p>
<div class="postButtons">
<div class="double"><a href="http://webdesignandsuch.com/posts/fancybox-download/fancyBox2/" class="demo">Demo</a><a href="http://webdesignandsuch.com/posts/fancybox-download/fancyBox2/fancybox-download.zip" class="download">Download</a></div>
</div>
<p><strong>Note:</strong> The new version of fancyBox has different licensing, be sure to visit the website for full details to make sure you are using it correctly, and for all the customization details.</p>
<p><a href="http://fancyapps.com/fancybox/" target="_blank">http://fancyapps.com/fancybox/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://webdesignandsuch.com/fancybox-2-responsive-lightbox-download/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>10 Awesome jQuery Responsive Sliders, Galleries &amp; Plugins</title>
		<link>http://webdesignandsuch.com/responsive-sliders-images-galleries-plugins-jquery/</link>
		<comments>http://webdesignandsuch.com/responsive-sliders-images-galleries-plugins-jquery/#comments</comments>
		<pubDate>Thu, 01 Dec 2011 11:42:50 +0000</pubDate>
		<dc:creator>mike ilz</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[Resources]]></category>
		<category><![CDATA[CSS3]]></category>
		<category><![CDATA[JQuery]]></category>
		<category><![CDATA[Responsive]]></category>
		<category><![CDATA[Slider]]></category>

		<guid isPermaLink="false">http://webdesignandsuch.com/?p=2855</guid>
		<description><![CDATA[Responsive website layouts have become increasingly popular. What are developers supposed to do about sliders and galleries when developing a responsive website? Here are 10 great solutions.]]></description>
			<content:encoded><![CDATA[<p>Responsive website layouts have become extremely popular recently due to the increasing support of desktop browsers and the increasing variety of browser sizes on other devices (tablets and phones). A responsive layout shrinks to fit whatever screen it&#8217;s on, making the website the correct size depending on the screen size. Many design blog owners have switched their blogs over to a responsive layout. A blog is mostly text and images, making this process rather easy. </p>
<p>The idea of creating responsive websites for real world business websites raises a few questions. The main question many designers and developers had (including myself) was <strong>&#8220;What about image galleries and sliders?&#8221;</strong>. Most websites have moved away from Flash in the last few years, many Flash animations being replaced by jQuery sliders. So how do you deal with a slider when developing a responsive website? Until now that left most people scratching their heads, but recently there have been some great responsive image sliders, galleries and plugins released.. so let me introduce <strong>my roundup of the 10 best responsive image sliders and galleries you can use on your website today</strong><em>(in no special order)</em>.. enjoy!</p>
<h2>1. <a href="http://flex.madebymufffin.com/" target="_blank">FlexSlider</a></h2>
<p><a href="http://flex.madebymufffin.com/" target="_blank"><img src="http://webdesignandsuch.com/wp-content/uploads/responsive-jquery-slider.jpg" alt="responsive jquery slider"  width="575" height="410" class="alignnone size-full wp-image-3191" /></a></p>
<h2>2. <a href="http://marktyrrell.com/labs/blueberry/" target="_blank">Blueberry</a></h2>
<p><a href="http://marktyrrell.com/labs/blueberry/" target="_blank"><img src="http://webdesignandsuch.com/wp-content/uploads/responsive-jquery-images.jpg" alt="responsive jquery images" width="575" height="223" class="alignnone size-full wp-image-3188" /></a></p>
<h2>3. <a href="http://tympanus.net/Tutorials/ResponsiveImageGallery/" target="_blank">Responsive Image Gallery</a></h2>
<p><a href="http://tympanus.net/Tutorials/ResponsiveImageGallery/" target="_blank"><img src="http://webdesignandsuch.com/wp-content/uploads/responsive-thumbnail-gallery.jpg" alt="responsive thumbnail gallery"  width="575" height="361" class="alignnone size-full wp-image-3192" /></a></p>
<h2>4. <a href="http://responsiveslides.com/" target="_blank">Responsive jQuery Slideshow</a></h2>
<p><a href="http://responsiveslides.com/" target="_blank"><img src="http://webdesignandsuch.com/wp-content/uploads/responsive-jquery-slideshow.jpg" alt="responsive jquery slideshow" width="575" height="397" class="alignnone size-full wp-image-3187" /></a></p>
<h2>5. <a href="http://goo.gl/06Knw" target="_blank">UnoSlider</a></h2>
<p><a href="http://goo.gl/06Knw" target="_blank"><img src="http://webdesignandsuch.com/wp-content/uploads/responsive-jquery-image-slider.jpg" alt="responsive jquery image slider"  width="575" height="272" class="alignnone size-full wp-image-3185" /></a></p>
<h2>6. <a href="http://tympanus.net/Development/Elastislide/" target="_blank">Elastislide</a></h2>
<p><a href="http://tympanus.net/Development/Elastislide/" target="_blank"><img src="http://webdesignandsuch.com/wp-content/uploads/jquery-responsive-plugin.jpg" alt="jquery responsive plugin"  width="575" height="185" class="alignnone size-full wp-image-3190" /></a></p>
<h2>7. <a href="http://www.photoswipe.com/" target="_blank">Photoswipe</a></h2>
<p><a href="http://www.photoswipe.com/" target="_blank"><img src="http://webdesignandsuch.com/wp-content/uploads/responsive-image-gallery.jpg" alt="responsive image gallery"  width="575" height="384" class="alignnone size-full wp-image-3189" /></a></p>
<h2>8. <a href="http://www.matmarquis.com/carousel/" target=_blank">Responsive jQuery Carousel</a></h2>
<p><a href="http://www.matmarquis.com/carousel/" target=_blank"><img src="http://webdesignandsuch.com/wp-content/uploads/responsive-carousel.jpg" alt="responsive jquery carousel"  width="575" height="291" class="alignnone size-full wp-image-3183" /></a></p>
<h2>9. <a href="http://css-tricks.com/13372-seamless-responsive-photo-grid/" target="_blank">Seamless Responsive Photo Grid</a></h2>
<p><a href="http://css-tricks.com/13372-seamless-responsive-photo-grid/" target="_blank"><img src="http://webdesignandsuch.com/wp-content/uploads/responsive-image-grid.jpg" alt="responsive image grid"  width="575" height="407" class="alignnone size-full wp-image-3186" /></a></p>
<h2>10. <a href="http://johnpolacek.github.com/ResponsiveThumbnailGallery/" target="_blank">responsive thumbnail image gallery plugin</a></h2>
<p><a href="http://johnpolacek.github.com/ResponsiveThumbnailGallery/" target="_blank"><img src="http://webdesignandsuch.com/wp-content/uploads/responsive-gallery-thumbnail.jpg" alt="responsive thumbnail image gallery plugin"  width="575" height="322" class="alignnone size-full wp-image-3194" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://webdesignandsuch.com/responsive-sliders-images-galleries-plugins-jquery/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

