<?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>Web Design Vista Blog &#187; tutorial</title>
	<atom:link href="http://webdesignvista.com/blog/category/tutorial/feed/" rel="self" type="application/rss+xml" />
	<link>http://webdesignvista.com/blog</link>
	<description></description>
	<lastBuildDate>Fri, 03 Sep 2010 18:29:22 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Redirecting URLs without www prefix to URLs with www Prefix using htaccess</title>
		<link>http://webdesignvista.com/blog/redirecting-urls-without-www-prefix-to-urls-with-www-prefix-using-htaccess/</link>
		<comments>http://webdesignvista.com/blog/redirecting-urls-without-www-prefix-to-urls-with-www-prefix-using-htaccess/#comments</comments>
		<pubDate>Sat, 02 Jan 2010 12:47:59 +0000</pubDate>
		<dc:creator>iamzen</dc:creator>
				<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://webdesignvista.com/blog/?p=29</guid>
		<description><![CDATA[Put the following lines of code in htaccess:
RewriteEngine on
RewriteCond %{HTTP_HOST} ^yourdomain.com$
RewriteRule (.*) http://www.yourdomain.com/$1 [R=301,L]
Replace yourdomain.com with your actual domain name.
]]></description>
			<content:encoded><![CDATA[<p>Put the following lines of code in htaccess:</p>
<p><code>RewriteEngine on<br />
RewriteCond %{HTTP_HOST} ^yourdomain.com$<br />
RewriteRule (.*) http://www.yourdomain.com/$1 [R=301,L]</code></p>
<p>Replace yourdomain.com with your actual domain name.</p>
]]></content:encoded>
			<wfw:commentRss>http://webdesignvista.com/blog/redirecting-urls-without-www-prefix-to-urls-with-www-prefix-using-htaccess/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to do 301 (Permanent Redirection) in PHP</title>
		<link>http://webdesignvista.com/blog/how-to-do-301-permanent-redirection-in-php/</link>
		<comments>http://webdesignvista.com/blog/how-to-do-301-permanent-redirection-in-php/#comments</comments>
		<pubDate>Sat, 05 Sep 2009 12:17:26 +0000</pubDate>
		<dc:creator>iamzen</dc:creator>
				<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://webdesignvista.com/blog/?p=25</guid>
		<description><![CDATA[It is really simple.
Just put the following 2 lines at the top of the page you are trying to redirect.
header(&#8220;HTTP/1.1 301 Moved Permanently&#8221;);
header (&#8216;location: &#60;&#60;your landing page&#62;&#62;&#8221;);
Replace &#60;&#60;your landing page&#62;&#62; with the URL of the landing page.
Remember, you need these 2 lines before any output statement is made on your script, else you will get]]></description>
			<content:encoded><![CDATA[<p>It is really simple.</p>
<p>Just put the following 2 lines at the top of the page you are trying to redirect.</p>
<p>header(&#8220;HTTP/1.1 301 Moved Permanently&#8221;);<br />
header (&#8216;location: &lt;&lt;your landing page&gt;&gt;&#8221;);</p>
<p>Replace &lt;&lt;your landing page&gt;&gt; with the URL of the landing page.</p>
<p>Remember, you need these 2 lines before any output statement is made on your script, else you will get a &#8216;headers already sent&#8217; error.</p>
]]></content:encoded>
			<wfw:commentRss>http://webdesignvista.com/blog/how-to-do-301-permanent-redirection-in-php/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>How to Hide Blogger Navigation Bar in Blogspot Blogs</title>
		<link>http://webdesignvista.com/blog/how-to-hide-blogger-navigation-bar-in-blogspot-blogs/</link>
		<comments>http://webdesignvista.com/blog/how-to-hide-blogger-navigation-bar-in-blogspot-blogs/#comments</comments>
		<pubDate>Thu, 18 Jun 2009 14:02:54 +0000</pubDate>
		<dc:creator>iamzen</dc:creator>
				<category><![CDATA[tutorial]]></category>
		<category><![CDATA[how to]]></category>

		<guid isPermaLink="false">http://webdesignvista.com/blog/?p=8</guid>
		<description><![CDATA[If you have a blogspot blog you must have noticed the blogger navigation bar at the top of the page. Looks distracting to me!
If you want to know how to hide that navigation bar from displaying, there are 2 tricks &#8211; one based on javascript and the 2nd one pure CSS code.
Here i am describing]]></description>
			<content:encoded><![CDATA[<p>If you have a blogspot blog you must have noticed the blogger navigation bar at the top of the page. Looks distracting to me!</p>
<p>If you want to know how to hide that navigation bar from displaying, there are 2 tricks &#8211; one based on javascript and the 2nd one pure CSS code.</p>
<p>Here i am describing the CSS hack to hide the navigation bar. Javascript code for hiding the navigation bar will be posted later.</p>
<p>Here is what need to do:</p>
<p>Login to your blogger account</p>
<p>Click on &#8216;Layout&#8217; option</p>
<p>Click on &#8216;Edit HTML&#8217; option under &#8216;Layout&#8217; tab</p>
<p>You will be presented with the &#8216;Edit Template&#8217; screen</p>
<p>Find following line</p>
<p>body {<br />
margin: 0;<br />
padding: 0;<br />
font-size: small;<br />
text-align: center;<br />
color: $textcolor;<br />
background: #000000<br />
}</p>
<p>[NOTE: code between body{ } may vary depending on the template chosen]</p>
<p>Just below this code copy and paste the following code -</p>
<p>#navbar-iframe{</p>
<p>display: none;</p>
<p>}</p>
<p>Now save the template and publish.</p>
<p>Thats it, you are done! Check out the blog in a new window. The navigation bar will be gone.</p>
]]></content:encoded>
			<wfw:commentRss>http://webdesignvista.com/blog/how-to-hide-blogger-navigation-bar-in-blogspot-blogs/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>
