<?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>html tutorials &#124; css tutorials &#124; php tutorials &#124; Nodstrum Blog &#187; Web Design</title>
	<atom:link href="http://www.nodstrum.com/category/web-design/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.nodstrum.com</link>
	<description>A coders playground.</description>
	<lastBuildDate>Tue, 04 May 2010 22:12:43 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Creating an Effective call to action</title>
		<link>http://www.nodstrum.com/2010/05/01/creating-an-effective-call-to-action/</link>
		<comments>http://www.nodstrum.com/2010/05/01/creating-an-effective-call-to-action/#comments</comments>
		<pubDate>Sat, 01 May 2010 15:58:20 +0000</pubDate>
		<dc:creator>jaybaron</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Web Design]]></category>

		<guid isPermaLink="false">http://www.nodstrum.com/?p=159</guid>
		<description><![CDATA[Having an effective call to action is an important part of any professional website design.  There is obviously a goal to every website whether that is getting emails for your newsletter or getting someone to download an item.  Making sure you have an effective call to action is essential to the success of [...]]]></description>
			<content:encoded><![CDATA[<p>Having an effective call to action is an important part of any professional <a href="http://www.madtowndesigns.com/">website design</a>.  There is obviously a goal to every website whether that is getting emails for your newsletter or getting someone to download an item.  Making sure you have an effective call to action is essential to the success of your website.</p>
<p>How then do you lay the round work for an effective call to action.  Here are some simple techniques that if implemented will surely help your conversion rate.</p>
<p><strong>Create Urgency:<br />
</strong><br />
Probably the most important aspect of any call to action is urgency.  If there is no urgency your customer will not do the designated action as there is no immediate need.</p>
<p>So how do we create urgency?  There are numerous ways to do this some of them include phrases such as “act now” or “try today for free”.  Make sure the action creates urgency and makes them take immediate action.  Which is better “sign up” or “sign up now”.</p>
<p><strong>Positioning and Consistency:</strong></p>
<p>Make sure your call to action is positioned properly.  Ideally you want it towards the top of the page and make it one of the first things that your clients see every time.  Generally, most visitors eyes start on the left side of the screen.  In addition, make your call to action consistent it should be in the same position, same color, and same button on every page.</p>
<p><strong>Create a Win-Win situation:</strong></p>
<p>Of course you want to benefit, but make sure that the visitor will benefit as well.  Making it a win-win situation will just result in a higher conversion rate don&#8217;t forget about your customers.</p>
<p><strong>Don&#8217;t forget about everyone else:</strong></p>
<p>Although your ultimate goal is to convert users don&#8217;t forget about your non-converting customers.  Don&#8217;t make your call to action get in the way of the information on your website.  It is important to make sure that the user experience is still pleasant as a whole.  The more information you provide the more trust the user will put in you and will ultimately result in a conversion.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.nodstrum.com/2010/05/01/creating-an-effective-call-to-action/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Simple CSS roll over image button</title>
		<link>http://www.nodstrum.com/2009/11/03/simple-css-roll-over-image-button/</link>
		<comments>http://www.nodstrum.com/2009/11/03/simple-css-roll-over-image-button/#comments</comments>
		<pubDate>Tue, 03 Nov 2009 16:02:02 +0000</pubDate>
		<dc:creator>jaybaron</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[Web Design]]></category>

		<guid isPermaLink="false">http://www.nodstrum.com/?p=118</guid>
		<description><![CDATA[This tutorial is very simple and easy to follow, and you can use this for image roll overs, buttons, and navigation&#8230;  Once you&#8217;ve done this a couple times it becomes very simple.
CSS Rollovers can be done with either two images or one single image.  I prefer to always do only one image as it allows [...]]]></description>
			<content:encoded><![CDATA[<p>This tutorial is very simple and easy to follow, and you can use this for image roll overs, buttons, and navigation&#8230;  Once you&#8217;ve done this a couple times it becomes very simple.<br />
CSS Rollovers can be done with either two images or one single image.  I prefer to always do only one image as it allows for faster loading.<br />
The first step is to make our images.  For this example I used an image with a height of 25px and a width of 100px.<br />
For this tutorial because we are only using one image we will have to double the height.  Make sure when you make your image that you have it aligned perfectly so the roll over looks smooth.  Here is a demo <a href="http://www.madtowndesigns.com/milwaukee-website-design/">Milwaukee Website Design</a> first<span id="more-118"></span></p>
<p><strong>Your CSS:</strong></p>
<pre><code>a.button, a.button:link, a.button:visited {
     color:#CFCFD0;
     text-decoration: none;
     line-height:25px;
     text-align: center;
     display: block;
     height: 25px;
     width: 100px;
     background-image: url(img/image.jpg);
     background-color:#333333;
     background-repeat:no-repeat;
     background-position:top center;
}

a.button:hover {
     color:#FFFFFF;
     background-color:#999999;
     background-repeat:no-repeat;
     background-position:bottom center;
}</code></pre>
<p><strong>The HTML:</strong></p>
<p>&lt;a href=&#8221;#&#8221; class=&#8221;button&#8221;&gt;Link&lt;/a&gt;</p>
<p><strong>How it works:</strong><br />
When you look at the last line in the CSS it is declaring the position of the background.  The normal image only shows the top part and when you roll over the CSS shows the bottom half of the image&#8230; That iss why we doubled our image exactly.  If your image moves around when roled over it means you did not align everything perfectly&#8230;  I recommend you check the image first for a quick fix before adjusting the CSS.</p>
<p>If you need any help just post below.  Here is the</p>
<pre><a href="http://madtowndesigns.com/demos/simple_rollover/" target="_blank">demo</a></pre>
<p>of what your outcome will look like</p>
]]></content:encoded>
			<wfw:commentRss>http://www.nodstrum.com/2009/11/03/simple-css-roll-over-image-button/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Five Elements of a Successful Web Design</title>
		<link>http://www.nodstrum.com/2009/10/31/5-elements-of-a-successful-web-design/</link>
		<comments>http://www.nodstrum.com/2009/10/31/5-elements-of-a-successful-web-design/#comments</comments>
		<pubDate>Sat, 31 Oct 2009 15:48:32 +0000</pubDate>
		<dc:creator>jaybaron</dc:creator>
				<category><![CDATA[SEO]]></category>
		<category><![CDATA[Web Design]]></category>

		<guid isPermaLink="false">http://www.nodstrum.com/?p=112</guid>
		<description><![CDATA[Having a successful website is important, it can be very easy to lose your focus when building a website.  When a website is built properly it preforms as a revenue generating tool for your business.  At website design Madison, WI we don&#8217;t just show off our creativity its about getting results.  Before you can do [...]]]></description>
			<content:encoded><![CDATA[<p>Having a successful website is important, it can be very easy to lose your focus when building a website.  When a website is built properly it preforms as a revenue generating tool for your business.  At <a href="http://www.madtowndesigns.com/">website design Madison, WI</a> we don&#8217;t just show off our creativity its about getting results.  Before you can do that you must understand the 5 keys to an effective web design:</p>
<p>Simplicity:<br />
A successful website is able to draw in visitors and make it easy for them to navigate around the site.  Do not be afraid to use white space.  If your website has to many flash animations, drop down menus, and graphic you are going to distract your visitors from what is really important and they will be leaving your site fast.</p>
<p>Content:<br />
The old saying content is king still holds true.  Having unique content is still one of the best ways to climb up the search engine ladder.  Great content is fresh and updated regularly.  Make sure that the content on your website is useful to the visitors on your website .  If the content doesn’t come up as immediately useful then you need to find new content.</p>
<p>Titles:<br />
Make sure you put titles for each web page that is relevant.  Titles are still one of the largest contributing factors for SEO.  You need to have unique titles for every page and make sure that your titles have your keywords.  There is no reason to put your business name in the title a common mistake a lot of websites make.</p>
<p>Fonts and Colors:<br />
Pick a font and stick to it.  Do not use different fonts through out your entire website.  The only time it is OK to use different fonts is for headings and sub headings, but make sure that your headings and sub headings all use the same fonts as well you need to have a uniform and professional look through out your site.</p>
<p>SEO:<br />
Make sure you take the time to optimize your website.  A web design is worthless if it does not generate results for your business.  Search engine optimization is a must in today’s market.  You will need to do SEO as an on going project set time away each week just to focus on SEO aspects of your website.  Link building, blogging, forum posting, and more it all helps make sure you are doing it.</p>
<p>There are many more elements to a successful web design this is just a small outline of some.  If you implement these you are on your way to having  a successful online presence.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.nodstrum.com/2009/10/31/5-elements-of-a-successful-web-design/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>
