<?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>brianalonzo.com</title>
	<atom:link href="http://brianalonzo.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://brianalonzo.com</link>
	<description></description>
	<lastBuildDate>Wed, 09 May 2012 14:52:42 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
		<item>
		<title>CSS3 Working in IE</title>
		<link>http://brianalonzo.com/css3-working-in-ie/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=css3-working-in-ie</link>
		<comments>http://brianalonzo.com/css3-working-in-ie/#comments</comments>
		<pubDate>Fri, 30 Mar 2012 20:23:59 +0000</pubDate>
		<dc:creator>brian</dc:creator>
				<category><![CDATA[Web Design]]></category>

		<guid isPermaLink="false">http://brianalonzo.com/?p=1071</guid>
		<description><![CDATA[I am crazy excited to re-post this gem of a find. How to get CSS3 working in older version of Internet Explorer: Download CSS3 PIE here -&#62; The following instructions should get you up and running with PIE in most circumstances. If you run into problems along the way, consult our known issues page, or ]]></description>
			<content:encoded><![CDATA[<p>I am crazy excited to re-post this gem of a find.<br/><br/></p>
<p><strong>How to get CSS3 working in older version of Internet Explorer:</strong><br/></p>
<p>Download CSS3 PIE here -&gt; <img src='http://brianalonzo.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> <br/><br/></p>
<p>The following instructions should get you up and running with PIE in most circumstances. If you run into problems along the way, consult our known issues page, or ask for help in the forums.<br/><br/></p>
<p>Step 1: Download it<br/><br/></p>
<p>Download the PIE distribution and unzip it somewhere.<br/><br/></p>
<p>Step 2: Upload it<br/><br/></p>
<p>Inside the unzipped directory, you will find a file named PIE.htc. This is the behavior file for IE, and is what does all the magic. Upload this file to the server where you&#8217;re going to serve pages using CSS3. It doesn&#8217;t matter where exactly, as long as you know where it is.<br />
<br/><br/><br />
Step 3: Write some CSS3<br/><br/></p>
<p>Assuming you already have a HTML document, let&#8217;s say you want to give one of its elements rounded corners. Create a CSS rule for that element and give it a border-radius style like so:<br/><br/></p>
<p>#myAwesomeElement {<br />
border: 1px solid #999;<br />
-webkit-border-radius: 10px;<br />
-moz-border-radius: 10px;<br />
border-radius: 10px;<br />
}<br />
(Note the -webkit- and -moz- prefixed versions; these are necessary to make the rounded corners work in WebKit and Mozilla-based browsers.)<br />
<br/><br/><br />
Step 4: Apply PIE<br/><br/></p>
<p>In that same CSS rule, add the following style line:<br/><br/></p>
<p>behavior: url(path/to/PIE.htc);<br />
Of course you will need to adjust the path to match where you uploaded PIE.htc in step 2. Note: this path is relative to the HTML file being viewed, not the CSS file it is called from.<br/><br/></p>
<p>Step 5: View it in IE<br/><br/></p>
<p>If all went well, at this point you should be able to load the page in IE and see the CSS3 rounded corners rendered just like other browsers. Now you can play around with some of the other supported CSS3 decorations like box-shadow. See the documentation on supported CSS3 features to see exactly what PIE can do. Have fun!<br/><br/></p>
]]></content:encoded>
			<wfw:commentRss>http://brianalonzo.com/css3-working-in-ie/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CSS Image Hover</title>
		<link>http://brianalonzo.com/css-image-hover/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=css-image-hover</link>
		<comments>http://brianalonzo.com/css-image-hover/#comments</comments>
		<pubDate>Fri, 23 Mar 2012 01:24:29 +0000</pubDate>
		<dc:creator>brian</dc:creator>
				<category><![CDATA[Web Design]]></category>

		<guid isPermaLink="false">http://brianalonzo.com/?p=913</guid>
		<description><![CDATA[Many site designs will feature varying types of image “hover” states, where an image or background image changes when you move your mouse cursor into that area of the page. Traditionally, this change in image is handled via JavaScript. It’s fairly easy to write a small script that swaps out images on mouseover, but there ]]></description>
			<content:encoded><![CDATA[<div>
<p>Many site designs will feature varying types of image “hover” states, where an image or background image changes when you move your mouse cursor into that area of the page. Traditionally, this change in image is handled via JavaScript. It’s fairly easy to write a small script that swaps out images on mouseover, but there are a number of disadvantages to this approach that have pushed many web developers toward using a CSS-only method of achieving this exact same effect. This tutorial describes exactly how to implement a pure CSS image hover effect.</p>
<h2>The Image</h2>
<p>The biggest difference between a traditional JavaScript image hover and a pure CSS image hover is the image, itself. When using CSS to achieve this effect, the static image and the hover image are actually contained within the same image file. Basically, we’re displaying the image and cropping it so that only one image state is displayed at one time. In order to do this, we’ll omit the <code>&lt;img&gt;</code> tag and display the image as a the background-image of an <code>&lt;a/&gt;</code> (anchor) tag instead.</p>
<p>Let’s look at an image that could be used as a CSS hover image.</p>
<p><img src="file:///C:/Users/brian/AppData/Local/Temp/enhtmlclip/Image(4).png" alt="Hover image" width="100" height="200" /></p>
<h2>Simplistic Markup</h2>
<p>As you can see, both static and hover images are contained within the same file. In order to display only half of the image at one time, we’ll apply it as a background color to an HTML block element. Here is the HTML for this example:</p>
<pre>&lt;a href="#LinkURL"&gt;Leaf&lt;/a&gt;</pre>
<h2>The CSS</h2>
<p>As you can see, the HTML is extremely simple. We’re doing everything in CSS, so this is where the real magic happens:</p>
<pre>.myButtonLink {
        display: block;
        width: 100px;
        height: 100px;
        background: url('/path/to/myImage.png') bottom;
        text-indent: -99999px;
}
.myButtonLink:hover {
        background-position: 0 0;
}</pre>
<p>We’re using the CSS psuedo-element <code>hover</code> to apply the mouseover image effect. When your mouse pointer moves over the “myButtonLink” element, our CSS slides the background image (using the <code>background-position</code> property) appropriately, giving us our mouseover image. This is simple, fast, and efficient! You’ll use less files and space on your server, clients will have to download less data, and older computers will render your content much faster.</p>
<h2>The Result</h2>
<p>Move your mouse over the image to see the hover in action.</p>
<p><a shape="rect">Leaf</a></p>
<p>And there you have it, a pure CSS approach to image hovers. You can apply this method to links, <code>&lt;div/&gt;</code> tags, and just about anything else you can imagine in your site’s design. Happy styling!</p>
</div>
]]></content:encoded>
			<wfw:commentRss>http://brianalonzo.com/css-image-hover/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How Email Marketing Can Help SEO</title>
		<link>http://brianalonzo.com/how-email-marketing-can-help-seo/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=how-email-marketing-can-help-seo</link>
		<comments>http://brianalonzo.com/how-email-marketing-can-help-seo/#comments</comments>
		<pubDate>Fri, 23 Mar 2012 01:23:23 +0000</pubDate>
		<dc:creator>brian</dc:creator>
				<category><![CDATA[Web Design]]></category>

		<guid isPermaLink="false">http://brianalonzo.com/?p=910</guid>
		<description><![CDATA[Creating valid HTML email newsletters and announcements with a canonical link element may help marketers boost search engine optimization. The canonical link element, which is often referred to as rel=&#8221;canonical,&#8221; (pronounced rel canonical, no &#8220;equals&#8221;) is a way of describing the preferred URL for some particular web page. Search engines, including Google, Bing, and Yahoo!, ]]></description>
			<content:encoded><![CDATA[<div>
<p><strong>Creating valid HTML</strong> email newsletters and announcements with a canonical link element may help marketers boost search engine optimization.</p>
<p>The canonical link element, which is often referred to as <em>rel=&#8221;canonical,&#8221;</em> (pronounced rel canonical, no &#8220;equals&#8221;) is a way of describing the preferred URL for some particular web page. Search engines, including Google, Bing, and Yahoo!, all respect this element and will typically favor the specified canonical link in search results. Since December 2009, most search engines have allowed the canonical link to point across domains, so that a page on <em>example.com</em> could point to — and therefore transfer any SEO benefits to — a page on <em>sample.com</em>.</p>
<p>For the most part, the canonical link element has been used to avoid confusing search engines with duplicate content within a domain or on related sites. A search engine like Google would see <em>www.example.com</em>, <em>example.com</em>, <em>example.com/</em>, and <em>example.com/index.html</em> as four separate pages even though the web server points each to the same content.</p>
<p>During a recent episode of the respected <a href="http://www.marketingovercoffee.com/" shape="rect"><em>Marketing Over Coffee</em> podcast</a>, Christopher Penn suggested using <em>rel=&#8221;canonical&#8221;</em> in HTML email newsletters or announcements because of the popularity of &#8220;view in browser&#8221; links that open an email&#8217;s content as a web page on the email service provider&#8217;s site.</p>
<p>Penn is vice president of strategy and innovation at <a href="http://www.blueskyfactory.com/" shape="rect">Blue Sky Factory</a>, an email and social marketing firm, the author of the book <em>Marketing White Belt: Basics for the Digital Marketer</em>, and one of the foremost experts on email marketing.</p>
<h3>Adding a Canonical Link</h3>
<p>Adding a canonical link to an HTML email, requires that the email include common HTML structures like a document type declaration, and a <code>&lt;head&gt;</code> tag. Within the head tag, the marketer should add a link like the one below.</p>
<div>
<div>
<div>
<table>
<tbody>
<tr>
<td rowspan="1" colspan="1"><code>1</code></td>
<td rowspan="1" colspan="1"><code>&lt;</code><code>link</code> <code>rel</code><code>=</code><code>"canonical"</code> <code>href</code><code>=</code><code>"<a href="http://www.yourdomain.com/email-landing-page.html" shape="rect">http://www.yourdomain.com/email-landing-page.html</a>"</code><code>/&gt;</code></td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
<p>With this link in place when a subscriber clicks on a &#8220;view in browser&#8221; link and is taken to a page on the email service provider&#8217;s site, any SEO benefit is forwarded to the URL specified in the <em>href</em> attribute of the canonical link element. The technique really is that easy.</p>
<h3>Underlying Assumptions</h3>
<p>Penn&#8217;s suggestion makes at least three underlying assumptions.</p>
<p>First, it assumes that using a complete and valid HTML document for HTML emails is a good idea. This assumption runs counter to the opinion of some email service providers, which claim that HTML meta data, including the contents of a <code>&lt;head&gt;</code> tag, is a form of content spam. Penn obviously disagrees.</p>
<p>&#8220;Most spam checking things are worthless…most spam stuff that is being done today is at the domain level, at the IP level, at the reputation level. Content filtering with the exception of a few corporate systems…really doesn&#8217;t apply anymore,&#8221; Penn said.</p>
<p>Penn&#8217;s remarks do stand to reason, particularly with the rise of better email readers, mobile devices whose users may be more likely to view the message as a browser, and the continued drive toward email standards.</p>
<p>Next, Penn assumes that marketers will provide a relevant landing page worthy of the canonical link. This means that marketers will need to reproduce the email message content on their own server. One way to do this would be to have a newsletter archive section on site. Such a section is a good way to garner new subscribers and an obvious choice for a canonical link.</p>
<p>Third, Penn is assuming that any SEO benefit is actually worth the effort. Presumably, the SEO benefit would come from email subscribers who clicked the &#8220;view in browser&#8221; link; liked the content so well that they copy the page URL (remember this URL will probably be on the email service provider&#8217;s site); and then paste that link into a blog post, Twitter tweet, or a Google+ post.</p>
<h3>Summing Up</h3>
<p>I&#8217;ll summarize this article with a sample of Penn&#8217;s own words about the topic.</p>
<p>&#8220;I would make it a fully valid piece of HTML because what happens in a lot of cases is, especially with the bigger systems out there the more enterprise systems there is always a view in browser option…that goes to a page that then is effectively a web page. You can do one of two things with that: you can either user your own URL, which I would recommend — have it hosted on your site so you get the link juice…or at the very least use the full data structure and then put a rel=&#8221;canonical&#8221; back to your website so that your email service provider doesn&#8217;t suck up all of the SEO. But either way you need to have valid HTML in order to pull it off.&#8221;</p>
</div>
]]></content:encoded>
			<wfw:commentRss>http://brianalonzo.com/how-email-marketing-can-help-seo/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Responsive Design</title>
		<link>http://brianalonzo.com/responsive-design/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=responsive-design</link>
		<comments>http://brianalonzo.com/responsive-design/#comments</comments>
		<pubDate>Fri, 23 Mar 2012 01:21:59 +0000</pubDate>
		<dc:creator>brian</dc:creator>
				<category><![CDATA[Web Design]]></category>

		<guid isPermaLink="false">http://brianalonzo.com/?p=908</guid>
		<description><![CDATA[Here is a fantastic article from Web Designer Wall. Enjoy. Responsive web design is no doubt a big thing now. If you still not familiar with responsive design, check out the list of responsive sites that I recently posted. To newbies, responsive design might sound a bit complicated, but it is actually simpler than you think. To help you ]]></description>
			<content:encoded><![CDATA[<p>Here is a fantastic article from Web Designer Wall. Enjoy.</p>
<div>
<div>
<p>Responsive web design is no doubt a big thing now. If you still not familiar with responsive design, check out the list of <a href="http://webdesignerwall.com/trends/inspiration-fluid-responsive-design" shape="rect">responsive sites</a> that I recently posted. To newbies, <a href="http://webdesignerwall.com/tutorials/responsive-design-with-css3-media-queries" shape="rect">responsive design</a> might sound a bit complicated, but it is actually simpler than you think. To help you quickly get started with responsive design, I&#8217;ve put together a quick tutorial. I promise you can learn about the basic logic of responsive design and media queries in 3 steps (assuming you have the basic CSS knowledge).</p>
<h3><em>Step 1.</em> Meta Tag (view <a href="http://webdesignerwall.com/demo/responsive-design/index.html" shape="rect">demo</a>)</h3>
<p>Most mobile browsers scale HTML pages to a wide viewport width so it fits on the screen. You can use the viewport meta tag to reset this. The viewport tag below tells the browser to use the device width as the viewport width and disable the initial scale. Include this meta tag in the &lt;head&gt;.</p>
<pre><code>&lt;meta name="viewport" content="width=device-width, initial-scale=1.0"&gt; </code></pre>
<p>Internet Explorer 8 or older doesn&#8217;t support media query. You can use <a href="http://code.google.com/p/css3-mediaqueries-js/" shape="rect">media-queries.js</a> or <a href="https://github.com/scottjehl/Respond" shape="rect">respond.js</a> to add media query support in IE.</p>
<pre><code>&lt;!--[if lt IE 9]&gt; &lt;script src="http://css3-mediaqueries-js.googlecode.com/svn/trunk/css3-mediaqueries.js"&gt;&lt;/script&gt; &lt;![endif]--&gt; </code></pre>
<h3><em>Step 2.</em> HTML Structure</h3>
<p>In this example, I have a basic page layout with a header, content container, sidebar, and a footer. The header has a fixed height 180px, content container is 600px wide and sidebar is 300px wide.</p>
<div><a href="http://webdesignerwall.com/demo/responsive-design/index.html" shape="rect"><img src="file:///C:/Users/brian/AppData/Local/Temp/enhtmlclip/Image.png" alt="structure" /></a></div>
<h3><em>Step 3.</em> Media Queries</h3>
<p><a href="http://webdesignerwall.com/tutorials/css3-media-queries" shape="rect">CSS3 media query</a> is the trick for responsive design. It is like writing if conditions to tell the browser how to render the page for specified viewport width.</p>
<p>The following set of rules will be in effect if the viewport width is 980px or less. Basically, I set all the container width from pixel value to percentage value so the containers will become fluid.</p>
<div><a href="http://webdesignerwall.com/demo/responsive-design/index.html" shape="rect"><img src="file:///C:/Users/brian/AppData/Local/Temp/enhtmlclip/Image(1).png" alt="image" /></a></div>
<p>Then for viewport 700px or less, specify the #content and #sidebar to auto width and remove the float so they will display as full width.</p>
<div><img src="file:///C:/Users/brian/AppData/Local/Temp/enhtmlclip/Image(2).png" alt="image" /></div>
<p>For 480px or less (mobile screen), reset the #header height to auto, change the h1 font size to 24px and hide the #sidebar.</p>
<div><img src="file:///C:/Users/brian/AppData/Local/Temp/enhtmlclip/Image(3).png" alt="image" /></div>
<p>You can write as many media query as you like. I&#8217;ve only shown 3 media queries in my demo. The purpose of the media queries is to apply different CSS rules to achieve different layouts for specified viewport width. The media queries can be in the same stylesheet or in a separate file.</p>
<h3>Conclusion</h3>
<p>This tutorial is intended to show you the basics of responsive design. If you want more in-depth tutorial, check out my previous tutorial: <a href="http://webdesignerwall.com/tutorials/responsive-design-with-css3-media-queries" shape="rect">Responsive Design With Media Queries</a>.</p>
</div>
</div>
]]></content:encoded>
			<wfw:commentRss>http://brianalonzo.com/responsive-design/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Can I Get Some White Space?</title>
		<link>http://brianalonzo.com/can-i-get-some-white-space/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=can-i-get-some-white-space</link>
		<comments>http://brianalonzo.com/can-i-get-some-white-space/#comments</comments>
		<pubDate>Wed, 02 Nov 2011 13:57:17 +0000</pubDate>
		<dc:creator>brian</dc:creator>
				<category><![CDATA[Web Design]]></category>
		<category><![CDATA[blogs]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[marketing]]></category>
		<category><![CDATA[white space]]></category>

		<guid isPermaLink="false">http://brianalonzo.com/?p=581</guid>
		<description><![CDATA[Brian: Design and Marketing are often at odds with one another.  A great call to action can often interrupt the overall design concept.  A simple clean design (white space)  runs the risk of leaving a great impression at the expense of failing to generate a lead.  It is this back and forth that extends timelines, ]]></description>
			<content:encoded><![CDATA[<blockquote><p><strong>Brian: </strong>Design and Marketing are often at odds with one another.  A great call to action can often interrupt the overall design concept.  A simple clean design (white space)  runs the risk of leaving a great impression at the expense of failing to generate a lead.  It is this back and forth that extends timelines, offends expectations, and cuts away at the bottom line success of any web, marketing, or design project.</p>
<p>As web designers, our role is understanding the importance of both.  We educate clients not by our words but rather the ability to execute.  Not always easy.  Clients often get in the way of their own success.  It is the responsibility of the designer to listen to the needs of the client and produce on the objective of well designed marketing.</p>
<p>In the end everyone needs to get paid.</p>
<p>It&#8217;s our job to make sure we all look good in the process.</p>
<p>Here is an example of success&#8230;</p>
<p>&nbsp;</p></blockquote>
<p><strong>How simple is too simple?</strong></p>
<p>By <a href="http://www.mcwade.com/DesignTalk/2011/10/how-simple-is-too-simple/" target="_blank">John McWade</a> October 25, 2011</p>
<p>In response to our post, A little more Zen, Ed remarked: “Wow, all of this commentary over two or three elements in a ‘design.’ Is this [the Jobs' book cover] even design? Seems a little too basic . . . I’d probably even be a bit hesitant in billing somebody for this.”</p>
<p>Dear readers, that is the biggest misconception EVER. Whose logo is this? . . .</p>
<p style="text-align: center;"><a title="National Geographic -- Inspiring people to care about the planet since 1888" href="http://www.nationalgeographic.com/" target="_blank"><img class="size-full wp-image-6836" title="Whose logo is this?" src="http://www.mcwade.com/DesignTalk/wp-content/uploads/2011/10/NatGeoRectangle50.jpg" alt="" width="123" height="179" /></a></p>
<p style="text-align: left;">How long would it take to draw? Let’s say 10 seconds in InDesign to make the rectangle and 10 minutes to get the width just right. How much do you bill per hour? To make it easy, let’s say $90. By that reckoning, this is a $15 logo.</p>
<p>Not only that, but the yellow border is not the designer’s creation; it’s been the trademark of the client, National Geographic magazine, for a century.</p>
<p>Yet when he “designed” this rectangle in 2002, Tom Geismar (Chermayeff &amp; Geismar) created one of the clearest, most identifiable, most portable images on the planet, meaning one that works beautifully in every venue regardless of size, resolution, or surrounding clutter.</p>
<p style="text-align: center;"><a title="National Geographic -- Inspiring people to care about the planet since 1888" href="http://www.nationalgeographic.com/" target="_blank"><img class="alignnone size-full wp-image-6848" title="National Geographic logo" src="http://www.mcwade.com/DesignTalk/wp-content/uploads/2011/10/NatGeoBlack.jpg" alt="" width="454" height="94" /></a></p>
<p>That’s design.</p>
<p>How powerfully simple can you make your next logo?</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://brianalonzo.com/can-i-get-some-white-space/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Nerd Alert: Blogging with Style</title>
		<link>http://brianalonzo.com/nerd-alert-blogging-with-style/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=nerd-alert-blogging-with-style</link>
		<comments>http://brianalonzo.com/nerd-alert-blogging-with-style/#comments</comments>
		<pubDate>Mon, 24 Oct 2011 18:20:03 +0000</pubDate>
		<dc:creator>brian</dc:creator>
				<category><![CDATA[Web Design]]></category>
		<category><![CDATA[blogs]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[web development]]></category>

		<guid isPermaLink="false">http://brianalonzo.com/?p=554</guid>
		<description><![CDATA[A lot of time and energy can be consumed maintaining a blog.  Effort and attraction often mix well.  In the case of blogs, writers regularly invest in effort, spending hours creating well conceived blog content.  Attraction, on the flip,  is often set aside.  The style and design of a blog is placed into the hands ]]></description>
			<content:encoded><![CDATA[<p><img class="size-full wp-image-561 alignleft" title="blog_logo" src="http://brianalonzo.com/wp-content/uploads/2011/10/blog_logo1.jpg" alt="" width="259" height="173" /></p>
<p>A lot of time and energy can be consumed maintaining a blog.  Effort and attraction often mix well.  In the case of blogs, writers regularly invest in effort, spending hours creating well conceived blog content.  Attraction, on the flip,  is often set aside.  The style and design of a blog is placed into the hands of pre-built-one-size-fits-all themes. While these themes serve a purpose, they do not serve the greater good of the vessel in which a blogger&#8217;s real genius can be found: their voice.</p>
<p>In no way should it be implied that a great looking blog will make up for poorly constructed content.  The opposite, however, holds some validity. The lack of design can detract from what a blogger has to say.</p>
<p>This list is for you, the blogger/writer/photographer/business owner/farmer/astronaut/husband/wife/child/missionary/communist/tea-party member/gun lover/tree hugger/coffee drinker/stunt person/taxidermist (gross)/ gangsta rapper.</p>
<p><strong>Tip # 1</strong></p>
<p>Pay up.</p>
<p>Your voice is unique,  the platform in which your voice takes up residence should reflect that truth.</p>
<p>If you are using a design theme downloaded at no cost, chances are high someone else scored the same deal.  Let&#8217;s just hope you&#8217;re writing better content.  Either way, you are selling your self short.  Invest the time, research, and money into finding a company or freelancer that can understand your voice (pssst..I know a great one.. <a href="http://brianalonzo.com/website-design/" target="_blank">BrianAlonzo.com</a>). Allow them the time and creativity to design a blog  that best complements your content. The truth that most people fear:</p>
<p>It costs money.</p>
<p>But not a lot.</p>
<p>On average the time it takes to move through the design and development stage of a blog is a few weeks, depending on the scale of what you are requesting.  Keep it simple and attractive and you could very well get a custom made theme for less than a couple hundred dollars.  I even know of a guy (<a href="http://brianalonzo.com/website-design/" target="_blank">BrianAlonzo.com</a>) who cuts people deals all the time.</p>
<p><strong>Tip # 2</strong></p>
<p>Highlight your content!  A design that takes attention away from your pretty words defeats the purpose of all of your efforts.  A great blog theme should always set up the content to shine, not the other way around.</p>
<p><strong>Tip # 3</strong></p>
<p>Take risks.  There is a lot of ground breaking stuff going on in the world of web design and development.  Don&#8217;t shy away from allowing your designer to try something new.</p>
<p><strong>Tip # 4</strong></p>
<p>Just because everyone else is doing it doesn&#8217;t mean you should.  See the right side of this page? Yes, there is a Twitter box. Why? Good question.</p>
<p><strong>Tip # 5</strong></p>
<p>Keep changing.  As you grow and change as a person, so should your style.  If you still have the same design theme you had this time last year, CHANGE IT!</p>
<p>-1.) It keeps your site fresh.</p>
<p>-2.) I can charge you again for changes. <img src='http://brianalonzo.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p>In conclusion:</p>
<p>The amount of intellectual investment you attribute to your blog should not be cheapened by a lack if visual appeal. Keep it real, keep it fresh, and for the love of God pay a professional.  You deserve it.</p>
]]></content:encoded>
			<wfw:commentRss>http://brianalonzo.com/nerd-alert-blogging-with-style/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

