<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Professional Web Templates &#38; Customization Service</title>
	<atom:link href="http://www.collectivewebdesign.net/index.php/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.collectivewebdesign.net</link>
	<description>Professional Web Templates &#38; Customization Service</description>
	<lastBuildDate>Sat, 10 Oct 2009 23:31:10 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Open Hyperlink in a New Window</title>
		<link>http://www.collectivewebdesign.net/index.php/tutorial/open-hyper-link-in-a-new-window/</link>
		<comments>http://www.collectivewebdesign.net/index.php/tutorial/open-hyper-link-in-a-new-window/#comments</comments>
		<pubDate>Sat, 26 Sep 2009 02:32:11 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Tutorial]]></category>

		<guid isPermaLink="false">http://www.collectivewebdesign.net/?p=460</guid>
		<description><![CDATA[If you want to prevent your visitors from leaving your website whenever they click on a link, simply, copy the code below and paste it in your link.


1
target=&#34;_blank&#34;


Example: of an HTML link:
&#60;a href="www.anotherwebsite.com" target="_blank"&#62;Open Another Website&#60;&#47;a&#62;


The target attribute “_blank” defines where the linked document will be opened. 
]]></description>
			<content:encoded><![CDATA[<p>If you want to prevent your visitors from leaving your website whenever they click on a link, simply, copy the code below and paste it in your link.</p>
<p></p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
</pre></td><td class="code"><pre class="java" style="font-family:monospace;">target<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;_blank&quot;</span></pre></td></tr></table></div>

<p>
Example: of an HTML link:</p>
<p><code>&lt;a href="www.anotherwebsite.com"</code><span style="background-color: #FFFF00"><code> target="_blank"</code></span><code>&gt;Open Another Website&lt;&#47;a&gt;</code></p>
<p>
<br />
The target attribute “_blank” defines where the linked document will be opened. </p>
]]></content:encoded>
			<wfw:commentRss>http://www.collectivewebdesign.net/index.php/tutorial/open-hyper-link-in-a-new-window/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>How To Create IE Only Stylesheet</title>
		<link>http://www.collectivewebdesign.net/index.php/tutorial/how-to-create-ie-only-stylesheet/</link>
		<comments>http://www.collectivewebdesign.net/index.php/tutorial/how-to-create-ie-only-stylesheet/#comments</comments>
		<pubDate>Sat, 26 Sep 2009 02:21:57 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Tutorial]]></category>

		<guid isPermaLink="false">http://www.collectivewebdesign.net/?p=454</guid>
		<description><![CDATA[Internet Explorer 6 (IE6) doesn’t have the standard CSS styling other browsers have. For this reason you may need to specify alternate style sheets for different browsers.


Below you will find three codes you can use to create style sheets for different versions of IE.
IE ONLY:

1
2
3
&#60;!--&#91;if IE&#93;&#62;
	&#60;link rel=&#34;stylesheet&#34; type=&#34;text/css&#34; href=&#34;ie-only.css&#34; /&#62;
&#60;!&#91;endif&#93;--&#62;

IE 7 ONLY:

1
2
3
&#60;!--&#91;if IE 7&#93;&#62;
	&#60;link href=&#34;IE-7.css&#34; [...]]]></description>
			<content:encoded><![CDATA[<p>
Internet Explorer 6 (IE6) doesn’t have the standard CSS styling other browsers have. For this reason you may need to specify alternate style sheets for different browsers.
</p>
<p></p>
<p>Below you will find three codes you can use to create style sheets for different versions of IE.</p>
<p><strong>IE ONLY:</strong></p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
</pre></td><td class="code"><pre class="java" style="font-family:monospace;"><span style="color: #339933;">&lt;!--</span><span style="color: #009900;">&#91;</span><span style="color: #000000; font-weight: bold;">if</span> IE<span style="color: #009900;">&#93;</span><span style="color: #339933;">&gt;</span>
	<span style="color: #339933;">&lt;</span>link rel<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;stylesheet&quot;</span> type<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;text/css&quot;</span> href<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;ie-only.css&quot;</span> <span style="color: #339933;">/&gt;</span>
<span style="color: #339933;">&lt;!</span><span style="color: #009900;">&#91;</span>endif<span style="color: #009900;">&#93;</span><span style="color: #339933;">--&gt;</span></pre></td></tr></table></div>

<p><strong>IE 7 ONLY:</strong></p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
</pre></td><td class="code"><pre class="java" style="font-family:monospace;"><span style="color: #339933;">&lt;!--</span><span style="color: #009900;">&#91;</span><span style="color: #000000; font-weight: bold;">if</span> IE <span style="color: #cc66cc;">7</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">&gt;</span>
	<span style="color: #339933;">&lt;</span>link href<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;IE-7.css&quot;</span> rel<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;stylesheet&quot;</span> type<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;text/css&quot;</span><span style="color: #339933;">&gt;</span>
<span style="color: #339933;">&lt;!</span><span style="color: #009900;">&#91;</span>endif<span style="color: #009900;">&#93;</span><span style="color: #339933;">--&gt;</span></pre></td></tr></table></div>

<p><strong>IE 6 ONLY:</strong></p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
</pre></td><td class="code"><pre class="java" style="font-family:monospace;"><span style="color: #339933;">&lt;!--</span><span style="color: #009900;">&#91;</span><span style="color: #000000; font-weight: bold;">if</span> IE <span style="color: #cc66cc;">6</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">&gt;</span>
	<span style="color: #339933;">&lt;</span>link rel<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;stylesheet&quot;</span> type<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;text/css&quot;</span> href<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;IE-6.css&quot;</span> <span style="color: #339933;">/&gt;</span>
<span style="color: #339933;">&lt;!</span><span style="color: #009900;">&#91;</span>endif<span style="color: #009900;">&#93;</span><span style="color: #339933;">--&gt;</span></pre></td></tr></table></div>

]]></content:encoded>
			<wfw:commentRss>http://www.collectivewebdesign.net/index.php/tutorial/how-to-create-ie-only-stylesheet/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Remove The Style Bullets from unordered list</title>
		<link>http://www.collectivewebdesign.net/index.php/tutorial/remove-the-style-bullets-from/</link>
		<comments>http://www.collectivewebdesign.net/index.php/tutorial/remove-the-style-bullets-from/#comments</comments>
		<pubDate>Wed, 23 Sep 2009 13:04:50 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Tutorial]]></category>

		<guid isPermaLink="false">http://www.collectivewebdesign.net/?p=441</guid>
		<description><![CDATA[If you want to remove any of the annoying styles like numbers or bullets from your lists &#60;ol&#62;  or &#60;ul&#62; on your website then copy the code below to your css style sheet.

Copy Option One for an unordered  list &#60;ul&#62;

1
ul &#123; list-style-type: none; &#125;

Copy Option Two is fo an ordered list &#60;ol&#62;

1
ol &#123; [...]]]></description>
			<content:encoded><![CDATA[<p>
If you want to remove any of the annoying styles like numbers or bullets from your lists <code>&lt;ol&gt;</code>  or <code>&lt;ul&gt;</code> on your website then copy the code below to your css style sheet.
</p>
<p>Copy Option One for an unordered  list <code>&lt;ul&gt;</code></p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
</pre></td><td class="code"><pre class="java" style="font-family:monospace;">ul <span style="color: #009900;">&#123;</span> list<span style="color: #339933;">-</span>style<span style="color: #339933;">-</span>type<span style="color: #339933;">:</span> none<span style="color: #339933;">;</span> <span style="color: #009900;">&#125;</span></pre></td></tr></table></div>

<p>Copy Option Two is fo an ordered list <code>&lt;ol&gt;</code></p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
</pre></td><td class="code"><pre class="java" style="font-family:monospace;">ol <span style="color: #009900;">&#123;</span> list<span style="color: #339933;">-</span>style<span style="color: #339933;">-</span>type<span style="color: #339933;">:</span> none<span style="color: #339933;">;</span> <span style="color: #009900;">&#125;</span></pre></td></tr></table></div>

]]></content:encoded>
			<wfw:commentRss>http://www.collectivewebdesign.net/index.php/tutorial/remove-the-style-bullets-from/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Change hyper link text rollovers</title>
		<link>http://www.collectivewebdesign.net/index.php/tutorial/change-hyper-link-rollovers/</link>
		<comments>http://www.collectivewebdesign.net/index.php/tutorial/change-hyper-link-rollovers/#comments</comments>
		<pubDate>Mon, 21 Sep 2009 16:03:53 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Tutorial]]></category>

		<guid isPermaLink="false">http://www.collectivewebdesign.net/?p=414</guid>
		<description><![CDATA[CSS Styles are a simple and fast way of making your site look good. In this tutorial you will learn how to make cool text rollovers.

In this tutorial we will be working with the a:hover style! The steps to follow are given below:
If you want the links effect to change throught the site then use [...]]]></description>
			<content:encoded><![CDATA[<p>
CSS Styles are a simple and fast way of making your site look good. In this tutorial you will learn how to make cool text rollovers.
</p>
<p>In this tutorial we will be working with the a:hover style! The steps to follow are given below:</p>
<p>If you want the links effect to change throught the site then use option 1<br />
If you only want to have the links to change in a particular place then use option 2</p>
<p><strong>Option 1. Hyper Text Rollover Effect throughout the site</strong></p>
<p>Copy this code into your CSS Styles yourstyle.css file</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
</pre></td><td class="code"><pre class="java" style="font-family:monospace;"><span style="color: #666666; font-style: italic;">/* mouse over link */</span>
a<span style="color: #339933;">:</span>hover <span style="color: #009900;">&#123;</span> 
 font<span style="color: #339933;">-</span>family<span style="color: #339933;">:</span> Arial, Helvetica, sans<span style="color: #339933;">-</span>serif<span style="color: #339933;">;</span>
 font<span style="color: #339933;">-</span>size<span style="color: #339933;">:</span> 10pt<span style="color: #339933;">;</span>
 color<span style="color: #339933;">:</span> #<span style="color: #cc66cc;">990000</span>
<span style="color: #009900;">&#125;</span></pre></td></tr></table></div>

<p><strong>Option 2. Hyper Text Rollover Effect in a particular place of your site </strong></p>
<p>Copy this code into your CSS page &#8220;yourstyle.css&#8221; file</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
</pre></td><td class="code"><pre class="java" style="font-family:monospace;"><span style="color: #666666; font-style: italic;">/* mouse over all links in class .links */</span>
.<span style="color: #006633;">links</span> a<span style="color: #339933;">:</span>hover <span style="color: #009900;">&#123;</span> 
   font<span style="color: #339933;">-</span>family<span style="color: #339933;">:</span> Arial, Helvetica, sans<span style="color: #339933;">-</span>serif<span style="color: #339933;">;</span>
   font<span style="color: #339933;">-</span>size<span style="color: #339933;">:</span> 10pt<span style="color: #339933;">;</span>
   color<span style="color: #339933;">:</span> #<span style="color: #cc66cc;">990000</span>
<span style="color: #009900;">&#125;</span></pre></td></tr></table></div>

<p><strong>Example of Option 2</strong></p>
<p>Copy code in the body of your page</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
</pre></td><td class="code"><pre class="java" style="font-family:monospace;"><span style="color: #339933;">&lt;</span>p <span style="color: #000000; font-weight: bold;">class</span><span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;links&quot;</span><span style="color: #339933;">&gt;</span>
Lorem ipsum dolor sit amet, consectetur adipiscing elit. <span style="color: #006633;">Pellentesque</span> a leo in quam placerat egestas vitae sed felis. <span style="color: #006633;">Donec</span> ultrices justo id velit pulvinar blandit. <span style="color: #339933;">&lt;</span>a href<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;link.html&quot;</span><span style="color: #339933;">&gt;</span>Your Link.<span style="color: #339933;">&lt;/</span>a<span style="color: #339933;">&gt;</span>
<span style="color: #339933;">&lt;</span>p<span style="color: #339933;">&gt;</span></pre></td></tr></table></div>

]]></content:encoded>
			<wfw:commentRss>http://www.collectivewebdesign.net/index.php/tutorial/change-hyper-link-rollovers/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Should You Use a Free Website Template</title>
		<link>http://www.collectivewebdesign.net/index.php/blog/should-you-use-a-free-website-template/</link>
		<comments>http://www.collectivewebdesign.net/index.php/blog/should-you-use-a-free-website-template/#comments</comments>
		<pubDate>Fri, 28 Aug 2009 18:03:33 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Blog]]></category>

		<guid isPermaLink="false">http://www.collectivewebdesign.net/?p=252</guid>
		<description><![CDATA[Before you pay thousands of dollars for a custom designed website, consider using a template. I know, sounds like cheating, but I prefer to think of using website templates as a budget-friendly way to launch a business or give your old, tired website a face lift.
Isn&#8217;t Using a Free Template Tacky and &#8220;Cheating?&#8221;
Do you call [...]]]></description>
			<content:encoded><![CDATA[<p>Before you pay thousands of dollars for a custom designed website, consider using a template. I know, sounds like cheating, but I prefer to think of using website templates as a budget-friendly way to launch a business or give your old, tired website a face lift.</p>
<p><strong>Isn&#8217;t Using a Free Template Tacky and &#8220;Cheating?&#8221;</strong></p>
<p>Do you call it cheating if you sew a dress using a pattern? Cook a dish following a recipe? Using a template is no different.
</p>
<p>
Just as you do with cooking and sewing you can add your own embellishments and &#8220;flavor&#8221; to make any template yours. </p>
<p><strong>Are Free Web Templates Customizable and Bug-Free?</strong></p>
<p>There are thousands of free templates available on the web (Google &#8220;free website templates&#8221;) but I suggest also looking at low-cost templates as well. All web templates that can be downloaded are customizable to some degree. </p>
<p>Free templates for WordPress, Joomla, and Drupal often have severe limitations and bugs, and a more &#8220;home grown look.&#8221; They are not &#8220;bad&#8221; but they are not nearly as good as the ones you pay for. </p>
<p>Free CSS and HTML web templates are generally easier to customize and put together better than other application templates (fewer bugs and easier to debug if necessary).</p>
<p>Remember, even purchased templates may have bugs or glitches that you will have to work around. And free or purchased, all templates will need at least some basic tuning. </p>
<p><strong>Won&#8217;t People Know I am Using a Template?</strong></p>
<p>
Maybe. But there is nothing taboo about using templates. Besides, even if you only change the logo on a template remember that there are now about nine billion websites indexed by Google alone so the chances of someone seeing your template used elsewhere are fairly low. </p>
<p><strong>Summary</strong></p>
<p>
Should you use free website and blog templates? Yes! Even if you do not end up actually launching a site using free templates they are an easy way to learn how create or customize a website.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.collectivewebdesign.net/index.php/blog/should-you-use-a-free-website-template/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
		<item>
		<title>Enable Cookies</title>
		<link>http://www.collectivewebdesign.net/index.php/blog/enable-cookies/</link>
		<comments>http://www.collectivewebdesign.net/index.php/blog/enable-cookies/#comments</comments>
		<pubDate>Fri, 21 Aug 2009 19:44:19 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Blog]]></category>

		<guid isPermaLink="false">http://www.collectivewebdesign.net/?p=200</guid>
		<description><![CDATA[It is necessary to have cookies enabled in order for your referral from
our site to track correctly with hostgator. Be sure to follow the directions
below to make sure you have cookies turned on in your web browser.

Mozilla Firefox (1.0 final release and earlier)
Go to the “Tools” menu.
Select “Options”.
Select the “Privacy” icon in the left panel.
Check [...]]]></description>
			<content:encoded><![CDATA[<p>It is necessary to have cookies enabled in order for your referral from<br />
our site to track correctly with hostgator. Be sure to follow the directions<br />
below to make sure you have cookies turned on in your web browser.<br />
<span id="more-200"></span></p>
<h5>Mozilla Firefox (1.0 final release and earlier)</h5>
<p>Go to the “Tools” menu.<br />
Select “Options”.<br />
Select the “Privacy” icon in the left panel.</p>
<p>Check the box corresponding to “Allow sites to set cookies”.<br />
Click “OK” to save changes. </p>
<h5>Mozilla Firefox (3.0)</h5>
<p>Go to the “Tools” menu.<br />
Select “Options”.<br />
Select the “Privacy”.<br />
Set Firefox will: to Use custom settings for history.<br />
Make sure Accept cookies from sites is selected.<br />
Click Exceptions&#8230;.<br />
Make sure the site you&#8217;re trying to access isn&#8217;t listed.<br />
Click “OK” to save changes. </p>
<h5>Windows IE 6.x Browser</h5>
<p>Select Tools<br />
Select Internet Options<br />
Select the Privacy tab.<br />
Select Advanced<br />
Deselect override automatic cookie handling button<br />
Click on the OK button at the bottom of the screen.<br />
Click OK to exit</p>
<h5>Windows IE 5.x Browser</h5>
<p>Go to Tools on the menu bar<br />
Pick Internet Options<br />
Click the Security tab<br />
Select the Custom Level tab<br />
Under “Allow Cookies that are stored on your computer” click “Enable”<br />
Under “Allow per-session cookies (not stored)” click “Enable”<br />
Select OK, Yes you want to save the settings</p>
<h5>Netscape 7.1/Mozilla 5.0 </h5>
<p>Select “Preferences” from the Edit menu.<br />
Click on the arrow next to “Privacy &#038; Security” in the scrolling<br />
window to expand.<br />
Under “Privacy &#038; Security”, select “Cookies.”<br />
Select “Enable all cookies”.<br />
Click “OK”. </p>
<h5>Mac IE 5.x</h5>
<p>Click Edit<br />
Select Preferences<br />
Under the Receiving Files option, select Cookies<br />
Under “When receiving cookies:” select the desired level of cookie<br />
acceptance<br />
Under “When receiving cookies:” select the desired level of cookie<br />
acceptance<br />
Click OK to finish</p>
<h5>Mac IE 4.x</h5>
<p>Go to My AOL on the menu bar<br />
Pick WWW<br />
Go to the Advanced Settings option on the Category menu<br />
Click “Cookies”<br />
When receiving cookies: Click “Never Ask”<br />
Click OK</p>
<h5>Netscape 6.x</h5>
<p>Click Edit on the Toolbar.<br />
Click Preferences<br />
Click the Privacy and Security category; expand the list to show the<br />
subcategories.<br />
Click Cookies<br />
Three options are displayed. Click the appropriate choice:<br />
– Disable cookies<br />
– Enable cookies for the originating web site only<br />
– Enable all cookies<br />
If you want to be notified when a web site tries to set a cookie,<br />
select “Warn me before accepting a cookie.” </p>
<h5>Netscape 4.x</h5>
<p>Go to Edit on the menu bar<br />
Pick Preferences<br />
Go to the Advanced option on the Category menu<br />
Click the check box next to “Accept All Cookies”<br />
Click OK</p>
<h5>AOL 8.0</h5>
<p>From the AOL Toolbar, select Settings.<br />
Select Preferences<br />
Select Internet Properties (WWW)<br />
Select the Privacy tab<br />
Select Advanced<br />
Deselect override automatic cookie handling button<br />
Click OK to exit.</p>
<h5>AOL 7.0 with IE 6.x</h5>
<p>From the AOL Toolbar, select Settings.<br />
Select Preferences<br />
Select Internet Properties (WWW)<br />
Select the Privacy tab<br />
Select Advanced<br />
Deselect override automatic cookie handling button<br />
Click OK to exit. </p>
<h5>AOL 7.0 with IE 5.5</h5>
<p>From the AOL Toolbar, select Settings.<br />
Select Preferences<br />
Select Internet Properties (WWW)<br />
Select the Security tab<br />
Select the Custom Level tab<br />
Under “Allow Cookies that are stored on your computer” click “Enable”<br />
Under “Allow per-session cookies (not stored)” click “Enable”<br />
Select OK, Yes you want to save the settings </p>
<h5>AOL 6.0</h5>
<p>From the AOL Toolbar, select Settings<br />
Select Preferences<br />
Select Internet Properties (WWW)<br />
Select the Security tab<br />
Select the Custom Level tab<br />
Under “Allow Cookies that are stored on your computer” click “Enable”<br />
Under “Allow per-session cookies (not stored)” click “Enable”<br />
Select OK, Yes you want to save the settings </p>
]]></content:encoded>
			<wfw:commentRss>http://www.collectivewebdesign.net/index.php/blog/enable-cookies/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Wordpress SEO Tip 1 URL Permalinks</title>
		<link>http://www.collectivewebdesign.net/index.php/wordpress-tutorial/wordpress-seo-tip1-url-permalinks/</link>
		<comments>http://www.collectivewebdesign.net/index.php/wordpress-tutorial/wordpress-seo-tip1-url-permalinks/#comments</comments>
		<pubDate>Thu, 16 Apr 2009 22:10:40 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Wordpress Tutorial]]></category>

		<guid isPermaLink="false">http://www.collectivewebdesign.net/?p=137</guid>
		<description><![CDATA[Part 1: Permalinks

The first thing you need to do if you want the most traffic possible for your WordPress blog is to adjust your permalink structure.
The way you do this is by clicking on, in your WordPress Admin area, Settings on the left vertical menu, and then selecting Permalinks.


You&#8217;ll see a number of options:

Default http://yourdomain.com/?p=123 [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Part 1: Permalinks</strong></p>
<p>
The first thing you need to do if you want the most traffic possible for your WordPress blog is to adjust your permalink structure.<br />
The way you do this is by clicking on, in your WordPress Admin area, Settings on the left vertical menu, and then selecting Permalinks.
</p>
<p>
You&#8217;ll see a number of options:<br />
</p>
<blockquote><p>Default http://yourdomain.com/?p=123 <br />
Day and name http://yourdomain.com/2009/02/15/sample-post/<br />
Month and name http://yourdomain.com/2009/02/sample-post/<br />
Numeric http://yourdomain.com/archives/123</p></blockquote>
<p>
</p>
<p>
Options 1 and 4 have to be avoided like the plague. You MUST have your permalinks set so that the name of your post (and hopefully the keywords you&#8217;re trying to target) appear inside your URL.<br />
Another good permalink structure to use is select CUSTOM and enter:</p>
<blockquote><p>/%category%/%postname%</p></blockquote>
<p>
Again it ensures that your keywords are going to appear in the URL rather than an arbitrary, NUMBER for the name of your post.
</p>
<p><strong><br />
Part 2: Blog Post Titles</strong></p>
<p>
Once that&#8217;s done you&#8217;re ready to move on and start creating your post. This next tip relates to when you&#8217;re actually on the write post page and making your content.<br />
The first thing you need to do is create a quality post title. A quality blog post title is one that both appeals to your readers and satisfies the search engines such that they will rank your post for the keywords you want to rank for.
</p>
<p>
So say you&#8217;re writing a post that you want to target the keyword </p>
<p>&#8220;WordPress SEO&#8221; &#8211; an appropriate title might be:</p>
<p>&#8220;WordPress SEO: How To Perfectly Optimize Your Blog For Search Traffic&#8221;<br />
</p>
<p>
This has the keyword in the title FIRST and also has an appealing &#8220;how to&#8221; headline type statement that is exciting and appealing to a potential reader. This ensures not only that your post will rank well, but when it DOES get the rankings, it will get clicked and your site will get viewed.
</p>
<p>
These are the first two steps to successful on page optimization of your WordPress blog content.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.collectivewebdesign.net/index.php/wordpress-tutorial/wordpress-seo-tip1-url-permalinks/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Trash your tables</title>
		<link>http://www.collectivewebdesign.net/index.php/junk-box/trash_your_tables/</link>
		<comments>http://www.collectivewebdesign.net/index.php/junk-box/trash_your_tables/#comments</comments>
		<pubDate>Tue, 14 Apr 2009 21:39:45 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Junk Box]]></category>

		<guid isPermaLink="false">http://www.collectivewebdesign.net/?p=128</guid>
		<description><![CDATA[Let&#8217;s take a look at 9 reasons why we need to trash your table design 
1. CSS tableless design allows web designers the possibility to make more complex layouts and designs when producing a website. With table based layouts, web designers are confined to creating layouts that can be rigid, inflexible, and based on grids. [...]]]></description>
			<content:encoded><![CDATA[<p>Let&#8217;s take a look at 9 reasons why we need to trash your table design </p>
<p><strong>1.</strong> CSS tableless design allows web designers the possibility to make more complex layouts and designs when producing a website. With table based layouts, web designers are confined to creating layouts that can be rigid, inflexible, and based on grids. CSS tableless based layouts, on the other hand, allow the designer to be as creative as their imagination allows them to be.
</p>
<p>
<strong>2.</strong> If your intention is to improve search engine rankings for your website, then a CSS tableless design will help your cause. CSS tableless designs result in smaller web page file sizes, a reduction in the ratio of code to content, and the elimination of the extraneous &#8220;junk&#8221; HTML markup that many table based web editors use. This makes it easier for search engine spiders to crawl through your website and results in a more favorable ranking in search engines.
</p>
<p>
<strong>3.</strong> By using CSS style sheets it is extremely easy to maintain visual consistency throughout your website. When using table based layouts, it is easy to lose this consistency because each web page&#8217;s style, layout, and design are frequently hard-coded individually into every page. If you need to make a change to your website across all pages, you&#8217;ll have to change the code on each individual page. With CSS, all pages can use the same CSS document for their layout and styles. If you change a property in the CSS file, the changes will be instantaneously reflected across all pages of your website.
</p>
<p>
<strong>4.</strong> Updating a CSS tableless website is easier and less time consuming than compared to table based designs. For example, if you want to change font sizes and colors within your website, your external CSS file can be simply opened and the necessary changes made without making the change on each and every page of your website. To change the look of your website for special or seasonal promotions, the entire website &#8220;look and feel&#8221; can be completely altered simply by changing properties in the CSS file without touching the HTML code of the web page.
</p>
<p>
<strong>5.</strong> Redesigning a website using CSS tableless design is faster and less expensive than redesigning a website using table based design. This is because CSS tableless designs have separate files for content and visual data including web page structure whereas table based designs mix layout information with content in the same file. By separating the visual data and layout from the content, a web designer is able to quickly and easily make changes across the entire website.
</p>
<p>
<strong>6.</strong> Table web page designs rely heavily on the use of spacer .gifs, a transparent image used to control blank space within a table based web page. Having to create a series of custom sized transparent images to organize your web page layout creates messy code and a rigid page structure that can&#8217;t be easily changed. CSS tableless design eliminates this problem by using DIVs instead of tables which can be easily resized, positioned anywhere on a page, or even dynamically manipulated through the use of scripting languages.
</p>
<p>
<strong>7.</strong> A common advantage of using CSS tableless web design is a reduction in web page file size which equates to your web pages loading faster. When compared to a CSS tableless layout, a table based web page frequently takes twice as long to load. Also, the amount of bandwidth you will save using a CSS tableless based approach, especially as your website grows in size, can be vast resulting in a faster overall loading website while saving you money.
</p>
<p>
<strong>8.</strong> Using CSS tableless web design makes your website more accessible by making content consumption and site navigation easier for users. You&#8217;ll also do a much better job of accommodating those with visual impairments and other disabilities. Screen readers, Braille devices, and special browsers for the impaired have fewer problems with tableless designs because they can control the CSS file making font sizes larger, or even modify the web page structure to make it easier to read.
</p>
<p>
<strong>9.</strong> CSS enables the web designer to attach multiple style sheets for different media types. If a potential customer visits your site with her Blackberry or mobile phone, a different CSS style sheet is called which dictates a completely different layout and styling for your entire website formatting it for optimal viewing on the small screen of the device.
</p>
<p>CSS tableless design is a great method for developing modern websites and offers many valuable advantages over traditional table based design. Using CSS tableless design will provide your website visitors better usability and accessibility, faster page load times with greater, more elegant design possibilities. For the web developer and website owner, CSS tableless websites are easier and less expensive to redesign, update and maintain. When given a choice, CSS tableless design will be the best option for most present day website designs.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.collectivewebdesign.net/index.php/junk-box/trash_your_tables/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Step 1 Setup Wordpress Tutorial</title>
		<link>http://www.collectivewebdesign.net/index.php/wordpress-tutorial/step-1-setup-wordpress-tutorial/</link>
		<comments>http://www.collectivewebdesign.net/index.php/wordpress-tutorial/step-1-setup-wordpress-tutorial/#comments</comments>
		<pubDate>Tue, 14 Apr 2009 05:09:09 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Wordpress Tutorial]]></category>

		<guid isPermaLink="false">http://www.collectivewebdesign.net/?p=125</guid>
		<description><![CDATA[Installing Wordpress Blog can be quite challenging especially to people who are not technical savvy. This tutorial will be setting up Wordpress on Host Gator server.


If you do not have a hosting company for your new blog site I recommend you to use HostGator. I find that HostGator the most reliable host I ever used [...]]]></description>
			<content:encoded><![CDATA[<p>
Installing Wordpress Blog can be quite challenging especially to people who are not technical savvy. This tutorial will be setting up Wordpress on Host Gator server.
</p>
<p>
If you do not have a hosting company for your new blog site I recommend you to use HostGator. I find that HostGator the most reliable host I ever used for Wordpress Blogging so far. Sign up for HostGator Hosting before we proceed next step.
</p>
<p>
Installing wordpress in hostgator can be easy or complicated, I will be going down the easy path  &#8211; Using Fantastico De Luxe:</p>
<ol>
<li>The first thing you should do is to look into your email after purchasing the services of Hostgator. Get your control panel’s username and password then we’re ready to go.
</li>
<li>Login to your website’s control panel, it will probably be in this location, http://yoursite.com/cpanel. It may not work for the first day of your purchase, but it will eventually be ok after your DNS has been propagated to the world wide web, probably the longest time it will take to do so is two days (I bet it won’t take you that long). </li>
<li>After logging in, select the icon of Fantastico De Luxe (the blue smiley icon). It is often the last icon in your control panel. </li>
<li>In the Fantastico De Luxe window, look at the left sidebar where all third party scripts are located and select wordpress. Wordpress installation page will appear, just select “New Installation” and off you go. Fill out the forms. *If you want your blog to appear in the main directory of your wesite, e.g. http://yoursite.com and not http://yoursite.com/blog, leave install in directory blank.
</li>
<li>You’re done! Just don’t forget the username and password that you used in the installation process, you will need that to login in your blog’s administrative panel. </li>
</ol>
<p>
Next tutorial will be on configuring Wordpress for the first time. So check back with us soon. Comments welcome..
</p>
<p>
You’re done! Just don’t forget the username and password that you used in the installation process, you will need that to login in your blog’s administrative panel. </p>
]]></content:encoded>
			<wfw:commentRss>http://www.collectivewebdesign.net/index.php/wordpress-tutorial/step-1-setup-wordpress-tutorial/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Hosting Wordpress with HostGator</title>
		<link>http://www.collectivewebdesign.net/index.php/hosting_wordpress/hosting-wordpress-with-hostgator/</link>
		<comments>http://www.collectivewebdesign.net/index.php/hosting_wordpress/hosting-wordpress-with-hostgator/#comments</comments>
		<pubDate>Tue, 14 Apr 2009 04:30:50 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Hosting Wordpress]]></category>

		<guid isPermaLink="false">http://www.collectivewebdesign.net/?p=123</guid>
		<description><![CDATA[There are so many hosting companies out there to choose from. Finding the right one can be a lot of work.


Hostgator hatchling is only $4.95 with one domain name, will be the right startup package for you. Hostgator hosting is using very high performance server, offering very good uptime, and very good technical support. 

Hostgator [...]]]></description>
			<content:encoded><![CDATA[<p>
There are so many hosting companies out there to choose from. Finding the right one can be a lot of work.
</p>
<p>
<a href="http://secure.hostgator.com/cgi-bin/affiliates/clickthru.cgi?id=monkeyrank">Hostgator hatchling</a> is only $4.95 with one domain name, will be the right startup package for you. <a href="http://secure.hostgator.com/cgi-bin/affiliates/clickthru.cgi?id=monkeyrank">Hostgator</a> hosting is using very high performance server, offering very good uptime, and very good technical support. </p>
<p>
Hostgator is hosting collectivewebdesign.net  powered by wordpress blog hosted with hostgator baby plan. For the previous few months, my site had recorded very good server uptime (over the internet). And some of the month, i am seeing perfect 100% uptime. Which is a very good sign that the server is properly managed. This makes hostgator one of the best wordpress hosting provider.</p>
<p>
Any of the hostgator shared hosting: hatchling, baby, swamp, are all supporting wordpress blog script. You can quick install wordpress from the hostgator cpanel fantastico, or manually upload the latest script to server and setup from your web browser. Here are the cpanel’s fantastico blog scripts: b2evolution, Nucleus, pMachine Free, WordPress.</p>
<p>
If you want to sign up with hostgator, better do it fast during this special discount period. Hostgator is only 1 cent for the first month on their hosting plan, use this Hostgator Coupon : Wordpress </p>
<p>Go to <a href="http://secure.hostgator.com/cgi-bin/affiliates/clickthru.cgi?id=monkeyrank">Hostgator.com</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.collectivewebdesign.net/index.php/hosting_wordpress/hosting-wordpress-with-hostgator/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

