<?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>Creative Defines Me</title>
	<atom:link href="http://www.markskowrondesign.com/blog/?feed=rss2" rel="self" type="application/rss+xml" />
	<link>http://www.markskowrondesign.com/blog</link>
	<description>a blog about web design, print design, and more</description>
	<lastBuildDate>Fri, 11 May 2012 16:12:33 +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>Convert your site to be mobile-friendly using CSS media queries</title>
		<link>http://www.markskowrondesign.com/blog/?p=99</link>
		<comments>http://www.markskowrondesign.com/blog/?p=99#comments</comments>
		<pubDate>Fri, 11 May 2012 16:07:29 +0000</pubDate>
		<dc:creator>Mark Skowron</dc:creator>
				<category><![CDATA[Web Design]]></category>

		<guid isPermaLink="false">http://www.markskowrondesign.com/blog/?p=99</guid>
		<description><![CDATA[If you have a site that&#8217;s already created and you want it to look good on a mobile phone or tablet, this post is for you. Lately, I&#8217;ve been getting into optimizing my some of sites for mobile using CSS media queries. One such example is this site: www.weconnect.com If you visit the site using [...]]]></description>
			<content:encoded><![CDATA[<p>If you have a site that&#8217;s already created and you want it to look good on a mobile phone or tablet, this post is for you. Lately, I&#8217;ve been getting into optimizing my some of sites for mobile using CSS media queries. One such example is this site: <a href="http://www.weconnect.com/">www.weconnect.com</a></p>
<p>If you visit the site using your normal desktop browser, you&#8217;ll see this:</p>
<div id="attachment_100" class="wp-caption alignleft" style="width: 610px"><a href="http://www.markskowrondesign.com/blog/wp-content/uploads/2012/05/wide.jpg"><img class="size-full wp-image-100" title="wide" src="http://www.markskowrondesign.com/blog/wp-content/uploads/2012/05/wide.jpg" alt="" width="600" height="431" /></a><p class="wp-caption-text">Here&#39;s a look at weconnect.com in it&#39;s normal desktop design</p></div>
<p>Taking your browser window, try reducing the width of the window horizontally. It should look something like this:</p>
<div id="attachment_101" class="wp-caption alignleft" style="width: 610px"><a href="http://www.markskowrondesign.com/blog/wp-content/uploads/2012/05/small-view.jpg"><img class="size-full wp-image-101" title="small-view" src="http://www.markskowrondesign.com/blog/wp-content/uploads/2012/05/small-view.jpg" alt="" width="600" height="442" /></a><p class="wp-caption-text">Here&#39;s a look at the website with a condensed window to about the size of a mobile phone screen.</p></div>
<h2></h2>
<h2></h2>
<h2></h2>
<p>As you can see in the example, quite a lot of things changed when I made my screen smaller.</p>
<ol>
<li>The main navigation disappeared</li>
<li>The image of the laptop went above the headline</li>
<li>The fonts became smaller and more suitable for a small screen.</li>
<li>The bottom navigation became more mobile friendly</li>
</ol>
<p>So, how did I do it?</p>
<h2>Getting Started</h2>
<h4>Download HTML5 boilerplate</h4>
<p>First, I went to the HTML5 boilerplate site for mobile. This will set you up with everything you need to to make your site mobile-friendly: <a href="http://html5boilerplate.com/mobile">http://html5boilerplate.com/mobile</a> By implementing the mobile boilerplate, I was able to get the correct meta tags and css I needed to ensure my site looks great on smaller windows.</p>
<h4>CSS media queries</h4>
<p>I&#8217;m not going to lie. Being a designer first and a developer second, I was a bit freaked out by the idea of media queries. It wasn&#8217;t until I began to dig into them that it all began to finally click. It&#8217;s really a simple concept – using CSS, media queries basically detect the pixel width of your browser display, and change the CSS declarations to modify your design to better fit the page.</p>
<p>At the bottom of the boilerplate CSS file, you&#8217;ll notice an area for Media Queries. This is where you place all the styles that make your site look normal at a certain browser size. I pasted all of my site&#8217;s CSS into this area and set the media query like so:</p>
<pre>@media only screen and (min-width: 974px) {</pre>
<p>So at 974px screen size, everything on my site should look as I designed it. Everything ABOVE the media query section should be the CSS that makes the site look good at a smaller resolution. </p>
<p>To start, I set my browser window width to the default iPhone screen resolution to start with (320&#215;480). Then I inspected my code with Firebug (you can use whatever inspection tool you want) and started changing my CSS to make everything look nice on the smaller screen resolution. As I made CSS changes, I made a duplicate of my existing code, edited what I needed, and put that CSS ABOVE my media query. </p>
<h4>Careful now</h4>
<p>As I went along, I was careful to periodically check the site at the full browser resolution to make sure my styles weren&#8217;t overriding anything and breaking the design. I also made sure that I didn&#8217;t duplicate a lot of code. Some of my CSS could be used at the 320px browser size AND at the 974px size. So as I went along, I started stripping out CSS from my media query that could be used for any browser size and pasting it in the area above the media queries. By the end of the project, my media queries section only contained the styles that were necessary for making the site look normal at the 974px size.</p>
<p>Hopefully this gives you a good starting point as to how to dig into CSS media queries. </p>
]]></content:encoded>
			<wfw:commentRss>http://www.markskowrondesign.com/blog/?feed=rss2&#038;p=99</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>InDesign CS5 Quick Tip: Disable Content Grabber</title>
		<link>http://www.markskowrondesign.com/blog/?p=90</link>
		<comments>http://www.markskowrondesign.com/blog/?p=90#comments</comments>
		<pubDate>Tue, 01 Nov 2011 14:18:36 +0000</pubDate>
		<dc:creator>Mark Skowron</dc:creator>
				<category><![CDATA[Print Design]]></category>

		<guid isPermaLink="false">http://www.markskowrondesign.com/blog/?p=90</guid>
		<description><![CDATA[If you&#8217;re like me, and you&#8217;re used to the way Adobe InDesign handles images within the bounding box, CS5 will be a little annoying in this department. InDesign CS5 introduced the &#8220;Content Grabber&#8221;, which is described as follows on their website: The content grabber appears as a circle when you hover over an image using [...]]]></description>
			<content:encoded><![CDATA[<p>If you&#8217;re like me, and you&#8217;re used to the way Adobe InDesign handles images within the bounding box, CS5 will be a little annoying in this department. InDesign CS5 introduced the &#8220;Content Grabber&#8221;, which is described as follows on their website:</p>
<blockquote><p><em>The content grabber appears as a circle when you hover over an image using the Selection tool. Use the content grabber to select and move the content of a frame with the Selection tool still selected. This behavior effectively replaces that of the Position tool, which is removed from InDesign CS5. If you rotate the content with the frame, a horizontal line appears in the center of the content grabber. This line mirrors the rotation angle of the content. The content grabber draws over each frame that is part of a group. Use the Selection tool to reposition content within a frame that is part of the group.</em></p></blockquote>
<p>It&#8217;s useful to the beginner, I suppose. But too often I found myself clicking and dragging on a bounding box expecting to move the object, only to move the content <em>within</em> the object instead. </p>
<p><strong>Disabling content grabber</strong><br />
If you&#8217;re like me and you want to disable content grabber altogether, simply go to to &#8220;View -> Extras -> Hide Content Grabber&#8221;.</p>
<p><img src="http://www.markskowrondesign.com/blog/wp-content/uploads/2011/11/Screen-Shot-2011-11-01-at-9.16.jpg" alt="Disable Content Grabber in InDesign CS5" title="Disable Content Grabber" width="575" height="475" class="alignleft size-full wp-image-95" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.markskowrondesign.com/blog/?feed=rss2&#038;p=90</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Dynatrap Insect Eliminator</title>
		<link>http://www.markskowrondesign.com/blog/?p=83</link>
		<comments>http://www.markskowrondesign.com/blog/?p=83#comments</comments>
		<pubDate>Tue, 13 Sep 2011 15:36:55 +0000</pubDate>
		<dc:creator>Mark Skowron</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.markskowrondesign.com/blog/?p=83</guid>
		<description><![CDATA[Dynatrap needed a new website and marketing materials to help display their new line of mosquito-fighting products. Mark Skowron Design was able to assist them by completely gutting their old site and starting over with a sleek new look, a streamlined navigation system, and an organized way to showcase each product. Dynatrap home page: Features [...]]]></description>
			<content:encoded><![CDATA[<p>Dynatrap needed a new website and marketing materials to help display their new line of mosquito-fighting products. Mark Skowron Design was able to assist them by completely gutting their old site and starting over with a sleek new look, a streamlined navigation system, and an organized way to showcase each product.</p>
<p><img class="alignleft size-full wp-image-84" title="Dynatrap home page" src="http://www.markskowrondesign.com/blog/wp-content/uploads/2011/09/homepage.jpg" alt="Dynatrap home page" width="600" height="480" /></p>
<p><strong>Dynatrap home page</strong>: Features rotating product images and colorful links to learn more information.</p>
<p><img class="alignleft size-full wp-image-88" title="Testimonials" src="http://www.markskowrondesign.com/blog/wp-content/uploads/2011/09/testimonials.jpg" alt="Dynatrap Testimonials" width="600" height="647" /></p>
<p><strong>Testimonials page</strong>: Features rotating customer testimonials and a navigation menu to learn more about each product.</p>
<p><img class="alignleft size-full wp-image-85" title="How it works" src="http://www.markskowrondesign.com/blog/wp-content/uploads/2011/09/howitworks.jpg" alt="" width="600" height="671" /></p>
<p><strong>How it works page</strong>: Video and photo descriptions about how the Dynatrap works.</p>
<p><img class="alignleft size-full wp-image-86" title="Product Menu" src="http://www.markskowrondesign.com/blog/wp-content/uploads/2011/09/productmenu.jpg" alt="" width="600" height="484" /></p>
<p><strong>Product navigation</strong>: Interactive navigation menu for selecting products. Features a pop-up when each image is hovered over, showing key product specifications.</p>
<p><img src="http://www.markskowrondesign.com/blog/wp-content/uploads/2011/09/productpage.jpg" alt="" title="Product Page" width="600" height="1076" class="alignleft size-full wp-image-87" /></p>
<p><strong>Product page</strong>: Organized information is displayed in a unique way with a specific marketing message for each product.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.markskowrondesign.com/blog/?feed=rss2&#038;p=83</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Mark Neumann for Governor</title>
		<link>http://www.markskowrondesign.com/blog/?p=68</link>
		<comments>http://www.markskowrondesign.com/blog/?p=68#comments</comments>
		<pubDate>Wed, 18 May 2011 15:43:16 +0000</pubDate>
		<dc:creator>Mark Skowron</dc:creator>
				<category><![CDATA[Web Design]]></category>

		<guid isPermaLink="false">http://www.markskowrondesign.com/blog/?p=68</guid>
		<description><![CDATA[Here&#8217;s a closer look at the website for Mark Neumann for Governor. A review of our site: One of the most interactive GOP websites we&#8217;ve seen. You can create your own account and keep track of upcoming events near you, join and keep up with campaign groups, and organize your own online fundraising efforts. … [...]]]></description>
			<content:encoded><![CDATA[<p>Here&#8217;s a closer look at the website for Mark Neumann for Governor.</p>
<div id="attachment_80" class="wp-caption alignleft" style="width: 610px"><img src="http://www.markskowrondesign.com/blog/wp-content/uploads/2011/05/index11.jpg" alt="" title="index1" width="600" height="378" class="size-full wp-image-80" /><p class="wp-caption-text">The home page</p></div>
<div id="attachment_74" class="wp-caption alignleft" style="width: 610px"><img src="http://www.markskowrondesign.com/blog/wp-content/uploads/2011/05/index4.jpg" alt="" title="index4" width="600" height="710" class="size-full wp-image-74" /><p class="wp-caption-text">Home page - used in the weeks leading to elections</p></div>
<div id="attachment_76" class="wp-caption alignleft" style="width: 610px"><img src="http://www.markskowrondesign.com/blog/wp-content/uploads/2011/05/dashboard1.jpg" alt="" title="dashboard" width="600" height="1636" class="size-full wp-image-76" /><p class="wp-caption-text">Dashboard </p></div>
<div id="attachment_77" class="wp-caption alignleft" style="width: 610px"><img src="http://www.markskowrondesign.com/blog/wp-content/uploads/2011/05/mainstreet1.jpg" alt="" title="mainstreet" width="600" height="682" class="size-full wp-image-77" /><p class="wp-caption-text">Mark on Main Street</p></div>
<div id="attachment_78" class="wp-caption alignleft" style="width: 610px"><img src="http://www.markskowrondesign.com/blog/wp-content/uploads/2011/05/gotv1.jpg" alt="" title="gotv" width="600" height="599" class="size-full wp-image-78" /><p class="wp-caption-text">Get out the Vote </p></div>
<p><strong>A review of our site:</strong><br />
One of the most interactive GOP websites we&#8217;ve seen. You can create your own account and keep track of upcoming events near you, join and keep up with campaign groups, and organize your own online fundraising efforts. … This is a beautiful website with excellent functionality.&#8221; &#8211; estampede.org</p>
]]></content:encoded>
			<wfw:commentRss>http://www.markskowrondesign.com/blog/?feed=rss2&#038;p=68</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mark Skowron Design has been redesigned</title>
		<link>http://www.markskowrondesign.com/blog/?p=65</link>
		<comments>http://www.markskowrondesign.com/blog/?p=65#comments</comments>
		<pubDate>Fri, 04 Mar 2011 20:09:35 +0000</pubDate>
		<dc:creator>Mark Skowron</dc:creator>
				<category><![CDATA[Web Design]]></category>
		<category><![CDATA[redesign]]></category>
		<category><![CDATA[website]]></category>

		<guid isPermaLink="false">http://www.markskowrondesign.com/blog/?p=65</guid>
		<description><![CDATA[A creative twist has been made on my site. Over the past month, I&#8217;ve been working on the redesign of my website. From my logo to my portfolio, everything has undergone a facelift. Take a look around and let me know what you think!]]></description>
			<content:encoded><![CDATA[<p>A creative twist has been made on my site. Over the past month, I&#8217;ve been working on the redesign of my website. From my logo to my portfolio, everything has undergone a facelift. Take a look around and let me know what you think!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.markskowrondesign.com/blog/?feed=rss2&#038;p=65</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to add bleed to a Photoshop file</title>
		<link>http://www.markskowrondesign.com/blog/?p=44</link>
		<comments>http://www.markskowrondesign.com/blog/?p=44#comments</comments>
		<pubDate>Thu, 21 Oct 2010 13:03:32 +0000</pubDate>
		<dc:creator>Mark Skowron</dc:creator>
				<category><![CDATA[Print Design]]></category>
		<category><![CDATA[bleed]]></category>
		<category><![CDATA[Photoshop]]></category>

		<guid isPermaLink="false">http://markskowrondesign.com/blog/?p=44</guid>
		<description><![CDATA[Have you ever created a file in Photoshop and realized you need to add bleed around it? While page layout programs like InDesign are built to handle bleeds relatively easily, Photoshop, by comparison, is much more time-consuming. If you&#8217;re like me, you used to add bleed by starting with a desired document size. Then you&#8217;d [...]]]></description>
			<content:encoded><![CDATA[<p>Have you ever created a file in Photoshop and realized you need to add bleed around it? While page layout programs like InDesign are built to handle bleeds relatively easily, Photoshop, by comparison, is much more time-consuming.</p>
<p>If you&#8217;re like me, you used to add bleed by starting with a desired document size. Then you&#8217;d have to calculate bleed around the edges, add it to the document size, and create a new Photoshop file. Then you&#8217;d carefully draw guides 1/8&#8243; or .125&#8243; (or 9 pts if you&#8217;re using picas) all the way around the document. Guides are important. We want those. But for those creating a document on the fly, this may be a little more time-consuming than we&#8217;d like.</p>
<h3>The solution</h3>
<p>Create a document at the desired size. For example, 8.5 x 11 inches. Draw 4 new guides by dragging 2 down from the ruler on top, and 2 across from the ruler on the left &#8211; and have them snap to the very edge of the document, all the way around.</p>
<p><a href="http://www.markskowrondesign.com/blog/wp-content/uploads/2010/10/Picture-41.jpg"><img src="http://www.markskowrondesign.com/blog/wp-content/uploads/2010/10/Picture-41.jpg" alt="Photoshop guides" title="Guides" width="600" height="615" class="alignleft size-full wp-image-49" /></a></p>
<p>Then go to Image -> Canvas Size, and add .25 inches to the width and height of your canvas. IMPORTANT: Make sure the anchor is set to &#8220;Centered&#8221;. In our case, the dialog box will look like this:</p>
<p><a href="http://www.markskowrondesign.com/blog/wp-content/uploads/2010/10/Picture-51.jpg"><img src="http://www.markskowrondesign.com/blog/wp-content/uploads/2010/10/Picture-51.jpg" alt="Canvas Size" title="resize" width="613" height="621" class="alignleft size-full wp-image-50" /></a></p>
<p>Then simple click &#8220;OK&#8221; and your document will be perfectly sized with the bleed added! The guides stay in the place that you drew them (marking the document&#8217;s edge), but the size of the document is now larger to account for the bleed. This is especially useful when I&#8217;m placing a Photoshop file into InDesign at 100%.</p>
<h3>Final document with bleed added:</h3>
<p><a href="http://www.markskowrondesign.com/blog/wp-content/uploads/2010/10/Picture-61.jpg"><img src="http://www.markskowrondesign.com/blog/wp-content/uploads/2010/10/Picture-61.jpg" alt="Bleed added" title="bleed" width="582" height="666" class="alignleft size-full wp-image-53" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.markskowrondesign.com/blog/?feed=rss2&#038;p=44</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Storefront banner design</title>
		<link>http://www.markskowrondesign.com/blog/?p=30</link>
		<comments>http://www.markskowrondesign.com/blog/?p=30#comments</comments>
		<pubDate>Fri, 28 May 2010 11:33:35 +0000</pubDate>
		<dc:creator>Mark Skowron</dc:creator>
				<category><![CDATA[Print Design]]></category>
		<category><![CDATA[banner design]]></category>
		<category><![CDATA[storefront]]></category>

		<guid isPermaLink="false">http://markskowrondesign.com/blog/?p=30</guid>
		<description><![CDATA[The challenge: Create custom storefront banners for my client, a real estate firm in Chicago. This task was particularly difficult, as I had to not only design attractive banners that conveyed my client&#8217;s message, but one of the banners had to be designed to wrap around a flat-screen TV in their window. Some of the [...]]]></description>
			<content:encoded><![CDATA[<p><strong>The challenge:</strong> Create custom storefront banners for my client, a real estate firm in Chicago. This task was particularly difficult, as I had to not only design attractive banners that conveyed my client&#8217;s message, but one of the banners had to be designed to wrap around a flat-screen TV in their window.</p>
<div id="attachment_31" class="wp-caption alignleft" style="width: 604px"><a href="http://www.markskowrondesign.com/blog/wp-content/uploads/2010/05/11.jpg"><img class="size-full wp-image-31" title="Storefront before" src="http://www.markskowrondesign.com/blog/wp-content/uploads/2010/05/11.jpg" alt="" width="594" height="446" /></a><p class="wp-caption-text">This is the storefront before the banners were designed. The unique challenge would be to create a banner that wraps around the TV in the right window.</p></div>
<p>Some of the problems we initially ran into was deciding on the correct banner material. I chose to print it on a cloth-like material that was light-weight and allows light to still come into the office. This was a big concern for the client, since these windows are their only source of natural light. Other options for material would have been heavy vinyl (that wouldn&#8217;t let any light in), or adhesive vinyl (the type that goes on city buses). This would have let plenty of light in, but the print quality would have looked horrible up-close, and the client needed something that could be removed easily. So the cloth material was our best solution.</p>
<p><strong>The Design</strong></p>
<p>The client&#8217;s number one goal was to increase foot traffic in their office. Located in the heart of Chicago just blocks from the Trump Tower, their office is in a prime location, being on street level. These banners would be seen by thousands of people as they walk by.</p>
<div id="attachment_32" class="wp-caption alignleft" style="width: 604px"><a href="http://www.markskowrondesign.com/blog/wp-content/uploads/2010/05/21.jpg"><img class="size-full wp-image-32" title="Left Window" src="http://www.markskowrondesign.com/blog/wp-content/uploads/2010/05/21.jpg" alt="" width="594" height="237" /></a><p class="wp-caption-text">The left window design focuses on their commercial real estate services.</p></div>
<div id="attachment_33" class="wp-caption alignleft" style="width: 604px"><a href="http://www.markskowrondesign.com/blog/wp-content/uploads/2010/05/31.jpg"><img class="size-full wp-image-33" title="Right Window" src="http://www.markskowrondesign.com/blog/wp-content/uploads/2010/05/31.jpg" alt="" width="594" height="513" /></a><p class="wp-caption-text">The right window design focuses on their residential real estate services. (Notice the black rectangle in the middle represents the area where the TV would be.)</p></div>
<p>Below are photos of the final finished product:</p>
<div id="attachment_34" class="wp-caption alignleft" style="width: 604px"><a href="http://www.markskowrondesign.com/blog/wp-content/uploads/2010/05/41.jpg"><img class="size-full wp-image-34" title="Storefront" src="http://www.markskowrondesign.com/blog/wp-content/uploads/2010/05/41.jpg" alt="" width="594" height="389" /></a><p class="wp-caption-text">The storefront with the new banners installed. Although there is a glare, the signs are still very visible when pedestrians walk by.</p></div>
<div id="attachment_35" class="wp-caption alignleft" style="width: 604px"><a href="http://www.markskowrondesign.com/blog/wp-content/uploads/2010/05/52.jpg"><img class="size-full wp-image-35" title="Left banner" src="http://www.markskowrondesign.com/blog/wp-content/uploads/2010/05/52.jpg" alt="" width="594" height="398" /></a><p class="wp-caption-text">The left banner</p></div>
<div id="attachment_37" class="wp-caption alignleft" style="width: 604px"><a href="http://www.markskowrondesign.com/blog/wp-content/uploads/2010/05/91.jpg"><img class="size-full wp-image-37" title="Right window" src="http://www.markskowrondesign.com/blog/wp-content/uploads/2010/05/91.jpg" alt="" width="594" height="396" /></a><p class="wp-caption-text">The right window banner</p></div>
<div id="attachment_38" class="wp-caption alignleft" style="width: 604px"><a href="http://www.markskowrondesign.com/blog/wp-content/uploads/2010/05/71.jpg"><img class="size-full wp-image-38" title="Inside view" src="http://www.markskowrondesign.com/blog/wp-content/uploads/2010/05/71.jpg" alt="" width="594" height="396" /></a><p class="wp-caption-text">The view from the inside shows how the banner lets light through.</p></div>
<p><a href="http://www.markskowrondesign.com/blog/wp-content/uploads/2010/05/81.jpg"><img class="alignleft size-full wp-image-39" title="Inside view" src="http://www.markskowrondesign.com/blog/wp-content/uploads/2010/05/81.jpg" alt="" width="594" height="402" /></a></p>
<p>At the end of the day, the client was extremely happy and the project was a success. Foot traffic increased dramatically in the first week, and these banners will hopefully draw in plenty of business in the coming years.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.markskowrondesign.com/blog/?feed=rss2&#038;p=30</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Readability Basics</title>
		<link>http://www.markskowrondesign.com/blog/?p=13</link>
		<comments>http://www.markskowrondesign.com/blog/?p=13#comments</comments>
		<pubDate>Wed, 31 Mar 2010 10:56:44 +0000</pubDate>
		<dc:creator>Mark Skowron</dc:creator>
				<category><![CDATA[Print Design]]></category>
		<category><![CDATA[design basics]]></category>
		<category><![CDATA[readability]]></category>
		<category><![CDATA[typesetting]]></category>

		<guid isPermaLink="false">http://markskowrondesign.com/blog/?p=13</guid>
		<description><![CDATA[Whether it&#8217;s a design for web or print, one question I&#8217;m constantly asking myself is &#8220;Will the reader be able to read this?&#8221;. This might sound like a dumb question at first, but there&#8217;s a lot of factors that will make or break your design when it comes to readability. Understanding some simple basics will [...]]]></description>
			<content:encoded><![CDATA[<p>Whether it&#8217;s a design for web or print, one question I&#8217;m constantly asking myself is &#8220;Will the reader be able to read this?&#8221;. This might sound like a dumb question at first, but there&#8217;s a lot of factors that will make or break your design when it comes to readability. Understanding some simple basics will ensure that your readers stay focused on what you have to say – without losing their attention.</p>
<h3>Before we begin</h3>
<p>Let&#8217;s talk about readers. Readers are a fickle bunch. You will never get everyone, everywhere, at all times, to read every word you write. It simply will never happen. Most people are too busy and too impatient to stop and read everything. The fact is, only 10% of people read everything you write, 80% read some things, but lose interest easily, and 10% read nothing. The 80% group of readers are who I&#8217;m focused on in this article. These are the readers that will decide whether or not to read your design in a split-second after viewing it. And the other 20% you ask? Well, there&#8217;s no changing them, so our job is pretty easy when it comes to those readers. Ok, so on to the basics.</p>
<h3>Organize information using headlines and subheads.</h3>
<p>This is pretty self-explanatory. Your headline should be a larger font than your body text. It should be simple and to-the-point. Your reader should be able to grasp the idea of a section by simply reading the headline. Headlines serve as an attention-getter, pulling your reader in and allowing them to read the text. The more well-written your headline, the greater chance your reader will be drawn to the rest of what you have to say.</p>
<p>Similarly, your subhead should be written the same way, although it can be slightly longer. I personally like to keep the font size significantly smaller than the headline, but larger than the paragraph text. Subheads can be bold or regular in weight – do whatever looks best.</p>
<p><a href="http://www.markskowrondesign.com/blog/wp-content/uploads/2010/03/11.gif"><img src="http://www.markskowrondesign.com/blog/wp-content/uploads/2010/03/11.gif" alt="Headline, subhead, and paragraph example" title="Headline, subhead, and paragraph example" width="594" height="234" class="size-full wp-image-21" /></a></p>
<h3>Paragraphs: Font Size, Line Spacing, and Line Length</h3>
<p>When styling your main text, here are a few thoughts to keep in mind:</p>
<p><strong>Font size</strong><br/></p>
<p>When determining font sizes, your first question should be &#8220;who&#8217;s my target audience&#8221;? For younger readers, try to keep your paragraph font size smaller. For older readers with poorer eyesight, I tend to increase the font size by a couple points, but still be careful to not make it too large. For print, the default size of most word-processing programs is 12 point text. For web, this is a very normal font size. However, for print I usually go much smaller. Of course, it depends on what font you&#8217;re using, but anything between 9 and 11 points will do for most copy-heavy publications.</p>
<p><strong>Line Spacing (leading)</strong><br/><br />
Leading refers to the amount of added vertical space between lines of text. Most word-processing programs set the default leading at 2 points more than the font size. For the most part, the default setting looks fine. However, depending on which font you&#8217;re using and how large or small the point size is, you may want to experiment with different sized leading from time-to-time. Bumping up the leading by a couple points can sometimes set your design apart and really make it stand out. Just be careful not to increase the leading too much. Line spacing that is too large will often detract from readability.</p>
<p><a href="http://www.markskowrondesign.com/blog/wp-content/uploads/2010/03/21.gif"><img src="http://www.markskowrondesign.com/blog/wp-content/uploads/2010/03/21.gif" alt="Leading and line length example" title="Leading and line length example" width="594" height="234" class="size-full wp-image-22" /></a></p>
<p><strong>Line length</strong><br/><br />
The human eye, at normal reading distances, can only focus on a small area at a time. With long line lengths, the muscles in the eye tend to strain, as they have to move more to follow from the end of a line to the start of the next line. Also, as line length increases, retention decreases, since it&#8217;s easier for readers to accidentally skip a line or lose their place. Ideally, keep your columns shorter in width to avoid these problems. There are many studies and opinions on line length, and there isn&#8217;t one set answer that will apply for every situation. This <a href="http://desktoppub.about.com/cs/finetypography/ht/line_length.htm">article</a> talks about several formulas you can try on your own to determine proper line length. Just remember, balance is key. If you feel uncomfortable reading it, then your line length might be too long or too short.</p>
<p>Keeping in mind, a few simple rules will help your text get noticed and read by more people. In my next article, I hope to get more in-depth about some typesetting do&#8217;s and don&#8217;ts. Stay tuned!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.markskowrondesign.com/blog/?feed=rss2&#038;p=13</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Understanding typography when choosing fonts</title>
		<link>http://www.markskowrondesign.com/blog/?p=9</link>
		<comments>http://www.markskowrondesign.com/blog/?p=9#comments</comments>
		<pubDate>Thu, 04 Mar 2010 14:39:33 +0000</pubDate>
		<dc:creator>Mark Skowron</dc:creator>
				<category><![CDATA[Print Design]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[fonts]]></category>
		<category><![CDATA[typography]]></category>

		<guid isPermaLink="false">http://markskowrondesign.com/blog/?p=9</guid>
		<description><![CDATA[With almost every design project, there comes a point where you have to choose fonts. With thousands of fonts to choose from, this can be a daunting task. While there are many styles to choose from, fonts are most commonly distinguished from one another by whether they are serif or sans-serif. Serif fonts are fonts [...]]]></description>
			<content:encoded><![CDATA[<p>With almost every design project, there comes a point where you have to choose fonts. With thousands of fonts to choose from, this can be a daunting task. While there are many styles to choose from, fonts are most commonly distinguished from one another by whether they are serif or sans-serif.</p>
<p><strong>Serif</strong> fonts are fonts the have a line crossing beyond the &#8220;terminal&#8221; of a main stroke. A terminal is the ending point of a stroke. Some examples of serif fonts include: Times New Roman, Georgia, and Garamond.</p>
<p><strong>Sans-serif </strong>fonts are fonts without serifs. They usually appear more straight and clean-looking. Some examples of sans-serif fonts include: Arial, Helvetica, and Verdana.</p>
<p>Every project has it&#8217;s own needs, and figuring out what font looks best depends on the feel of the project. For more modern, technology-based designs, such as a website for a cell phone application development company, a good choice might be sans-serif — since it&#8217;s cleaner-looking that serif fonts. On the other hand, a serif font might suit a softer design, like a flyer for an arts-and-crafts store.</p>
<p>Choosing fonts is never easy, but understanding some of the basics can help.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.markskowrondesign.com/blog/?feed=rss2&#038;p=9</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

