<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss 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:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>Stylish Design - Design and SEO</title>
	
	<link>http://www.stylishdesign.com</link>
	<description />
	<pubDate>Mon, 06 Apr 2009 20:57:40 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.7.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
		<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/Stylish-Design" /><feedburner:info uri="stylish-design" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><feedburner:emailServiceId>Stylish-Design</feedburner:emailServiceId><feedburner:feedburnerHostname>http://feedburner.google.com</feedburner:feedburnerHostname><item>
		<title>An Easy Guide to JQuery Show/Hide</title>
		<link>http://feedproxy.google.com/~r/Stylish-Design/~3/6jl_UQO29xg/</link>
		<comments>http://www.stylishdesign.com/an-easy-guide-to-jquery-showhide/#comments</comments>
		<pubDate>Thu, 02 Apr 2009 08:53:01 +0000</pubDate>
		<dc:creator>Anders</dc:creator>
		
		<category><![CDATA[Featured Articles]]></category>

		<category><![CDATA[Tools]]></category>

		<category><![CDATA[easy guide]]></category>

		<category><![CDATA[jquery]]></category>

		<category><![CDATA[slider]]></category>

		<guid isPermaLink="false">http://www.stylishdesign.com/?p=533</guid>
		<description><![CDATA[A couple weeks ago, I was looking for some help with a particular JQuery project only to find that out of every resource I checked, not one was east to understand or include complete source files. Today, I'm going to teach you how to build a simple JQuery header that you can show or hide with the click of a button.]]></description>
			<content:encoded><![CDATA[<p>A couple weeks ago, I was looking for some help with a particular JQuery project only to find that out of every resource I checked, not one was east to understand or include complete source files. Today, I&#8217;m going to teach you how to build a simple JQuery header that you can show or hide with the click of a button. There&#8217;s many different ways to do this and many options you can choose, but I&#8217;m going to show you just one.  I&#8217;ve included all the source files at the end of this lesson but I&#8217;ll go over the major parts with you.<span id="more-533"></span></p>
<p>Start with your standard HTML page, make sure you have a head, body etc. I won&#8217;t spend any time on this part as you should be able to do this.</p>
<p>Next, you need to link to the JQuery library that you will be using.</p>
<p>I&#8217;ve included one with the source files, but you can also download the latest at <a href="http://jquery.com/"  target="_blank" rel="nofollow">http://jquery.com/</a>.</p>
<p><code>&lt;script src="the-location-of-your-jquery-library" type="text/javascript"&gt;&lt;/script&gt;</code></p>
<p>If you don&#8217;t add the JQuery link, your code will not work.</p>
<p>Next, we have 3 parts. The JQuery, the CSS, and the HTML. The JQuery and CSS need to go inbetween your  tags, while the HTML goes within the body.</p>
<blockquote><p>The JQuery: <code>&lt;script type="text/javascript"&gt;&lt;!-- // initialize the jquery code $(document).ready(function(){ //close all the content divs on page load $('.mover').hide(); // toggle slide $('#slideToggle').click(function(){ // by calling sibling, we can use same div for all demos $(this).siblings('.mover').slideToggle(); });  }); // --&gt;&lt;/script&gt;</code></p></blockquote>
<blockquote><p>The CSS:</p>
<p><code>&lt;style type="text/css"&gt;<br />
/* normalize margin, padding */<br />
html, body, div, dl, dt, dd, ul, ol, li,<br />
h1, h2, h3, h4, h5, h6, pre, input,<br />
p, blockquote, th, td, img {<br />
margin: 0;<br />
padding: 0;<br />
}<br />
html, body {<br />
height: 100%;<br />
}<br />
/* normalize font-size for headers */<br />
h1, h2, h3, h4, h5, h6 {<br />
font-size: 100%;<br />
font-weight: normal;<br />
}<br />
/* remove list-style from lists */<br />
ol, ul {<br />
list-style: none;<br />
}<br />
/* normalize font-style and font-weight to normal */<br />
address, caption, cite, code, dfn,<br />
th, var {<br />
font-style: normal;<br />
font-weight: normal;<br />
}<br />
/* remove table border spacing */<br />
table {<br />
border-collapse: collapse;<br />
border-spacing: 0;<br />
}<br />
/* remove border from fieldset and img */<br />
fieldset, img {<br />
border: 0;<br />
}<br />
.container .pusher{<br />
cursor:pointer;<br />
padding:3px 10px 3px 7px;<br />
font-weight:900;<br />
font-size:14px;<br />
margin:0;<br />
}<br />
.container .mover{<br />
padding:3px 10px 3px 7px;<br />
margin: 0;<br />
}<br />
.container {<br />
background-color:#fff;<br />
border-bottom:thin solid #333333;<br />
}<br />
&lt;/style&gt;</code></p></blockquote>
<blockquote><p>The HTML:</p>
<p><code>&lt;div class="container"&gt;<br />
&lt;div class="pusher" id="slideToggle"&gt;Show/Hide Container&lt;/div&gt;<br />
&lt;div style="display: none;" class="mover"&gt;<br />
&lt;p&gt;Here you can place any text, HTML, images or other code.<br />
&lt;/p&gt;<br />
&lt;img src="logo.png" /&gt;&lt;/div&gt;&lt;/div&gt;<br />
&lt;div&gt;<br />
&lt;p&gt;Text or code placed here, will shift down below the opened container.&lt;/p&gt;<br />
&lt;/div&gt;</code></p></blockquote>
<p>Add these components to your page, and you will have a unique and easy JQuery slider.</p>
<p><a href="http://www.stylishdesign.com/wp-content/uploads/2009/01/JQuery/test.php"  target="_self">Click here for a demo.</a></p>
<p><a href="http://www.stylishdesign.com/wp-content/uploads/2009/01/JQuery.zip" >Click here to download source files.</a></p>
<p><a href="http://feedads.g.doubleclick.net/~a/bh2vi3fv7arxPR_5jn3bxdrd0l0/0/da"><img src="http://feedads.g.doubleclick.net/~a/bh2vi3fv7arxPR_5jn3bxdrd0l0/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/bh2vi3fv7arxPR_5jn3bxdrd0l0/1/da"><img src="http://feedads.g.doubleclick.net/~a/bh2vi3fv7arxPR_5jn3bxdrd0l0/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/Stylish-Design/~4/6jl_UQO29xg" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.stylishdesign.com/an-easy-guide-to-jquery-showhide/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.stylishdesign.com/an-easy-guide-to-jquery-showhide/</feedburner:origLink></item>
		<item>
		<title>Step Away From Web Designers Block</title>
		<link>http://feedproxy.google.com/~r/Stylish-Design/~3/3Ey3Uv2gVhM/</link>
		<comments>http://www.stylishdesign.com/step-away-from-web-designers-block/#comments</comments>
		<pubDate>Sun, 29 Mar 2009 20:58:11 +0000</pubDate>
		<dc:creator>Andrew Bonar</dc:creator>
		
		<category><![CDATA[Web Design]]></category>

		<category><![CDATA[designers block]]></category>

		<category><![CDATA[ideas]]></category>

		<category><![CDATA[inspiration]]></category>

		<category><![CDATA[writers block]]></category>

		<guid isPermaLink="false">http://www.stylishdesign.com/?p=502</guid>
		<description><![CDATA[<p>Web Designers, like any other creative individuals will find there comes a point in time in their life where they will suffer from creative block or writers block. There are a variety of things you can do to become free&#8230;</p>]]></description>
			<content:encoded><![CDATA[<p>Web Designers, like any other creative individuals will find there comes a point in time in their life where they will suffer from creative block or writers block. There are a variety of things you can do to become free of the dreaded &#8216;block&#8217; and on your way once again to being creative.<span id="more-502"></span></p>
<h3>Step Away from the Clutter</h3>
<p>Clear your workspace, the desk, the walls around you, the floor. All too often creative minds gather clutter around themselves, in our never ending search for inspiration we gather bits of paper, magazines, trinkets and then when it comes to web designers we accrue modems and printers, scanners, tablets and gadgets like there is no tomorrow. I always find a good clear-out of the space around me helps the idea&#8217;s flow more freely.</p>
<h3>Step Away from the Screen</h3>
<p>Try working through your project with good old fashioned ink and paper. Write down your idea&#8217;s, have a brainstorming session, work through your site map and schematic. All sorts of ideas can be explored on paper and it takes less time than actually creating those pieces on the computer. If you think an idea is bad you simply crumple a piece of paper.</p>
<p>Some tips that I find help me when brainstorming and working on paper include following step 1 and clearing the clutter, then work on as large a piece of paper as you can reasonably work with and work with a big bold color pen, ideally 2 or 3 colors to help you map out various idea&#8217;s.</p>
<h3>Step Away from the Office</h3>
<p>When you are really stuck try simply walking away, literally. The idea here is to get your mind off the project completely. Thereby enabling your subconscious to work through the problems completely unobstructed. A walk in the park I can&#8217;t tell you how many times I&#8217;ve gone to sleep and woken up in the morning with the ideal solution completely formed in my head.<br />
Give your brain a rest from the work of idea generation and organization. Think about something else, take a walk, watch your favorite TV show, get away from the site. When you come back, chances are you&#8217;ll have some new ideas for more notes, and the organizational structure might change.</p>
<h3>Step Away from the Clock</h3>
<p>Try working at different times. If you find that your more creative later in the evening try and arrange your day so that you start much later, getting things out of the way that you may usually done in the evening. Vary your eating patters, if you usually try and work on a full stomach try working before lunch, metaphorically speaking, being &#8216;hungry&#8217; certainly helps me become motivated to work. For some a literal reminder is also helpful, as crazy as it may sound, these little things, like changing your work times and eating habits can make a huge difference.</p>
<h3>Step Away from the Project</h3>
<p>If you are really truly stuck and can&#8217;t move forward then it makes no sense to blindly continue looking for inspiration in a project you are not ready for so try switching to another project. There are always other things that can get you into the work frame of mind, following up small administrative tasks you have been putting off, updating your own website and getting back to client requests or even tidying your email. Something, anything as long as it is productive.</p>
<h3>Step Away from the Norm</h3>
<p>Try taking your work somewhere else. Take your laptop somewhere else. Try working at your local library, a cafe or if the weather is good maybe an outdoor location. Somewhere that allows you to concentrate whilst providing enough distraction to allow your creative juices to flow.</p>
<p>Well I hope these simple idea&#8217;s do not seem too radical and that if you find yourself suffering with the dreaded web designers block that they might help.</p>
<p>I would love to know what helps your creative blocks, feel free to leave your comments.</p>
<p><a href="http://feedads.g.doubleclick.net/~a/7Oe-_j_1kIySNnrqBKJwXqVJxhQ/0/da"><img src="http://feedads.g.doubleclick.net/~a/7Oe-_j_1kIySNnrqBKJwXqVJxhQ/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/7Oe-_j_1kIySNnrqBKJwXqVJxhQ/1/da"><img src="http://feedads.g.doubleclick.net/~a/7Oe-_j_1kIySNnrqBKJwXqVJxhQ/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/Stylish-Design/~4/3Ey3Uv2gVhM" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.stylishdesign.com/step-away-from-web-designers-block/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.stylishdesign.com/step-away-from-web-designers-block/</feedburner:origLink></item>
		<item>
		<title>Google Adwords CPC Checklist</title>
		<link>http://feedproxy.google.com/~r/Stylish-Design/~3/tlhv6gf_2nw/</link>
		<comments>http://www.stylishdesign.com/google-adwords-checklist/#comments</comments>
		<pubDate>Thu, 22 Jan 2009 19:01:52 +0000</pubDate>
		<dc:creator>Andrew Bonar</dc:creator>
		
		<category><![CDATA[How To]]></category>

		<category><![CDATA[Adsense]]></category>

		<category><![CDATA[CPC]]></category>

		<category><![CDATA[Google]]></category>

		<category><![CDATA[Keyword]]></category>

		<category><![CDATA[Money]]></category>

		<category><![CDATA[optimization]]></category>

		<category><![CDATA[search engine]]></category>

		<category><![CDATA[website]]></category>

		<guid isPermaLink="false">http://www.stylishdesign.com/?p=508</guid>
		<description><![CDATA[<p><a href="http://www.stylishdesign.com/wp-content/uploads/2009/01/google-adwords.jpg" ><img class="alignleft size-medium wp-image-513" style="margin-left: 5px; margin-right: 5px;" title="google-adwords" src="http://www.stylishdesign.com/wp-content/uploads/2009/01/google-adwords-300x214.jpg" alt="" width="300" height="214" /></a>Before you start advertising on <a href="http://www.google.com" rel="nofollow" target="_new">Google</a>, it would be a good idea to go through some common sense checks. I have been continually surprised to hear from clients that &#8220;Google <a href=" http://adwords.google.com/select/Login" rel="nofollow" target="_new">Adwords</a> is a waste of money,&#8221; when in fact, in my&#8230;</p>]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.stylishdesign.com/wp-content/uploads/2009/01/google-adwords.jpg" ><img class="alignleft size-medium wp-image-513" style="margin-left: 5px; margin-right: 5px;" title="google-adwords" src="http://www.stylishdesign.com/wp-content/uploads/2009/01/google-adwords-300x214.jpg" alt="" width="300" height="214" /></a>Before you start advertising on <a href="http://www.google.com" rel="nofollow" target="_new">Google</a>, it would be a good idea to go through some common sense checks. I have been continually surprised to hear from clients that &#8220;Google <a href=" http://adwords.google.com/select/Login" rel="nofollow" target="_new">Adwords</a> is a waste of money,&#8221; when in fact, in my opinion, nothing could be farther from the truth. On talking to clients it often pains me to learn that some very simple research was not done before vast sums of money were spent with Google.</p>
<p>So before you &#8216;waste money&#8217; on Google, follow some very simple steps to check whether you should go forward and how much you can afford to bid on a per-click basis.</p>
<p>Of course, before you start your advertising you will need a product. I will assume you have a product in mind already, In which case your first step will be to ascertain whether there is enough demand to make this viable. You could also off course go around this slightly different, first identifying a demand and then creating a product or service. However, for the sake of simplicity I am going to assume you have your product in mind already.</p>
<p>This could of course be your own unique product, my preferred method, or you could be an affiliate selling products or services to others, and many people have success doing this as well.</p>
<p>Here&#8217;s my top 3 checklist.</p>
<h2><span id="more-508"></span>1. Do the Net Earnings Math</h2>
<p>Work out how much you can afford to spend on advertising. To do this you need to identify:</p>
<p>&lt;A&gt; The price of the product</p>
<p>&lt;B&gt; Your commission or profit margin (this will be a percentage)</p>
<p>&lt;C&gt; Estimate of your CPC (cost per click) x100 (That is, use an assumption that 1 out of 100 people will buy your product. Thus, this number is 100.)</p>
<p>Here comes the math - don&#8217;t worry, it&#8217;s super easy:</p>
<p>A x B = P (Your Profit on the product)</p>
<p>C - P = Your net earnings per product sold (Cost minus profit)</p>
<p>This simple calculation is assuming the standard 1% conversion rate. That is, it will work if 1 out of every 100 people buy your product or service. Once you have run the campaign you can amend this accordingly for more accurate forecasts.</p>
<p>Make your initial estimates based on a 1% conversion and then see if the profit per sale is worth the effort required to do the marketing.</p>
<h2>2. Identify the Demand For Your Product or Service</h2>
<p>To gauge whether there is enough demand, there are a couple of tools you can use. We will discuss Google&#8217;s tool.</p>
<p>Using the Google AdWords Keyword tool (<a href="https://adwords.google.com/select/KeywordToolExternal"  target="_blank" rel="nofollow">https://adwords.google.com/select/KeywordToolExternal</a>), enter the description or descriptions of the product you wish to sell, and click &#8220;Use Synonyms.&#8221; This will give you a vast list of search terms people type in when looking for your product or niche. Use the Broad match type for now to get a feel for the numbers. (Use Exact in your actual campaigns to target your audience.) Finally, select Average Estimated CPC to learn how much you will likely have to spend per click. (As a side note, this number is a great way to search for high-paying keywords if you are building pages with AdSense ads!)</p>
<p>Is there enough demand to ensure that it is worth the effort required to market the product? Is the CPC too high to make a net profit? The level of demand for the product combined with the estimated profit per sale that you got &#8216;doing your math&#8217; should be a fair indication of how much you can make.</p>
<h2>3. Increase Your Converstion Rate</h2>
<p>Testing is what separates the amatures from the professionals. Test, test, test! Keep testing. Use Google Website Optimizer to split-test your pages. Keep changing small details (like a single word in the header) to see which landing page version converts better. Think of it this way - you can spend more to get more traffic, or you can spend the same and potentially double your sales if your conversion rate goes from 1% to 2%! How about 5%? You can imagine the net earnings you can make by constantly testing and tweaking your pages.</p>
<h2>Affiliate Marketers and Web Publishers</h2>
<p>If you&#8217;re selling or marketing someone else&#8217;s products, you have to go through two hurdles - the visitor has to click through your landing page, and then actually buy the item on your merchant&#8217;s website.</p>
<p>Do all your research first. Search on affiliate marketing forums and see what the feedback is on your target website. Does the site perform poorly at converting visitors? How much support will you get? What are their bidding restrictions?</p>
<p>You must get in touch with the affiliate manager by email and phone to get a dialogue going. They exist to help you get the most out of your marketing. They may very well have additional materials, information or support for you, from their top-selling products to average conversion rates to future promotions. If they do not give this information to you, or do not even return your call, do not deal with the company, at least as far as using a CPC campaign</p>
<p>Keeping this top 3 checklist in mind will help you focus on your campaign and give you a better idea on how much money you will spend on Google Adwords and, more importantly, how much money you can make (or waste.)</p>
<p><a href="http://feedads.g.doubleclick.net/~a/PDS_oajGooiqWXvZrZdRiw0JNfg/0/da"><img src="http://feedads.g.doubleclick.net/~a/PDS_oajGooiqWXvZrZdRiw0JNfg/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/PDS_oajGooiqWXvZrZdRiw0JNfg/1/da"><img src="http://feedads.g.doubleclick.net/~a/PDS_oajGooiqWXvZrZdRiw0JNfg/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/Stylish-Design/~4/tlhv6gf_2nw" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.stylishdesign.com/google-adwords-checklist/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.stylishdesign.com/google-adwords-checklist/</feedburner:origLink></item>
		<item>
		<title>Why, When and How to use Web Templates</title>
		<link>http://feedproxy.google.com/~r/Stylish-Design/~3/z3UdQnRYTYs/</link>
		<comments>http://www.stylishdesign.com/why-when-and-how-to-use-web-templates/#comments</comments>
		<pubDate>Tue, 23 Dec 2008 12:44:38 +0000</pubDate>
		<dc:creator>Anders</dc:creator>
		
		<category><![CDATA[How To]]></category>

		<category><![CDATA[blog]]></category>

		<category><![CDATA[templates]]></category>

		<category><![CDATA[Web Design]]></category>

		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.stylishdesign.com/?p=500</guid>
		<description><![CDATA[<p>Stylish Design has recently started offering <a href="http://wordpress.org/"  rel="nofollow" target="_new">WordPress</a> and soon other web design templates for free download. So I thought it would be a good idea to cover the topic of templates in web design. I hope to write a balanced article&#8230;</p>]]></description>
			<content:encoded><![CDATA[<p>Stylish Design has recently started offering <a href="http://wordpress.org/"  rel="nofollow" target="_new">WordPress</a> and soon other web design templates for free download. So I thought it would be a good idea to cover the topic of templates in web design. I hope to write a balanced article explaining how to utilize templates and remain professional.</p>
<p>When it comes to graphics and web design many website owners try to keep away from using templates of any kind, whether it is graphics or website templates, ebook covers, layouts or promotional banners. This is because many people are entrenched in the idea that using templates is unprofessional and may damage their credibility in some way.</p>
<p>Templates utilized badly can indeed tarnish your image &#8212; obviously you have spent some time coming up with a unique identity and therefore it makes sense for your website to be unique as well.</p>
<p>That does not discount the ability for you to utilize templates however, they can be a beneficial aid to design and also provide a much faster route to market by speeding up the development process.</p>
<h2><span id="more-500"></span>The Right Way to use Web Templates</h2>
<p>A template should not be seen as a finished or complete solution. You are able and should customize your template to suit your needs and to match your branding. Some customization work can be so extensive that you could consider the finished piece a totally new and stylish design.</p>
<p>The template is used as a base for your web design and development work, as it provides the framework for you to work within and inevitably saves you time and money. This time can be used more productively generating content or additional marketing collateral.</p>
<p>Of course, it isn&#8217;t necessary to completely redesign a template for it to be both unique and retain your corporate identity. Changing just a few elements, a couple of key graphics, updating a stylesheet to retain your corporate colors and you can have an original site that is functional and well designed.</p>
<p>Hiring a professional designer to create an online identity for your from scratch can be a time consuming and extremely costly process. Consider the benefits of having a template customized to your requirements by a professional, or if you&#8217;re confident with Photoshop, HTML and CSS why not give it a go yourself?</p>
<h2>Mistakes to Avoid When Choosing a Template</h2>
<p>Website templates are extremely affordable and, as we have already discussed, can save you a lot of time and effort when it comes to creating a new layout for your website or <a href="http://en.wikipedia.org/wiki/Blog"  rel="nofollow" target="_new">blog</a>. However, not all graphic templates are suitable, so you have to be careful when choosing one. So let us consider some of the mistakes to avoid and considerations you should have in mind when choosing a website template.</p>
<p>The first thing to consider is whether you are using a CMS or a Blog System, such as WordPress, Joomla or osCommerce for example. If you are then it&#8217;s probably a good idea to find a template pre-designed for your system and then customize that. You can of course get a website template designed and then ask an expert in the field of your particular CMS or Blog to convert your template to a theme, however this can sometimes be costly.</p>
<p>The other obvious mistake people often make is choosing a great looking but extremely popular template. The problem here is unless you invest a significant amount of time into customizing your template, then your website is in danger of appearing a little generic.</p>
<p>A great way to choose a theme is to find one not specifically designed for your sites&#8217; topic. For example, if your running an online florist, consider utilizing a template created for a webhost. Replacing images of servers and computer cables for flowers and bouquets to create your own unique design is one suggestion. This way, you do not have to make major changes to achieve a unique design in your niche.</p>
<p>Another important point to remember is to choose a design with your audience in mind. The template needs to suit your purpose and meet the requirements of your audience. Do not simply choose a template based on looks &#8212; a black-background web template designed with online gamers in mind would not look right for your floral business, for example! While design will always remain a subjective issue, there are fundamental elements that make for good design.</p>
<p><a href="http://feedads.g.doubleclick.net/~a/T5IvLvd2zhspvl-dUh-SpIGXUTE/0/da"><img src="http://feedads.g.doubleclick.net/~a/T5IvLvd2zhspvl-dUh-SpIGXUTE/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/T5IvLvd2zhspvl-dUh-SpIGXUTE/1/da"><img src="http://feedads.g.doubleclick.net/~a/T5IvLvd2zhspvl-dUh-SpIGXUTE/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/Stylish-Design/~4/z3UdQnRYTYs" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.stylishdesign.com/why-when-and-how-to-use-web-templates/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.stylishdesign.com/why-when-and-how-to-use-web-templates/</feedburner:origLink></item>
		<item>
		<title>#1 Position on Live Search and MSN</title>
		<link>http://feedproxy.google.com/~r/Stylish-Design/~3/R9vV4kyAs_0/</link>
		<comments>http://www.stylishdesign.com/1-position-on-live-search-and-msn/#comments</comments>
		<pubDate>Fri, 05 Dec 2008 12:57:38 +0000</pubDate>
		<dc:creator>Andrew Bonar</dc:creator>
		
		<category><![CDATA[SEO]]></category>

		<category><![CDATA[BackLink]]></category>

		<category><![CDATA[keywords]]></category>

		<category><![CDATA[Live Search]]></category>

		<category><![CDATA[MSN]]></category>

		<guid isPermaLink="false">http://www.stylishdesign.com/?p=482</guid>
		<description><![CDATA[<p>You may well have heard about the &#8220;MSN Loophole&#8221; recently. It is being &#8216;hyped&#8217; as a big thing at the moment by several people online. It is even quite possible you have received one or more emails on the subject&#8230;</p>]]></description>
			<content:encoded><![CDATA[<p>You may well have heard about the &#8220;MSN Loophole&#8221; recently. It is being &#8216;hyped&#8217; as a big thing at the moment by several people online. It is even quite possible you have received one or more emails on the subject in the last 2 or 3 weeks.</p>
<p>There is at least one site selling the &#8217;secrets to a TOP MSN&#8217; position for well in excess of $50. Well, it isn&#8217;t really a secret or a loophole, its not even particularly a new technique, but it is completely real and true. If you know how, then for less than an hour effort and $20 you can get yourself a top position on MSN.</p>
<h2><span id="more-482"></span>Should I Care About MSN?</h2>
<p>Now you might say that MSN has only a small percentage of total search traffic, and you should therefore be concentrating on <a href="http://www.google.com" rel="nofollow" target="_new">Google</a>. If you are in the B2B game that is most certainly true, but if you are a B2C, (ie selling to consumers) then think about your demographic - you may well find that MSN traffic converts far better than your Google traffic. In fact, some studies have shown a close to 100% better conversion rate from MSN traffic over Google.</p>
<p>Whilst it may be true that the MSN market share is small, it still drives millions of visitors on a daily basis. As such, it is still a valuable marketing tool, especially when combined with our ultra simple 5 step process to a number #1 Listing (well, to be fair, a position between 1 and 6 is usually the norm using this method).</p>
<p>I am not offering a magic pill which will fix all your <a href="http://en.wikipedia.org/wiki/Search_engine_optimization"  rel="nofollow" target="_new">SEO</a> worries, and as I said, if your market is business to business then this is probably not even worth pursuing. However if you are targeting the &#8216;bingo mum&#8217; or the &#8216;average joe&#8217; then it is well worth considering using this method to rank high on MSN Searches.</p>
<p>Before I go further, I should make the following clarification: whilst people still refer to MSN search it is in fact now &#8220;<em>Windows Live Search</em>&#8221; from <a href="http://www.microsoft.com/en/us/default.aspx"  rel="nofollow">Microsoft</a>. With news earlier this month that Sun Microsystems will be distributing a Microsoft Live Search-powered toolbar as part of Java Runtime Environment, you can be sure of an increase in user numbers and searches per day.</p>
<p>Currently, MSN or Live Search is the third most used search engine in the U.S., after Google and <a href="http://ww.yahoo.com" rel="nofollow" target="_new">Yahoo</a>, according to Nielsen Netratings.</p>
<h2>The Secret to Gaining the #1 Position in Live Search</h2>
<p>So I know you are itching to know the secret! How do I get my top MSN Live position? Well, it is relatively straightforward, economical and takes very little time.</p>
<p>You do not need a massive site or Portal, huge amounts of content or hundreds of inbound links to get this to work for you. Basically, you need to identify a key phrase to rank for - this does not have to be a 5 word long-tail search query either. It can be simple 2 or 3 word phrase.</p>
<h3>Step 1 - Choose Your Key Phrase</h3>
<p><strong>Choose your key phrase, for example, &#8220;poor credit rating.&#8221; Now, go out and register the domain name &#8220;poor-credit-rating.com&#8221;</strong></p>
<p>Yes, I am afraid it is really as simple as this. Your key-phrase split up by hyphens. You see, Live Search decides if that if your domain name is the same as a user&#8217;s search phrase, it must be highly related and highly relevant.</p>
<h3>Step 2 - Choose Your Title</h3>
<p>That in itself does not guarantee you a top position of course, so Step 2 is to title your page. The page title *MUST* start with your keywords (no hyphens this time) and then match the number of keywords with additional words, so for example &#8220;Poor Credit Rating - Your financial problems solved&#8221;.</p>
<h3>Step 3 - Your <a href="http://en.wikipedia.org/wiki/Meta_tags"  rel="nofollow" target="_new">Meta Tags</a></h3>
<p>Step 3 is your meta-tags. Include your key phrase as your keywords, for example:<br />
&lt;Meta Name=&#8221;keywords&#8221; Content=&#8221;poor credit rating&#8221;&gt;</p>
<p>You should also include your key phrase in your meta description.</p>
<h3>Step 4 - Build a Web Page</h3>
<p>Step 4 is to create your web page - yes it need only be a single page site. Be sure to include a few graphics, and the key phrase a couple of times within the text. Every time your key phrase is used on your other pages, hyperlink them back to your own page.</p>
<h3>Step 5 - Let Live Search Know About It</h3>
<p>Step 5 is to publish your site and let Live Search know about it, you can do that by going here: <a href="http://search.msn.com.sg/docs/submit.aspx"  rel="nofollow">http://search.msn.com.sg/docs/submit.aspx</a></p>
<p>Give it a week or so and witness the results - they are indisputable. If you are not happy with your number 3 or 4 position, then get other sites linking to you (they can be your own) using your key phrase as the anchor, this will improve your ranking even further.</p>
<p><a href="http://feedads.g.doubleclick.net/~a/v1o5IE_Ml4Z1ovBaX6UeYvmChSA/0/da"><img src="http://feedads.g.doubleclick.net/~a/v1o5IE_Ml4Z1ovBaX6UeYvmChSA/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/v1o5IE_Ml4Z1ovBaX6UeYvmChSA/1/da"><img src="http://feedads.g.doubleclick.net/~a/v1o5IE_Ml4Z1ovBaX6UeYvmChSA/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/Stylish-Design/~4/R9vV4kyAs_0" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.stylishdesign.com/1-position-on-live-search-and-msn/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.stylishdesign.com/1-position-on-live-search-and-msn/</feedburner:origLink></item>
		<item>
		<title>Free Wordpress Theme - Gingerbread Man</title>
		<link>http://feedproxy.google.com/~r/Stylish-Design/~3/GrJEWybNDU0/</link>
		<comments>http://www.stylishdesign.com/free-christmas-wordpress-theme/#comments</comments>
		<pubDate>Thu, 04 Dec 2008 19:28:50 +0000</pubDate>
		<dc:creator>Andrew Bonar</dc:creator>
		
		<category><![CDATA[Wordpress Themes]]></category>

		<category><![CDATA[Blogging]]></category>

		<category><![CDATA[themes]]></category>

		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.stylishdesign.com/?p=479</guid>
		<description><![CDATA[<p>This week, as an early Christmas present, we are releasing the first in a series of free Christmas <a href="http://wordpress.org/"  rel="nofollow" target="_new">Wordpress</a> themes. This is themed on the traditional gingerbread man, and makes a great holiday theme. It also may make you hungry for&#8230;</p>]]></description>
			<content:encoded><![CDATA[<p>This week, as an early Christmas present, we are releasing the first in a series of free Christmas <a href="http://wordpress.org/"  rel="nofollow" target="_new">Wordpress</a> themes. This is themed on the traditional gingerbread man, and makes a great holiday theme. It also may make you hungry for some cookies, so get baking!</p>
<p>The theme is completely free to use, and you can even re-distribute the zip file on your own site (intact). Gingerbread Man 1.0 Theme is valid XHTML. We have two versions for you, so download what you like!</p>
<h2>Gingerbread Man Christmas Theme</h2>
<p><a href="http://www.stylishdesign.com/wp-content/uploads/gingerbread_man.zip" ><img class="size-medium wp-image-480" src="http://www.stylishdesign.com/wp-content/uploads/2008/11/screenshot-300x202.gif" alt="" width="300" height="202" /></a></p>
<ul>
<li><a href="http://www.stylishdesign.com/wp-content/uploads/gingerbread_man.zip" >Download the above theme</a></li>
</ul>
<h2>Gingerbread Man 2 Christmas Theme</h2>
<p><a href="http://www.stylishdesign.com/wp-content/uploads/gingerbread_man2.zip" ><img class="size-medium wp-image-492" title="Gingerbread Man 2 Wordpress theme" src="http://www.stylishdesign.com/wp-content/uploads/2008/12/screenshot-300x197.gif" alt="" width="300" height="197" /></a></p>
<ul>
<li><a href="http://www.stylishdesign.com/wp-content/uploads/gingerbread_man2.zip" >Download the above theme</a></li>
</ul>
<p>Download and unzip into your themes folder, and activate!</p>
<p><a href="http://feedads.g.doubleclick.net/~a/PICAjbIwrCX_vSTJ5Qukp9IReIw/0/da"><img src="http://feedads.g.doubleclick.net/~a/PICAjbIwrCX_vSTJ5Qukp9IReIw/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/PICAjbIwrCX_vSTJ5Qukp9IReIw/1/da"><img src="http://feedads.g.doubleclick.net/~a/PICAjbIwrCX_vSTJ5Qukp9IReIw/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/Stylish-Design/~4/GrJEWybNDU0" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.stylishdesign.com/free-christmas-wordpress-theme/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.stylishdesign.com/free-christmas-wordpress-theme/</feedburner:origLink></item>
		<item>
		<title>Blogging for Business: An Overview</title>
		<link>http://feedproxy.google.com/~r/Stylish-Design/~3/IKGv_rHPZLs/</link>
		<comments>http://www.stylishdesign.com/blogging-for-business-an-overview/#comments</comments>
		<pubDate>Mon, 01 Dec 2008 22:09:12 +0000</pubDate>
		<dc:creator>Andrew Bonar</dc:creator>
		
		<category><![CDATA[Tools]]></category>

		<category><![CDATA[Blogger]]></category>

		<category><![CDATA[Blogging]]></category>

		<category><![CDATA[rss]]></category>

		<category><![CDATA[templates]]></category>

		<category><![CDATA[Web Design]]></category>

		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.stylishdesign.com/?p=484</guid>
		<description><![CDATA[<p>Forgive me if I go over old ground here, however the importance of blogging, the benefits and rewards means I feel compelled to cover this topic. Blogs have been around for over 5 years and as a result a whole&#8230;</p>]]></description>
			<content:encoded><![CDATA[<p>Forgive me if I go over old ground here, however the importance of blogging, the benefits and rewards means I feel compelled to cover this topic. Blogs have been around for over 5 years and as a result a whole industry has built up around them, and we have even coined new words such as &#8216;blogosphere&#8217; to describe this massive phenomenom.</p>
<p>Originally, blogs were highly personal in nature, maintained by highly opinionated or verbose individuals with something to say. Sometimes this was focused on a particular subject but more often than not they just followed the whimsical choices of the <a href="http://en.wikipedia.org/wiki/Blog"  rel="nofollow" target="_new">blog</a>&#8217;s author.</p>
<p>Since &#8216;joe public&#8217; so readily adopted the blog format, commercial organizations have spotted the marketing potential for their products and services through others blogs. We have even seen born a niche-advertising sector, offering delivery through widgets and the like.</p>
<p>We then saw the advent of professional bloggers, those blogging for profit, and there have been a number of success stories. More often than not individuals gained financial reward as a result of being offered work in the mainstream media. It has however only been a relatively recent occurrence for business to realize the potential of launching company blogs for marketing potential.</p>
<p>Blogging is a practice that has been around for at least 5 years. It began with average, but opinionated people with something to say, who wanted to share their opinions with anyone who would read them. While it has been popular with the general public, it hasn&#8217;t caught on with many businesses until recently. Blogging can be a powerful tool for marketing and exposure for any business, if done properly. This article will cover the first steps businesses will need to take to set themselves up for successful blogging.<span id="more-484"></span></p>
<h2>Setting Up Your Blog</h2>
<p>The benefits should be obvious - a well written blog that is regularly updated attracts targeted visitors, that will often become subscribers, resulting in a highly targeted marketing channel aimed directly at your niche.</p>
<p>To get started, your first step is to choose a blogging platform, and here you have two initial choices:</p>
<ol>
<li>You can choose to install blog software on your own server - ie <a href="http://wordpress.org" target="_blank">Wordpress.org</a>;</li>
<li>You can go for a free or cheap hosted solution with the blogging company - ie <a href="http://www.blogger.com" target="_blank">Blogger.com</a>.</li>
</ol>
<p>The benefits of the hosted solution is the fact that it is very quick to get up and running. The downside is less control, and you often do not have your own domain name.</p>
<p>If you choose to host your own blog then which application you install will depend very much on which additional functionality you would like to see on your blog. I highly recommend <a href="http://wordpress.org/"  rel="nofollow" target="_new">WordPress</a>. If your <a href="http://www.stylishdesign.com/web-hosting-choices/" >web host</a> has a control panel (and which web host does not offer one these days?), then most will include an ability to auto-install a blog. Usually this includes or is WordPress. It can sometimes be a little confusing as they will not always call it WordPress - for instance, Globat calls it GloBlog, but it is indeed WordPress.</p>
<h2>Visual Design, Look and Feel of Your Site - Install a Template</h2>
<p>Once you have installed WordPress or another blog application (and this should be a one-click operation on the vast majority of shared webhosting providers) the first thing you will need to do is configure your blog, and that will be done through a web based control panel. The next big step is the design, or skin, or template, of your blog - basically, the visual design of your site.</p>
<p>You will need to find a template to use or customize, and ideally this will not be one that came with the default installation, as there will be literally a million other sites with the same design. Stylish blog design generally follows the same format, and this is part of what makes them so popular. Through the years designers know what good, usable design is, so when you pick a brand new blog for the first time, the interface is familiar.</p>
<h2>So, What Do You Write?</h2>
<p>Finally, we come to your content, the single most important factor in the success of your blog. It is important that you regularly update your site, so if you do not have the resources to maintain your blog there is little point in getting started. It is not like a regular web site, where to some degree you can &#8217;set and forget&#8217; it. You need to begin a conversation with your viewers.</p>
<p>Whenever you create and post content, your article becomes syndicated to your viewers and various blogging channels. This ability is known as <a href="http://www.stylishdesign.com/rss-syndication/" >RSS</a>, and some would say this is the single most powerful feature of your blog, and the reason for the success of this tool. With RSS, you can quickly and easily spread your message around the world - everybody who is subscribed to your blog will receive a notification, either in their reader or via email.</p>
<p>If you do not have time to constantly update your blog, there are shortcuts you can take. You do not have to write (or have written) lengthy, original articles - such as the one you are reading now - to have a popular and well trafficked blog. There exists another style of blogging, and this is the collection of news, articles and snippets from around the web, centered on a single topic. Blogs often collate such information, offering comment and analysis relevant to their readers. You can simply read and collect the RSS feeds from other blogs and place them on your site, commenting on them in your own site, reviewing any new products, etc. Many bloggers have large followings basically because they are skilled at finding interesting topics from other sites and saying &#8220;Hey, check this out!&#8221;</p>
<p>Whichever route you take, you can be assured of success if you stick with a formula of regularly updated, and high quality content that is relevant to your readers (i.e. your customers). Once your blog is up and running you will have started a truly organic marketing vehicle, and you will not have to concern yourself too highly with keywords and the like as they will naturally happen as a result of your attempts to deliver relevant information.</p>
<p>If you have not already launched your first blog then now really is the time to do so. StylishDesign.com will have a number of upcoming articles and features that will help you along the way - so check back soon!</p>
<p><a href="http://feedads.g.doubleclick.net/~a/2dzXD7OwNBbJADV5hYgm6yVTyHw/0/da"><img src="http://feedads.g.doubleclick.net/~a/2dzXD7OwNBbJADV5hYgm6yVTyHw/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/2dzXD7OwNBbJADV5hYgm6yVTyHw/1/da"><img src="http://feedads.g.doubleclick.net/~a/2dzXD7OwNBbJADV5hYgm6yVTyHw/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/Stylish-Design/~4/IKGv_rHPZLs" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.stylishdesign.com/blogging-for-business-an-overview/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.stylishdesign.com/blogging-for-business-an-overview/</feedburner:origLink></item>
		<item>
		<title>RSS Syndication: Getting Started Using Blog or CMS Software</title>
		<link>http://feedproxy.google.com/~r/Stylish-Design/~3/iOfrZ8T3xvc/</link>
		<comments>http://www.stylishdesign.com/rss-syndication/#comments</comments>
		<pubDate>Thu, 20 Nov 2008 12:10:20 +0000</pubDate>
		<dc:creator>Andrew Bonar</dc:creator>
		
		<category><![CDATA[Tools]]></category>

		<category><![CDATA[Blogger]]></category>

		<category><![CDATA[Internet]]></category>

		<category><![CDATA[Joomla]]></category>

		<category><![CDATA[online traffic]]></category>

		<category><![CDATA[rss]]></category>

		<category><![CDATA[Typepad]]></category>

		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.stylishdesign.com/?p=464</guid>
		<description><![CDATA[<p>If RSS and syndication puts your head in a spin then <a href="http://www.stylishdesign.com/rss-syndication-an-overview/" >start here first</a>. That is the first article in this series of utilising RSS for syndication and it covers the basic terminology, the technology and its capabilities and benefits.</p>
<p>If&#8230;</p>]]></description>
			<content:encoded><![CDATA[<p>If RSS and syndication puts your head in a spin then <a href="http://www.stylishdesign.com/rss-syndication-an-overview/" >start here first</a>. That is the first article in this series of utilising RSS for syndication and it covers the basic terminology, the technology and its capabilities and benefits.</p>
<p>If you are still reading I can assume you know the fundamentals about RSS and appreciate the tremendous marketing potential of syndication. We touched on the ATOM feed in the previous article, and if you have opted to use the ATOM method of syndication then this article will on the most part still be of benefit.<span id="more-464"></span></p>
<h2>RSS and Blogging</h2>
<p>RSS (or indeed ATOM) feeds are widely being utilized by blogs and news sites of all sizes. There are astute etailers that also broadcast and publish information using these feeds. Although sites are usually using RSS to syndicate news headlines and summaries, you do not have to stick to the conformed norm - instead, you can always try and be more stylish! Think syndication of product information, whether these are special offers or driver updates or images of new products, even help videos.</p>
<p>That is not to say that there is not a tremendous amount to be gained by simple syndication of news headlines, or ideally summaries, to keep clients, partners, resellers and potential customers abreast of your corporate news. If that is your primary aim I assume you already have a <a href="http://en.wikipedia.org/wiki/Blog"  rel="nofollow" target="_new">blog</a> for your site, and if not then I highly recommend you get one. There are many self-hosted or free web-based service options, and blogging should be part of your basic online marketing strategy.</p>
<p>If you have a CMS driven website or alternatively a Blog application then they will usually either have an RSS feed as a fundamental feature or there will be a module or component available to make it easy. I will cover various applications in more detail in a moment. Getting your blog in place would be &#8217;step one&#8217; in the process.</p>
<h2>See You Later Aggregator</h2>
<p>However, there is more to marketing your feeds than simply publishing them online. Just as you need to submit your website to <a href="http://www.google.com" rel="nofollow" target="_new">Google</a> and others, you need to submit your site to a variety of &#8216;aggregators&#8217;. They will essentially help get your RSS found and publicized and enable your users to have your updates provided to them right on their desktop or RSS reader application.</p>
<p>If you are looking for end users and real eyeballs then there is one clear leader in the field of RSS/ATOM integration, and as an added benefit of using their service, they give you the ability to track your subscribers. That service is Feedburner.com, and having been acquired by Google in 2007 it is sure to continue to be a leader for a long time to come. However you should take a look at what else is out there and potentially promote your feeds through some of those services too.</p>
<p>There are comprehensive lists available, so get the links to your feeds and start publicizing them at the sites of aggregators. The following are two very good lists:</p>
<ul>
<li> <a href="http://www.newsonfeeds.com/faq/aggregators"  target="_blank" rel="nofollow">http://www.newsonfeeds.com/faq/aggregators</a></li>
<li><a href="http://www.newsonfeeds.com/faq/aggregators"  target="_blank" rel="nofollow">http://en.wikipedia.org/wiki/List_of_feed_aggregators</a></li>
</ul>
<p>If you are running any of the following applications then we have some additional tips on getting you started:</p>
<h2><a href="http://wordpress.org/"  rel="nofollow" target="_new">WordPress</a></h2>
<ul>
<li>Offers RSS Feeds as a standard feature.</li>
<li>For information on customizing your RSS feeds read this article here<br />
<a href="http://codex.wordpress.org/Customizing_Feeds"  target="_blank" rel="nofollow">http://codex.wordpress.org/Customizing_Feeds</a></li>
<li>If you wish to use feedburner to promote your rss feeds then read-up here on an additional module that you will need: <a href="http://www.google.com/support/feedburner/bin/topic.py?topic=13252"  target="_blank" rel="nofollow">http://www.google.com/support/feedburner/bin/topic.py?topic=13252</a></li>
</ul>
<h2>Joomla</h2>
<ul>
<li>Basic syndication as a standard features, although limited to the front page items.</li>
<li>It is set to “on” as standard, and you will find the configuration in Components →  Syndicate.</li>
<li>You are limited to the homepage or one category for syndication (you can control the length of excerpts however). If you want more control then you should take a look at the “Feed Manager” a component you can download here: <a href="http://www.run-digital.com/mehr_zum_rss_feed_manager_2.html"  target="_blank" rel="nofollow">http://www.run-digital.com/mehr_zum_rss_feed_manager_2.html</a></li>
</ul>
<h2>Typepad</h2>
<ul>
<li>On your Weblogs tab, click the “Configure “link for the weblog you want to edit, then click the “Feeds” link to open the Syndication setup page. Select whether you&#8217;d like to provide a Post feed. If this selection is enabled, readers will be able to subscribe to your weblog&#8217;s feed.</li>
</ul>
<h2><a href="https://www.blogger.com" rel="nofollow" target="_new">Blogger</a>.com</h2>
<ul>
<li>Basic RSS and Atom syndication are offered as standard on blogger.com</li>
<li>You can access your sites RSS and Atom feeds here:<br />
Blogger.com RSS feed: http://[blogname].blogspot.com/rss.xml<br />
Blogger.com Atom feed: http://[blogname].blogspot.com/atom.xml</li>
</ul>
<h2>Postnuke</h2>
<ul>
<li>RSS feeds are available by default on a postnuke site. The default feed is <a href="http://www.example.com/backend.php"  target="_blank" rel="nofollow">www.example.com/backend.php</a></li>
</ul>
<h2>PhpNuke</h2>
<ul>
<li>Still running Phpnuke? First, activate ultramode in the Preferences section of the Administration panel. then your rss feed will be available at <a href="http://www.example.com/backend.php"  target="_blank" rel="nofollow">www.example.com/backend.php</a></li>
</ul>
<h2>Other CMS Systems</h2>
<ul>
<li>Please review your vendors website for details, search for &#8220;RSS your software&#8221; on Google</li>
</ul>
<h2>Remember to validate</h2>
<p>Remember to validate your RSS feeds, just to make sure there are no problems. There is a free tool available here: <a href="http://feedvalidator.org/"  target="_blank" rel="nofollow">http://feedvalidator.org/</a></p>
<p><a href="http://feedads.g.doubleclick.net/~a/Z1sZudf3lyP7L1FNWoDtIX6p5OA/0/da"><img src="http://feedads.g.doubleclick.net/~a/Z1sZudf3lyP7L1FNWoDtIX6p5OA/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/Z1sZudf3lyP7L1FNWoDtIX6p5OA/1/da"><img src="http://feedads.g.doubleclick.net/~a/Z1sZudf3lyP7L1FNWoDtIX6p5OA/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/Stylish-Design/~4/iOfrZ8T3xvc" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.stylishdesign.com/rss-syndication/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.stylishdesign.com/rss-syndication/</feedburner:origLink></item>
		<item>
		<title>RSS Syndication: An overview</title>
		<link>http://feedproxy.google.com/~r/Stylish-Design/~3/4NN-vp1RLos/</link>
		<comments>http://www.stylishdesign.com/rss-syndication-an-overview/#comments</comments>
		<pubDate>Tue, 18 Nov 2008 16:23:56 +0000</pubDate>
		<dc:creator>Andrew Bonar</dc:creator>
		
		<category><![CDATA[Tools]]></category>

		<category><![CDATA[Blogger]]></category>

		<category><![CDATA[Internet]]></category>

		<category><![CDATA[Joomla]]></category>

		<category><![CDATA[online traffic]]></category>

		<category><![CDATA[rss]]></category>

		<category><![CDATA[Typepad]]></category>

		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.stylishdesign.com/?p=458</guid>
		<description><![CDATA[<p>Well you must have come across the term RSS, and maybe you have decided it&#8217;s some geeky technical tool and of no real interest to you or your visitors.</p>
<p>If that is the case then you are missing out on an&#8230;</p>]]></description>
			<content:encoded><![CDATA[<p>Well you must have come across the term RSS, and maybe you have decided it&#8217;s some geeky technical tool and of no real interest to you or your visitors.</p>
<p>If that is the case then you are missing out on an extremely powerful free marketing tool. When publicized properly and combined with a <a href="http://en.wikipedia.org/wiki/Blog"  rel="nofollow" target="_new">blog</a> that has good content, you are on a guaranteed route to &#8216;viral&#8217; success. There is no marketing more stylish than organic marketing, and this is organic marketing at its best.</p>
<p>As DeWitt Clinton states “RSS, as a representation of an idea, is perhaps the single most influential cultural shift of the post-2001 technical and business community. RSS is the embodiment of the notion of sharing and syndication. Businesses will do well to heed the lessons being taught by people like Dave Winer and Robert Scoble.”<span id="more-458"></span></p>
<h2>What is RSS?</h2>
<p><img class="size-medium wp-image-474 alignright" title="rss-feed-icons" src="http://www.stylishdesign.com/wp-content/uploads/2008/11/rss-feed-icons-300x299.jpg" alt="" width="240" height="239" />RSS stands for Really Simple Syndication or Rich Site Summary depending who you ask. What no one argues about is that it&#8217;s a means of providing content syndication to others. It gives you the ability to automatically republish an article, possibly just a headline or even an image, by another application such as a website, online newspaper or blog.</p>
<p>You can include all manner of applications including audio and video in your syndicated content. This puts you in control, and hundreds of thousands of sites are already providing headline, article summaries, sound and video clips under all sorts of licensing agreements utilising this technology.</p>
<p>Having an RSS feed is a means of creating publicity for your website, and its power should not be underestimated. It may simply be a headline as I stated previously or it may include a summary and photos of the latest posting. The term Rich Site Summary comes from the fact you can provide a rich multimedia experience via rss, providing not just a summary of content but include images or video too.</p>
<p>An RSS document, often called a &#8220;feed&#8221;  or &#8220;channel,&#8221; includes meta-data such as publishing dates and authorship. Therefore web feeds benefit publishers by letting them syndicate content quickly and automatically with certain information. The originating publisher maintains complete control of content at all times.</p>
<p>The RSS feed usually contains the title of the update originating from the website, and it&#8217;s normal practice for the website displaying your content to a include a link to the source website.</p>
<h2>RSS and Internet Marketing</h2>
<p>The RSS concept was born at Netscape. They developed the system, intending it to be used for customization of personal homepages - creating links to web pages that interested them as a kind of advanced website bookmarking tool.</p>
<p>The use of RSS as an Internet marketing tool was the last thing on the mind of RSS technology developers. That does not in any way denigrate their power as marketing medium.</p>
<p>Major Corporations intending to use RSS for marketing their products and services would consider partnering with email account providers, (e.g. Hotmail, <a href="http://ww.yahoo.com" rel="nofollow" target="_new">Yahoo</a> etc); networking websites (e.g. Myspace, Multiply, Bebo, Hi5); websites of newspapers and television network websites (e.g. FT.com, CNN) and the like. That does not mean small business cannot harness the power of rss.</p>
<p>Small business owners and e-tailers should also consider social media and networking websites, as well as creating blogs on free networks (e.g. Blogspot, Blogger) and websites of clubs and organizations that would probably make use of their products or services. For example, a sports shop can look for the website of their local running/athletics club for possible RSS marketing.</p>
<h2>RSS &amp; Beyond</h2>
<p>There is a slight deviation from the RSS standard, and that is the Atom Feed. The differences are somewhat technical, however if you are in the web publishing business for financial profit, looking to syndicate a lot of rich multimedia content then you may wish to consider the Atom standard.  Technically it offers everything already covered in this article, however there are a few small variations in the standard, that I would personally consider improvements especially for the commercial sector.</p>
<p>Not least of which is the ability to include copyright/licensing information with your feed. There are some other fundamental differences if you want to see a &#8216;feature comparison&#8217; table then check out Noori&#8217;s blog post here: <a href="http://mindboosternoori.blogspot.com/2006/08/feeds-rss-vs-atom.html"  target="_blank" rel="nofollow">http://mindboosternoori.blogspot.com/2006/08/feeds-rss-vs-atom.html</a></p>
<h2>Getting started</h2>
<p>Check back in the next few days for the next part of this article telling you how to get started by implementing RSS feeds on your site and then promoting them online. SO whether you are running a <a href="https://www.blogger.com" rel="nofollow" target="_new">Blogger</a> blog or hosted <a href=" http://wordpress.org/" rel="nofollow" target="_new">wordpress</a>, Joomla or still have a nuke based site we will point you in the right direction for syndicating your content and getting your content the widest possible coverage.</p>
<p><a href="http://feedads.g.doubleclick.net/~a/xn1_wp5CzbbHMOMB1_1SizhT6TA/0/da"><img src="http://feedads.g.doubleclick.net/~a/xn1_wp5CzbbHMOMB1_1SizhT6TA/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/xn1_wp5CzbbHMOMB1_1SizhT6TA/1/da"><img src="http://feedads.g.doubleclick.net/~a/xn1_wp5CzbbHMOMB1_1SizhT6TA/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/Stylish-Design/~4/4NN-vp1RLos" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.stylishdesign.com/rss-syndication-an-overview/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.stylishdesign.com/rss-syndication-an-overview/</feedburner:origLink></item>
		<item>
		<title>Thinking about a Flash-based site?</title>
		<link>http://feedproxy.google.com/~r/Stylish-Design/~3/RfOXfh8h7Xo/</link>
		<comments>http://www.stylishdesign.com/thinking-about-a-flash-based-site/#comments</comments>
		<pubDate>Thu, 13 Nov 2008 12:01:55 +0000</pubDate>
		<dc:creator>Andrew Bonar</dc:creator>
		
		<category><![CDATA[Web Design]]></category>

		<category><![CDATA[ajax]]></category>

		<category><![CDATA[Flash]]></category>

		<category><![CDATA[Internet]]></category>

		<category><![CDATA[web usability]]></category>

		<guid isPermaLink="false">http://www.stylishdesign.com/?p=433</guid>
		<description><![CDATA[<p>Over the years, Flash-based websites have come in and out of fashion. At one point in the late 90&#8217;s it seemed like every website you visited had a gratuitous &#8216;flash&#8217; movie or component as an obnoxious introduction. Thankfully those days&#8230;</p>]]></description>
			<content:encoded><![CDATA[<p>Over the years, Flash-based websites have come in and out of fashion. At one point in the late 90&#8217;s it seemed like every website you visited had a gratuitous &#8216;flash&#8217; movie or component as an obnoxious introduction. Thankfully those days are now over. If you are considering using Flash within your site design then you should give it careful consideration first.</p>
<p>Admittedly, Macromedia (now owned by Adobe) is increasingly cramming more functionality and incredible features into Flash and making it ever more attractive to web designers looking to create something a little different. However, it is important to remember that those &#8216;funky cool features&#8217; come at a price, and I am not just talking about the 19 year old emo-flash-guru you hired at Elance, but the other factors you need to consider.</p>
<p>First however, before I get an onslaught of email from Fans of Flash, some of the benefits:<span id="more-433"></span></p>
<h2><em>Interactivity</em></h2>
<p>Flash&#8217;s Actionscript opens up a vast array of possibilities, including..</p>
<p><strong>Animations</strong> - These include banner ads, online greeting cards, and cartoons. Many other types of Flash applications include animation elements as well.</p>
<p><strong>Games</strong> - Many games are built with Flash. Games usually combine the animation capabilities of Flash with the logic capabilities of ActionScript.</p>
<p><strong>User interfaces</strong> - Many website designers use Flash to design user interfaces. The interfaces include simple navigation bars as well as much more complex interfaces such as online hotel or airline reservation systems.</p>
<p><strong>Flexible messaging areas</strong> - These are areas in web pages that designers use for displaying information that may change over time. A flexible messaging area (FMA) on a restaurant website might display information about each day&#8217;s menu specials.</p>
<p><strong>Rich Internet applications</strong> - These include a calendar application, a price-finding application, a shopping catalog, an education and testing application, or any other application that presents remote data with a graphically rich interface.</p>
<h3><em><strong>A standardized site</strong></em></h3>
<p>With Flash, you do not have to worry about cross-browser compatibility. No more worries about how your carefully crafted css code will render in Internet Explorer, Firefox or Opera. Wherever you place a component or element in Flash, that element will always appear exactly as you intended long as the user has Flash Player installed.</p>
<h3><em>Better expression through animation</em></h3>
<p>In Flash, one can make use of its animating features to convey a message in a much more efficient and effective way. Flash is a lightweight option for animation because it is vector-based (information is saved as mathematical lines, not pixels, and hence are smaller file sizes) as opposed to real &#8220;movie files&#8221; that are raster-based and hence much larger in size.</p>
<h2>But Remember . . .</h2>
<h3><strong><em>The Flash player</em></strong></h3>
<p>People have to download the Flash player in advance before they can view Flash movies. If you utilize Flash as the only means for accessing your site, <strong>you will notice a drop in visitor numbers</strong>.  Not everyone is willing or able to download the Flash player. You&#8217;ll also have to put in additional work in redirecting the user to the Flash download page if he or she doesn&#8217;t have the player installed.</p>
<h3><em><strong>Site optimization</strong></em></h3>
<p>If your content was presented in Flash, most search engines wouldn&#8217;t be able to index your content. Hence, you will not be able to rank well in search engines and there will be less traffic heading to your site.</p>
<h3><em><strong>Loading time</strong></em></h3>
<p>Users have to wait longer than usual to load Flash content compared to regular text and images.</p>
<h2>To Flash or Not to Flash?</h2>
<p>Unless you absolutely need the interactivity and motion that comes with Flash, avoid using it, especially if you are more concerned with <a href="http://www.submitexpress.com/optimize.html"  rel="nofollow" target="_new">search engine optimization</a>. If you want some interactive graphical elements, use a combination of Flash and HTML with alternatives for those users that do not have Flash. If you wish to create an exciting interface but are worried about Flash, there are great alternatives, such as utilizing AJAX programming (asynchronous JavaScript).</p>
<p>Flash is excellent as a stand-alone program within your site. If you own a paint store and wish your users to experience a virtual showroom where they can paint their walls online, Flash is perfect for this. If you have an automotive showroom, using Flash to showcase your models in 3-D is another great idea for Flash.</p>
<p>As always, consider your audience. If your website is aimed at 25 year old web designers in New York, it is a fair bet they have flash installed and will be accessing your site using broadband or better, so go for it . . .</p>
<p>Flash is like any other tool. Used wisely, you can have an excellent and stylish website. Used wrongly, and you will only frustrate and turn away your online visitors.</p>
<p><a href="http://feedads.g.doubleclick.net/~a/ZyXpB9_a6PnBF5fCDiIeVjQOdbI/0/da"><img src="http://feedads.g.doubleclick.net/~a/ZyXpB9_a6PnBF5fCDiIeVjQOdbI/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/ZyXpB9_a6PnBF5fCDiIeVjQOdbI/1/da"><img src="http://feedads.g.doubleclick.net/~a/ZyXpB9_a6PnBF5fCDiIeVjQOdbI/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/Stylish-Design/~4/RfOXfh8h7Xo" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.stylishdesign.com/thinking-about-a-flash-based-site/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.stylishdesign.com/thinking-about-a-flash-based-site/</feedburner:origLink></item>
	</channel>
</rss>
