<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="wordpress/2.2" -->
<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/"
	>

<channel>
	<title>Real Design Network - Web Standards - Web Design Directory</title>
	<link>http://realdesignnetwork.com/blog</link>
	<description>Web Standards - Web Design Directory</description>
	<pubDate>Mon, 27 Aug 2007 14:07:57 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.2</generator>
	<language>en</language>
			<item>
		<title>CSS Shortcuts</title>
		<link>http://realdesignnetwork.com/blog/archives/30</link>
		<comments>http://realdesignnetwork.com/blog/archives/30#comments</comments>
		<pubDate>Sun, 26 Aug 2007 16:11:46 +0000</pubDate>
		<dc:creator>wardo</dc:creator>
		
		<category><![CDATA[CSS Tutorials]]></category>

		<category><![CDATA[General Tutorials]]></category>

		<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://realdesignnetwork.com/blog/archives/30</guid>
		<description><![CDATA[When writing your CSS, it is possible to write neater, more readable code by making use of CSS shortcuts. A shortcut is a feature of CSS that allows the developer to specify a number of related properties on a single line rather than specify them all separately. Lets look at the following example:

.header {
	padding-top:5px;
	padding-right:10px;
	padding-bottom:5px;
	padding-left:10px;
}

The code [...]]]></description>
			<content:encoded><![CDATA[<p>When writing your CSS, it is possible to write neater, more readable code by making use of CSS shortcuts. A shortcut is a feature of CSS that allows the developer to specify a number of related properties on a single line rather than specify them all separately. Lets look at the following example:</p>
<p><code><br />
.header {<br />
	padding-top:5px;<br />
	padding-right:10px;<br />
	padding-bottom:5px;<br />
	padding-left:10px;<br />
}<br />
</code></p>
<p>The code above is perfectly valid and will work fine, but we can save time and make the code much neater using the following code:</p>
<p><code><br />
.header {<br />
	padding:5px 10px 5px 10px;<br />
}<br />
</code></p>
<p>Using the code above we can specify all of the padding for the header div on one line. It works by applying the first attribute (5px) to the top padding of the div. The second (10px) applies to the right side padding, the 3rd (5px) attribute means the padding on the bottom of the div, and the forth (10px) attribute means the left side padding. The padding is always applied in this order.</p>
<p>It is possible to shorten this code even further using the following code:</p>
<p><code><br />
.header {<br />
	padding:5px 10px;<br />
}<br />
</code></p>
<p>This works by taking the first (5px) attribute to mean the top and bottom, or vertical padding, and the second (10px) attribute to mean the horizontal padding (left and right).</p>
<p>The exact same principles can be used to declare the margin of your divs, so what could have looked like this:</p>
<p><code><br />
 .header {<br />
	padding-top:5px;<br />
	padding-right:10px;<br />
	padding-bottom:5px;<br />
	padding-left:10px;<br />
        margin-top:5px;<br />
	margin-right:10px;<br />
	margin-bottom:5px;<br />
	margin-left:10px;<br />
}<br />
</code><br />
Can now look much neater, and is obviously much quicker to write using the following:</p>
<p><code><br />
.header {<br />
	padding:5px 10px;<br />
	margin:5px 10px;<br />
}<br />
</code></p>
<h3>Background properties</h3>
<p>One of my favorite CSS shortcuts is the background property shortcut. This is how a typical CSS file could look without shortcuts:</p>
<p><code><br />
.header {<br />
	background-image:url(images/image.jpg);<br />
	background-position:top;<br />
	background-repeat:repeat-x;<br />
	background-color:#fff;<br />
}<br />
</code></p>
<p>However, with some nifty CSS it could look like this:</p>
<p><code><br />
.header {<br />
	background: #fff url(images/image.jpg) repeat-x top;<br />
}<br />
</code></p>
<p>The above code is much quicker and more manageable. Take note though, that all of the properties must be provided when using the background shortcut. If I missed off the colour specification at the beginning for example, the code would not work. </p>
<h3>Font shortcuts</h3>
<p>Another very useful shortcut is the font shortcut. The code below can be shorted considerably:</p>
<p><code><br />
body {<br />
	font-weight: bold;<br />
	font-family: verdana, sans-serif;<br />
	font-size: 0.8em;<br />
	line-height: 1.2em;<br />
}<br />
</code></p>
<p>Here is the shortcut:</p>
<p><code><br />
body {<br />
	font: bold 0.8em/1.2em verdana, sans-serif;<br />
}<br />
</code></p>
<p>It is important to write the shortcut in the same order as above so that web browsers don’t get confused!</p>
<h3>Borders</h3>
<p>This is my favorite shortcut of all. This saves me a great deal of time when I am developing web sites because whenever I have a problem with a layout or an element, the first thing I do is put a border around it so that I can see its dimensions and work out what’s going on.</p>
<p>Here is some typical code:</p>
<p><code><br />
.header {<br />
	border-width: 1px;<br />
	border-color: #000;<br />
	border-style: solid;<br />
}<br />
</code></p>
<p>This can be shorted to the following:</p>
<p><code><br />
.header {<br />
	border:1px solid #000;<br />
}<br />
</code></p>
<p>Then, whenever you are not sure why an element is not behaving properly, just use the border shortcut above to debug your code and see what the dimensions of the element are. </p>
<h3>Conclusion</h3>
<p>As you can see, you can make your code much shorter and neater using the CSS shortcuts outlined here. Once you get into the habit of using them, I guarantee that you will wonder why you ever did it differently in the past!</p>
]]></content:encoded>
			<wfw:commentRss>http://realdesignnetwork.com/blog/archives/30/feed</wfw:commentRss>
		</item>
		<item>
		<title>CSS Layout Technique – Achieving 100% Height</title>
		<link>http://realdesignnetwork.com/blog/archives/29</link>
		<comments>http://realdesignnetwork.com/blog/archives/29#comments</comments>
		<pubDate>Sat, 18 Aug 2007 22:08:11 +0000</pubDate>
		<dc:creator>wardo</dc:creator>
		
		<category><![CDATA[CSS Tutorials]]></category>

		<category><![CDATA[General Tutorials]]></category>

		<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://realdesignnetwork.com/blog/archives/29</guid>
		<description><![CDATA[One of the most common layouts on the web is a fixed width site that stretches to the bottom of the page, with a footer sitting at the bottom. If the content of the page stretches past the bottom, the site container needs to stretch with it. If the content does not fill the page, [...]]]></description>
			<content:encoded><![CDATA[<p>One of the most common layouts on the web is a fixed width site that stretches to the bottom of the page, with a footer sitting at the bottom. If the content of the page stretches past the bottom, the site container needs to stretch with it. If the content does not fill the page, the footer needs to remain at the bottom. With a table based layout, this would be a simple task, but who wants to use tables for layout? With some nifty CSS tricks we can accomplish this very well using CSS alone and once you know how its done, you will use it over and over again.</p>
<h3>Centering the Layout</h3>
<p>The first thing we need to do is centre the layout. We will create a site that is 800px wide in this example, centered in our browser. To do this we need the following code:<br />
<code><br />
body {<br />
	margin:0px;<br />
	padding:0px;<br />
	text-align:center;<br />
}<br />
</code><br />
<code><br />
.container {<br />
	width:800px;<br />
	text-align:left;<br />
	margin:auto;<br />
}<br />
</code></p>
<p>The text-align:center command in the body tag is needed to centre our .container div. We then need to align the text back to the left in our container and apply margin:auto to move the container div into the centre of the page.</p>
<h3>Achieving 100% height</h3>
<p>Making your site stretch to 100% height is slightly more complicated. Due to difference in the way browsers render css we will need to use a nifty CSS hack to achieve what we want. Here is what our code will look like with the next set of declarations added:</p>
<p><code>html, body {<br />
	margin:0px;<br />
	padding:0px;<br />
	text-align:center;<br />
	height:100%;<br />
}<br />
</code><br />
<code><br />
.container {<br />
	width:800px;<br />
	text-align:left;<br />
	margin:auto;<br />
	min-height:100%;<br />
}<br />
</code><br />
<code><br />
* html {.container:height:100%;}<br />
</code></p>
<p>In the first block of code we have added ‘html’ to the body section. This is because we need the body to stretch to 100% of the height of its containing element, which is the html, so we too have set this to 100% height. </p>
<p>In the container, we have added ‘min-height:100%’ which tells all browsers apart from Internet Explorer 6 and below that 100% is the minimum height, and if the content expands beyond this, the container will automatically expand with it. As Internet Explorer 6 and below do not understand this command, we need to pass a value of height:100% to these browsers only, as they treat height:100% to mean the same as min-height, therefore allowing the container to expand. We do this with the universal selector hack. </p>
<h3>Adding the footer</h3>
<p>We now have a 100% height, centred layout and its time to add the footer. Here is the next bit of code we need to add:</p>
<p><code>.container {<br />
	width:800px;<br />
	text-align:left;<br />
	margin:auto;<br />
	min-height:100%;<br />
        position:relative;<br />
}<br />
</code></p>
<p><code><br />
.footer {<br />
	position:absolute;<br />
	bottom:0px;<br />
	height:150px;<br />
}<br />
</code><br />
<code><br />
.clearfooter {<br />
	clear:both;<br />
	height:170px;<br />
}</code></p>
<p>The first thing we have done here is add position:relative to the container. This allows us to position the footer absolutely within it. We want it to sit on the bottom of the page so we have added the bottom:0px to achieve this.</p>
<p>Unfortunately, by positioning the footer absolutely, we have taken the footer out of the flow of the document and therefore, any content will disappear behind the footer. To fix this we add a .clearfooter section which sits behind the footer and fixes this problem. </p>
<h3>The HTML</h3>
<p>Here is the basic layout that needs to be added to your HTML document:<br />
<code><br />
&lt;div class="container"&gt;<br />
</code><br />
<code><br />
  &lt;p&gt;<br />
  Add your header and menu as required<br />
  &lt;p&gt;<br />
</code><br />
<code><br />
  &lt;div class="clearfooter"&gt;<br />
  &lt;/div&gt;<br />
</code><br />
<code><br />
  &lt;div class="footer"&gt;<br />
  Footer contents here<br />
  &lt;/div&gt;<br />
</code><br />
<code><br />
&lt;/div&gt;<br />
</code></p>
<h3>Wrap Up</h3>
<p>All the code you need for this very effective layout is provided here. To see how it all slots together and to see a real world example, you may download <a href="http://realdesignnetwork.com/templates/wardonumber3.zip">this template</a> so you can see how you can expand the code used here.  </p>
]]></content:encoded>
			<wfw:commentRss>http://realdesignnetwork.com/blog/archives/29/feed</wfw:commentRss>
		</item>
		<item>
		<title>Overcoming a Creative Block</title>
		<link>http://realdesignnetwork.com/blog/archives/28</link>
		<comments>http://realdesignnetwork.com/blog/archives/28#comments</comments>
		<pubDate>Tue, 31 Jul 2007 19:26:07 +0000</pubDate>
		<dc:creator>wardo</dc:creator>
		
		<category><![CDATA[Web Design]]></category>

		<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://realdesignnetwork.com/blog/archives/28</guid>
		<description><![CDATA[As a web designer / developer, it can get very difficult coming up with new and exciting designs to please your clients. Some times, we are lucky enough to have lots of great ideas that we can pick out of a hat and use for our project, but at one time or another; we will [...]]]></description>
			<content:encoded><![CDATA[<p>As a web designer / developer, it can get very difficult coming up with new and exciting designs to please your clients. Some times, we are lucky enough to have lots of great ideas that we can pick out of a hat and use for our project, but at one time or another; we will inevitably become uninspired and have a difficult job thinking of good ideas. This is perfectly natural as we may spend so much time working on the web that new ideas are not easy to come across. What is important is how you pick yourself up and complete the project to your expected standards when this happens.  </p>
<h3>Coming up with the right theme</h3>
<p>Now and again, you may be asked to work on a project in a niche that you may not understand fully and have never worked with before. This can make it very difficult to think of a suitable theme for the site. For example, I was once asked to work on price comparison site, an area I did not have much experience in. Normally I have lots of ideas I can use in the initial stages of site design and can usually come up with a suitable theme fairly fast, but on this occasion I was finding it difficult. I knew that I wanted the site to look modern and professional (who doesn’t), but most importantly it had to be easy to use and make the wide range of products available easy to find and view.</p>
<p>The first thing to do in this situation is to look at competing sites. There will probably be many good examples you can study. There will also be lots of bad examples. Look closely at both and try to form an idea of how your own site will look. Obviously, you do not want to copy your competitors and I believe you should try to come up with something even better if possible but there is nothing wrong with admiring other peoples work and seeing how you can improve your own work as a result.</p>
<p>Viewing your competitor’s sites in a niche that you are not familiar with is also important because most of the successful sites will all adhere to the same guidelines. That means that users of these sites come to expect certain features and if your site is drastically different, they will probably not trust your site and you will not convert as well as you could. Remember – its good to be unique but it can be bad to go against convention. In my example, I noticed most of the successful competing sites all had a prominent ‘categories’ block at the top of the page acting as the main navigation. This is obviously something that worked well so I decided that my theme would need to include this as well.</p>
<p>After researching your competitors, you should probably be getting quite a few ideas going through your head about how the site should look. Before you go any further, grab a pen and notepad and start sketching your ideas down. They will be very useful later when you actually begin your design.</p>
<h3>Developing the theme</h3>
<p>Now that you have some good ideas and made some sketches, its time to fire up your graphics package. I use Photoshop to develop my sketches into a simple template which I can then slice up and use in my html and css. The Photoshop template does not need to be totally accurate, but try to get your main features such as header, navigation and side bars as complete as possible. Once you have the main features, its really easy to select the right font and colours for the rest of your design when you write your css. </p>
<p>When I’m developing my theme there are some key things that I do. Firstly, I visit some good css galleries such as cssremix.com and cssbeauty.com. You can see some really nice designs on these sites and whist there may not be any designs aimed at the same niche as yours, you can still gain a great deal of inspiration from some of the designs on these sites. Its normally the really small, subtle effects that I notice. Another thing that really helps me is to look through web design magazines. I like to read .net magazine. The experts in these magazines provide really useful information and there are always great examples of websites to inspire you. </p>
<p>I also look through previous work that I have done do determine a suitable layout to use. Normally, the layout will have to be totally changed to fit in with the new site design but this helps me decide whether I need a fixed width or fluid layout, a sidebar, or just a top bar etc. By now, I am usually ready to start creating the Photoshop mockup. </p>
<p>The beauty of doing a mockup in Photoshop first is that you can change things easily and get feedback from the client before you begin coding. It also makes it very easy to build on your design until you get something you are really happy with. Use your sketches from earlier and all the ideas you have accumulated as you begin your Photoshop mockup. Soon, you will have a nice looking design and our creative block will be overcome. Once this is done  you can get final approval from the client and move on to the next step of development. </p>
<h3>Conclusion</h3>
<p>When you hit a creative block don’t worry to much about it. It happens to us all and you will be able to complete your project with little delay. The most important thing to remember is not to rush into a design when you are short on ideas. You will end up creating something neither you, or the client are happy with. Take the time to go through the steps outlined here, and of course, add anything else that helps you out to the process. </p>
]]></content:encoded>
			<wfw:commentRss>http://realdesignnetwork.com/blog/archives/28/feed</wfw:commentRss>
		</item>
		<item>
		<title>Link building 101</title>
		<link>http://realdesignnetwork.com/blog/archives/26</link>
		<comments>http://realdesignnetwork.com/blog/archives/26#comments</comments>
		<pubDate>Sat, 21 Jul 2007 14:45:55 +0000</pubDate>
		<dc:creator>wardo</dc:creator>
		
		<category><![CDATA[marketing]]></category>

		<category><![CDATA[SEO Tutorials]]></category>

		<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://realdesignnetwork.com/blog/archives/26</guid>
		<description><![CDATA[Link building is one of the most important aspects of website promotion and is also one of the most difficult and time consuming tasks. It is the process of acquiring links that point back to your website. They are so important because search engines basically count each link as a vote for the quality of [...]]]></description>
			<content:encoded><![CDATA[<p>Link building is one of the most important aspects of website promotion and is also one of the most difficult and time consuming tasks. It is the process of acquiring links that point back to your website. They are so important because search engines basically count each link as a vote for the quality of your website, the theory being that someone would not link to you unless there was something worth linking to. There are many different ways of acquiring links to your site, some more effective than others. This article will shed some light on the do’s and don’ts of link building so that you can spend your time on the things that will benefit you the most.</p>
<h3>Link building background</h3>
<p>Search engines are very good at counting links. The difficult part is determining how trustworthy links are. A link on a blog or forum could possibly be spam so obviously, search engines don’t expect them to be trustworthy. A link from a high ranking website or a website with a .org domain however, are more likely to be reliable. This is not to say that form and blog links are not useful however. Just remember that search engines count links for a reason. They want to determine how good sites really are so that they can rank them accordingly. </p>
<p>For this reason, obtaining links purely to rank well in search engines can land you in trouble. If a search engine detects that links have been obtained un-naturally, you could be penalised. For example, imagine a new web site that has just been launched. The webmaster has heard that links pointing to his site will increase his rankings so he searches on Google to find a submission service that submits his site to 1000 directories for £100, thereby obtaining 1000 incoming links. Unfortunately, obtaining this many links in a short period of time does not look natural. If all the links point to the same page i.e his homepage, then this look even more unnatural. If each link uses the same anchor text, then once again, this looks very unnatural and he may have just wasted his &pound;100.</p>
<h3>Paid links – good or bad?</h3>
<p>There has been quite a lot of talk about paid links recently and if they benefit or harm your site. The truth is that paid links can harm your site but it really depends on why you acquire these links. If you buy a link on another site in order to increase your page rank, you are effectively trying to fool the search engines so this is not a good idea. However, if you acquire a paid link in order to be visible to the audience on that site and obtain some direct traffic and help build your brand, then this is fine. It is difficult to say how a search engine would know the purpose behind the paid link, but to be safe, be honest about why you want the link and if its only because you want to increase your rankings then spend your time on more suitable areas such as building good quality content which we will discuss later. </p>
<h3>Link exchanges</h3>
<p>Swapping links for the sole purpose of appealing to the search engines is a waste of time. If you are doing so because you genuinely want you audience to know about the other site then there is nothing wrong with that, but search engines can easily determine swapped links and if they see that most links on a site have been exchanged, then they will obviously not look natural or trustworthy and will therefore have little effect on your search rank.</p>
<h3>How to get links properly</h3>
<p>After reading this you may be left slightly daunted and wondering how you can possibly obtain enough links to rank well in the search engines and drive traffic to your site. Don’t worry though. By utilising a combination of link building techniques and sticking to the basic principles, and above all – having patience, you will be able to build a very successful campaign. We will now look at some of the main things you need to be doing in your link building campaign.</p>
<h3>Directory submissions</h3>
<p>We have already established that obtaining many links from low quality, untrustworthy sources will not help you ranking very much. However, it is still worth investing some time submitting your site to some good quality, search engine friendly directories. To start things off, submit your site to about 100 directories related to your sites content. Although this may have limited effect on your rankings and will bring in very little visitors from click throughs, it will help your site get indexed quickly and set a foundation for the rest of your link building. Using a service such as usefulsubmit.com is a good place to start.</p>
<h3>Paid links</h3>
<p>Take a look on text-link-ads.com and find some good quality sites in categories related to your site. Try to find sites with a high page rank that display paid links prominently and that don’t have too many other paid links on the same page. When you find 1 or 2 suitable sites, buy a link on the site and monitor any traffic you get from it. </p>
<p>Remember that we want to get click throughs from targeted visitors rather than purely increase page rank. This way we can honestly say that we are not trying to fool the search engines and any targeted traffic that comes through as a result of your paid link may end up recommending you, bookmarking you, linking to you and so on. If your paid link does not provide you with a satisfactory amount of traffic then cancel it and try another site. Once you identify sites that provide you with adequate amounts of traffic stick with them and continue to monitor and add your link to more sites as your budget allows. Hopefully you will see your backlinks increase as a result of the visitors coming from your links liking your content and linking to you.   </p>
<h3>Good quality content</h3>
<p>This is where most of your energy should be focussed. Keep writing new content and updating your site whenever you can. This is the best way of obtaining good quality one way incoming links. If you own a site than chances are, you are pretty knowledgeable about the subject area, so share your knowledge with others and you will see huge benefits. Writing about something new and exciting in your subject area, some problem you have come across and solved, tutorials and anything controversial are all good topics to explore. When talking about good quality content, don’t just focus on text. With the rise of broadband, video has become a huge commodity on the internet so take advantage of this if you can. </p>
<h3>Asking for links</h3>
<p>Another good way to get good quality, one way incoming links is to simply ask for them. If you have a good site with good content that would be of interest to users of a popular site you know about, then its worth sending a personalised email to the owner of that site informing them of how their users could benefit from visiting your site. Be professional and sincere. Only ask if you truly think having your link on their site would be mutually beneficial. 9 out of 10 of the people you ask may well turn you down but remember, its quality not quantity that counts so don’t be disheartened if not all of your requests are met. </p>
<h3>User generated content</h3>
<p>Don’t focus your link building campaign around search engines alone. Social networking is huge now and is changing the way people find the things they want on the Internet. Create an account with popular sites such as digg.com and stumbleupon.com and spend some time networking and building up your profile. Not only is this enjoyable but it could drive a great deal of traffic to your site, increasing the chances of obtaining links from an array of sources. Get a bookmarking widget from a site such as addthis.com to make it easy for people to bookmark content from your site. </p>
<h3>Conclusion</h3>
<p>All the classic advice such as commenting on people blogs, posting in forums and including your link in email signatures are all valid techniques, but remember that the most benefit will come from obtaining links from trustworthy sources. By following the principles outlined here, and having a great deal of patience and diligence, you will be able to create a high ranking successful web site. </p>
]]></content:encoded>
			<wfw:commentRss>http://realdesignnetwork.com/blog/archives/26/feed</wfw:commentRss>
		</item>
		<item>
		<title>Building Effective Landing Pages</title>
		<link>http://realdesignnetwork.com/blog/archives/25</link>
		<comments>http://realdesignnetwork.com/blog/archives/25#comments</comments>
		<pubDate>Tue, 10 Jul 2007 12:52:11 +0000</pubDate>
		<dc:creator>wardo</dc:creator>
		
		<category><![CDATA[marketing]]></category>

		<category><![CDATA[General Tutorials]]></category>

		<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://realdesignnetwork.com/blog/archives/25</guid>
		<description><![CDATA[With pay-per-click (ppc) costs rising and the marketplace more competitive than ever, it has become increasingly difficult to stand out from your competitors. Spending time choosing and experimenting with the ideal ad format and keywords is vital, but to make the most of your ppc costs and get the edge on your competitors, you need to focus on your landing pages.]]></description>
			<content:encoded><![CDATA[<p>With pay-per-click (ppc) costs rising and the marketplace more competitive than ever, it has become increasingly difficult to stand out from your competitors. Spending time choosing and experimenting with the ideal ad format and keywords is vital, but to make the most of your ppc costs and get the edge on your competitors, you need to focus on your landing pages.</p>
<p>A landing page is a page or group of pages specifically developed to be associated with the keywords in your ppc campaign. These landing pages need to be as specific to the ad as possible. </p>
<h2>Relevancy</h2>
<p>By asking yourself ‘what does this visitor expect to see’ when they land on your page, you will be able to start building highly effective landing pages. Your landing page need to have as little distraction as possible and allow the user to complete the desired action (i.e, a sale) as easily as possible. When a user clicks on your ad, they are demonstrating that the initial ad was relevant to them, and you need to continue this relevancy onto your landing page.</p>
<p>Consider the following example; A user performs a search on Google for ‘Samsung LCD TV’. Your ad is displayed in the results and does a good job of inciting the user to click on the ad. The user now lands on your landing page and you now need to convince them to carry out the desired action, in this case, buying the television. The user will be expecting to see copy and images relating to the product. Having too much unrelated content on the page could easily put them off. </p>
<p>The headings you use on your landing page are vital. They need to be as closely linked to the title of your ad as possible to have the greatest effect. In our example, our images would clearly show the product in question and we would include a clear and concise call to action. We would also need to include as much assurance as possible to our visitor that we are a credible and reliable supplier. Text such as ‘money back guarantee’ and ‘free delivery’ can be particularly effective.      </p>
<p>You also need to remember than relevancy is subjective. Different people landing on your page may regard different elements on the page differently. This is why it is important to experiment and try different combinations and layouts. </p>
<h2>Landing Page Design</h2>
<p>We will now look at how you should design your landing pages in more detail. Firstly, get a pen and paper and sketch your page out, highlighting the major elements such as your logo and navigation (elements that are normally constant throughout the site). Next, sketch out the details on the landing page such as the title, images, description and buy button. Look at your sketch and imagine yourself landing on this page and ask yourself which elements would attract your attention. Think about where you should add colour and which areas should remain clear. Continue sketching until you think you have achieved the most effective layout. The beauty of sketching pages out like this is that it is so quick and easy and often makes you think of things you may have otherwise overlooked.  </p>
<h2>Headings</h2>
<p>It needs to be immediately obvious to the user that the heading of your page relates closely to your ad. Make sure you include the keyword in the heading. This applies even if the keyword phrase consists of only one word. The best thing you can do to determine the effectiveness of your headings is to do some basic tests. Try two different pages that are identical apart from the headings and see which one converts best. When you are confident that you have determined the page that converts best, do a few more tests until you have the best headings possible. Experiment with the colour, font size and letter spacing, as well as the words in your heading. It is surprising what a small difference can make to the effectiveness of your landing pages.</p>
<h2>Images</h2>
<p>Generally, you should only use images in the main content of your landing pages if it truly adds relevancy to the page. It is normally best to avoid images that are included purely for aesthetics as they tend to distract the user. However, if you are selling a product, showing images of the product is essential, preferably showing high quality pictures of the product from various angles.</p>
<h2>Calls to Action</h2>
<p>You should also experiment with your call to action button. If you wanted your visitor to complete an order form for example, you could try using ‘buy now’ rather than ‘submit’. Even better- try to include your keywords in the button text. Depending on your keywords, this can be tricky so only do this if you have a keyword that reads well as the button text. For example ‘Buy Samsung LCD TV’ contains all of our keywords from our previous example but it could be too long and may not convert well. This is where testing would be important. As with your headings, try testing a few different pages concurrently. The results can be surprising. </p>
<p>It is also important that anything that could cause the visitor to change their mind about the transaction during this stage is addressed. Visitors frequently abandon shopping carts and forms at the last minute as they can be unsure about what to expect when they click a button or link. Many people are still very sceptical of the internet so in order to put them at ease, think about how easy and reassuring the process is from beginning to end. The sketches we talked about earlier can help you address this. </p>
<h2>Conclusion</h2>
<p>By testing your pages and thinking carefully about how your visitors will interact with your page, you will be able to create highly effective landing pages that could give you a significant advantage over your competitors and help you make the most of your ppc campaigns. On the Internet, your competitors are only a click of the mouse away so start developing your landing pages now and make the most of every visitor you get!</p>
]]></content:encoded>
			<wfw:commentRss>http://realdesignnetwork.com/blog/archives/25/feed</wfw:commentRss>
		</item>
		<item>
		<title>Server Upgrade</title>
		<link>http://realdesignnetwork.com/blog/archives/24</link>
		<comments>http://realdesignnetwork.com/blog/archives/24#comments</comments>
		<pubDate>Mon, 02 Jul 2007 08:06:28 +0000</pubDate>
		<dc:creator>wardo</dc:creator>
		
		<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://realdesignnetwork.com/blog/?p=24</guid>
		<description><![CDATA[If you have visited the site during the last few days you may have noticed that it was unavailable for a while. This is due to us chaging hosts over the weekend. The only thing left for us to do is update the theme of this blog and then everything should be running better than [...]]]></description>
			<content:encoded><![CDATA[<p>If you have visited the site during the last few days you may have noticed that it was unavailable for a while. This is due to us chaging hosts over the weekend. The only thing left for us to do is update the theme of this blog and then everything should be running better than ever before.</p>
]]></content:encoded>
			<wfw:commentRss>http://realdesignnetwork.com/blog/archives/24/feed</wfw:commentRss>
		</item>
		<item>
		<title>New Design</title>
		<link>http://realdesignnetwork.com/blog/archives/23</link>
		<comments>http://realdesignnetwork.com/blog/archives/23#comments</comments>
		<pubDate>Tue, 12 Jun 2007 21:31:51 +0000</pubDate>
		<dc:creator>wardo</dc:creator>
		
		<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://realdesignnetwork.com/blog/?p=23</guid>
		<description><![CDATA[As you may have noticed, the site has now been redesigned. I hope everyone likes it. The design is not the only thing that will be changing. I have some good tutorials in the pipeline as well as useful pages such as a hosting guide with reviews from web designers. Getting the time to complete [...]]]></description>
			<content:encoded><![CDATA[<p>As you may have noticed, the site has now been redesigned. I hope everyone likes it. The design is not the only thing that will be changing. I have some good tutorials in the pipeline as well as useful pages such as a hosting guide with reviews from web designers. Getting the time to complete these tasks is not so easy but I will get them done as soon as possible.</p>
]]></content:encoded>
			<wfw:commentRss>http://realdesignnetwork.com/blog/archives/23/feed</wfw:commentRss>
		</item>
		<item>
		<title>Update</title>
		<link>http://realdesignnetwork.com/blog/archives/22</link>
		<comments>http://realdesignnetwork.com/blog/archives/22#comments</comments>
		<pubDate>Tue, 08 May 2007 21:10:19 +0000</pubDate>
		<dc:creator>wardo</dc:creator>
		
		<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://realdesignnetwork.com/blog/?p=22</guid>
		<description><![CDATA[I know its been ages since this blog has been updated but I have been very busy working in a new job. The good news is I have started to re-design this site and the new design will hopefully be going live sometime in the next few weeks so please check back soon.
]]></description>
			<content:encoded><![CDATA[<p>I know its been ages since this blog has been updated but I have been very busy working in a new job. The good news is I have started to re-design this site and the new design will hopefully be going live sometime in the next few weeks so please check back soon.</p>
]]></content:encoded>
			<wfw:commentRss>http://realdesignnetwork.com/blog/archives/22/feed</wfw:commentRss>
		</item>
		<item>
		<title>Selective Coloring</title>
		<link>http://realdesignnetwork.com/blog/archives/21</link>
		<comments>http://realdesignnetwork.com/blog/archives/21#comments</comments>
		<pubDate>Tue, 23 Jan 2007 10:24:24 +0000</pubDate>
		<dc:creator>wardo</dc:creator>
		
		<category><![CDATA[Photoshop Tutorials]]></category>

		<category><![CDATA[General Tutorials]]></category>

		<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://realdesignnetwork.com/blog/?p=21</guid>
		<description><![CDATA[This is a really nice technique to make photos look dynamic and interesting. It can be used very well for coloring small, subtle effects like a subjects eyes for example or for more dramatic effects. 
Step 1
Open up the picture you want to work on in Photoshop. I used this image from www.sxc.hu:

Step 2
Now you [...]]]></description>
			<content:encoded><![CDATA[<p>This is a really nice technique to make photos look dynamic and interesting. It can be used very well for coloring small, subtle effects like a subjects eyes for example or for more dramatic effects. </p>
<p><strong>Step 1</strong></p>
<p>Open up the picture you want to work on in Photoshop. I used this image from www.sxc.hu:<br />
<img src="http://www.realdesignnetwork.com/images/tutorials/woman.jpg" alt="woman" /></p>
<p><strong>Step 2</strong></p>
<p>Now you will need to duplicate the background layer. Go to layer > duplicate layer or simply drag the background layer onto the create a new layer icon in the layers palette. Name your duplicated layer &#8216;mask&#8217;.</p>
<p><strong>Step 3</strong></p>
<p>Now we want to desaturate the mask layer to create our black and white image. Go to image > adjustments > desaturate. Now that we have our black and white image, we need to start adding color to the bits we want to show through. Go to layer > layer mask > reveal all. This will put a layer mask on our &#8216;mask&#8217; layer. Make sure the layer mask is selected (it will have a white border around it). If not, just click on the thumbnail within the mask layer. </p>
<p><strong>Step 4</strong></p>
<p>Select a hard brush and with black as your foreground color, begin painting on the areas that you want color. If you make a mistake, select white as your foreground color and paint over your mistake.  Take your time and zoom in to be as accurate as possible.<br />
<img src="http://www.realdesignnetwork.com/images/tutorials/woman2.jpg" alt="woman" /></p>
<p>Eventually you will end up with your fully painted image:<br />
<img src="http://www.realdesignnetwork.com/images/tutorials/woman3.jpg" alt="woman" /></p>
<p>There are quite a few ways to achieve this effect but using layers masks and brushes is the most accurate and effective. </p>
]]></content:encoded>
			<wfw:commentRss>http://realdesignnetwork.com/blog/archives/21/feed</wfw:commentRss>
		</item>
		<item>
		<title>SEO tips that everyone should know</title>
		<link>http://realdesignnetwork.com/blog/archives/20</link>
		<comments>http://realdesignnetwork.com/blog/archives/20#comments</comments>
		<pubDate>Tue, 21 Nov 2006 13:51:36 +0000</pubDate>
		<dc:creator>wardo</dc:creator>
		
		<category><![CDATA[SEO Tutorials]]></category>

		<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://realdesignnetwork.com/blog/?p=20</guid>
		<description><![CDATA[Recently, I have been working on the SEO for Real Design Network and trying my best to get good rankings in the search engines. Here are some of the top tips that I found most important:
Remember that every page of your site is viewed as a different web page to the search engines. This means [...]]]></description>
			<content:encoded><![CDATA[<p>Recently, I have been working on the SEO for Real Design Network and trying my best to get good rankings in the search engines. Here are some of the top tips that I found most important:</p>
<li>Remember that every page of your site is viewed as a different web page to the search engines. This means that every page should be optimised individually. You need unique title tags, descriptions and keywords on every page. These should all relate to the content of that page.</li>
<li>Following on from the first tip, optimise each page for just a few different keywords. This will increase your chances of doing well in search results as your pages will appear to be highly relevant.</li>
<li>Unique content is very important. This will attract visitors as well as giving the search engines some good quality content to index. Good quality, unique content also acts as link bait, increasing the chances of other sites linking to you. This is a good way of receiving one way incoming links.</li>
<li>Try and get good quality incoming links rather than lots of low quality ones. Also, try to make your link building look natural. You may be penalized for obtaining to many incoming links to quickly as it will look like they were obtained unnaturally.</li>
]]></content:encoded>
			<wfw:commentRss>http://realdesignnetwork.com/blog/archives/20/feed</wfw:commentRss>
		</item>
	</channel>
</rss>
