<?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>Blog</title>
	<atom:link href="http://worth2read.org/blog/feed/" rel="self" type="application/rss+xml" />
	<link>http://worth2read.org/blog</link>
	<description>Share your views here...Let the world read your opinions...See what others are telling...</description>
	<lastBuildDate>Sat, 27 Feb 2010 05:20:31 +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>Wordpress Plugin : Send Notification by email when a post is published</title>
		<link>http://worth2read.org/blog/2010/02/21/wordpress-plugin-send-notification-by-email-when-a-post-is-published/</link>
		<comments>http://worth2read.org/blog/2010/02/21/wordpress-plugin-send-notification-by-email-when-a-post-is-published/#comments</comments>
		<pubDate>Sun, 21 Feb 2010 05:05:00 +0000</pubDate>
		<dc:creator>admin0</dc:creator>
				<category><![CDATA[Wordpress Plugins]]></category>
		<category><![CDATA[Email Notify]]></category>
		<category><![CDATA[wordpress Plugin]]></category>

		<guid isPermaLink="false">http://worth2read.org/blog/?p=137</guid>
		<description><![CDATA[Administrator, Author and Editor have the option to notify people by email when publishing the posts.
Download Link
Contact me at gsh [dot] james [at] gmail [dot] com for any customization.
screenshot
]]></description>
			<content:encoded><![CDATA[<p>Administrator, Author and Editor have the option to notify people by email when publishing the posts.</p>
<p><a href="http://worth2read.org/blog/Email Notify.zip">Download Link</a></p>
<p>Contact me at gsh [dot] james [at] gmail [dot] com for any customization.</p>
<p>screenshot</p>
<img class="size-full wp-image-139" title="screen" src="http://worth2read.org/blog/wp-content/uploads/2010/02/screen1.JPG" alt="Email Notify" width="293" height="618" />
]]></content:encoded>
			<wfw:commentRss>http://worth2read.org/blog/2010/02/21/wordpress-plugin-send-notification-by-email-when-a-post-is-published/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Changing layout of products page in Zencart</title>
		<link>http://worth2read.org/blog/2010/02/11/changing-layout-of-products-page-in-zencart/</link>
		<comments>http://worth2read.org/blog/2010/02/11/changing-layout-of-products-page-in-zencart/#comments</comments>
		<pubDate>Thu, 11 Feb 2010 12:56:24 +0000</pubDate>
		<dc:creator>admin0</dc:creator>
				<category><![CDATA[Zencart]]></category>

		<guid isPermaLink="false">http://worth2read.org/blog/?p=132</guid>
		<description><![CDATA[To change the layout of products page in zencart edit the following  file:
 /includes/templates/template_default/templates/tpl_product_info_display.php, and moving blocks of code to where you want them. 
Each block is identified by  and  comments to make it easy to keep track of them.
]]></description>
			<content:encoded><![CDATA[<p>To change the layout of products page in zencart edit the following  file:</p>
<p> /includes/templates/template_default/templates/tpl_product_info_display.php, and moving blocks of code to where you want them. </p>
<p>Each block is identified by <!--bof xxxx--> and <!--eof xxxx--> comments to make it easy to keep track of them.</p>
]]></content:encoded>
			<wfw:commentRss>http://worth2read.org/blog/2010/02/11/changing-layout-of-products-page-in-zencart/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Inserting data into access database using Asp.Net</title>
		<link>http://worth2read.org/blog/2010/01/29/inserting-data-into-access-database-using-asp-net/</link>
		<comments>http://worth2read.org/blog/2010/01/29/inserting-data-into-access-database-using-asp-net/#comments</comments>
		<pubDate>Fri, 29 Jan 2010 06:08:58 +0000</pubDate>
		<dc:creator>admin0</dc:creator>
				<category><![CDATA[Asp.net]]></category>
		<category><![CDATA[access database]]></category>
		<category><![CDATA[Inserting data into access database using Asp.Net]]></category>
		<category><![CDATA[mdb]]></category>

		<guid isPermaLink="false">http://worth2read.org/blog/?p=128</guid>
		<description><![CDATA[I was trying to insert data into access database from an asp.net page.
I could not find any samples in tutorials. So I thought to put the code (that worked for me) here. If anyone is looking for a sample I hope it would be helpful.
&#60;%@ Import Namespace=&#8221;System.Data.OleDb&#8221; %&#62;
&#60;script runat=&#8221;server&#8221;&#62;
Sub submit(sender As Object, e As EventArgs)
Dim [...]]]></description>
			<content:encoded><![CDATA[<p>I was trying to insert data into access database from an asp.net page.</p>
<p>I could not find any samples in tutorials. So I thought to put the code (that worked for me) here. If anyone is looking for a sample I hope it would be helpful.</p>
<p>&lt;%@ Import Namespace=&#8221;System.Data.OleDb&#8221; %&gt;<br />
&lt;script runat=&#8221;server&#8221;&gt;<br />
Sub submit(sender As Object, e As EventArgs)</p>
<p>Dim conCoaxis As OleDbConnection<br />
Dim strInsert As String<br />
Dim cmdInsert As OleDbCommand<br />
Dim dtmDate As DateTime<br />
   <br />
dtmDate = DateTime.Now()<br />
 <br />
conCoaxis=New OleDbConnection(&#8221;Provider=Microsoft.Jet.OLEDB.4.0;data source=&#8221; &amp; server.mappath(&#8221;email.mdb&#8221;))<br />
strInsert = &#8220;INSERT INTO email (Email, Fname, CompanyName, [Date]) Values (@Email, @Fname, @CompanyName, @Date)&#8221;<br />
 <br />
cmdInsert = New OleDbCommand( strInsert, conCoaxis )<br />
 <br />
cmdInsert.Parameters.Add( &#8220;@Email&#8221;, txtEmail.Text )<br />
cmdInsert.Parameters.Add( &#8220;@Fname&#8221;, txtName.Text )<br />
 cmdInsert.Parameters.Add( &#8220;@CompanyName&#8221;, txtCompany.Text )<br />
 cmdInsert.Parameters.Add( &#8220;@Date&#8221;, OleDbType.Date).Value = dtmDate.ToString(&#8221;g&#8221;)  <br />
  Try<br />
   conCoaxis.Open()<br />
   cmdInsert.ExecuteNonQuery()<br />
   conCoaxis.Close()<br />
   Response.Write(&#8221;Updated Successfully!&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&#8221;)<br />
   Catch<br />
   conCoaxis.Close()<br />
  End Try<br />
 End Sub<br />
&lt;/script&gt;<br />
&lt;%@ Page Language=&#8221;VB&#8221; ContentType=&#8221;text/html&#8221; ResponseEncoding=&#8221;iso-8859-1&#8243; Debug=&#8221;true&#8221; %&gt;<br />
&lt;!DOCTYPE html PUBLIC &#8220;-//W3C//DTD XHTML 1.0 Transitional//EN&#8221; &#8220;<a href="http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd</a>&#8220;&gt;<br />
&lt;html xmlns=&#8221;<a href="http://www.w3.org/1999/xhtml">http://www.w3.org/1999/xhtml</a>&#8220;&gt;<br />
&lt;head&gt;<br />
&lt;meta http-equiv=&#8221;Content-Type&#8221; content=&#8221;text/html; charset=iso-8859-1&#8243; /&gt;<br />
&lt;/head&gt;<br />
&lt;body&gt;<br />
&lt;form  runat=&#8221;server&#8221; id=&#8221;form1&#8243; name=&#8221;form1&#8243; method=&#8221;post&#8221; action=&#8221;"&gt;<br />
  Name:     &lt;asp:TextBox id=&#8221;txtName&#8221; runat=&#8221;server&#8221; /&gt; </p>
<p>Email:    &lt;asp:TextBox id=&#8221;txtEmail&#8221; runat=&#8221;server&#8221; /&gt;<br />
Company:    &lt;asp:TextBox id=&#8221;txtCompany&#8221; runat=&#8221;server&#8221; /&gt;<br />
 &lt;asp:Button id=&#8221;id&#8221; text=&#8221;Submit&#8221; OnClick=&#8221;submit&#8221; runat=&#8221;server&#8221; /&gt;<br />
&lt;/form&gt; <br />
&lt;/body&gt;<br />
&lt;/html&gt;</p>
]]></content:encoded>
			<wfw:commentRss>http://worth2read.org/blog/2010/01/29/inserting-data-into-access-database-using-asp-net/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Compare title and category name in wordpress</title>
		<link>http://worth2read.org/blog/2009/09/24/compare-title-and-category-name-in-wordpress/</link>
		<comments>http://worth2read.org/blog/2009/09/24/compare-title-and-category-name-in-wordpress/#comments</comments>
		<pubDate>Thu, 24 Sep 2009 15:05:37 +0000</pubDate>
		<dc:creator>admin0</dc:creator>
				<category><![CDATA[Wordpress Customization]]></category>

		<guid isPermaLink="false">http://worth2read.org/blog/?p=120</guid>
		<description><![CDATA[I had come through a situation to compare the category name and post title for a wordpress post. The following functions and code helped me to do this.
$category = get_the_category();
$cat = $category[0]->cat_name;
$post_no = get_post($post);
$title = $post_no->post_title;
$match=strcmp($cat,$title);
if($match==0){
echo &#8220;match&#8221;;
}
else
{
echo &#8220;no match&#8221;;
}
The problem here is $cat = $category[0]->cat_name; returns the first category name, so we are comparing only [...]]]></description>
			<content:encoded><![CDATA[<p>I had come through a situation to compare the category name and post title for a wordpress post. The following functions and code helped me to do this.</p>
<p>$category = get_the_category();<br />
$cat = $category[0]->cat_name;<br />
$post_no = get_post($post);<br />
$title = $post_no->post_title;<br />
$match=strcmp($cat,$title);<br />
if($match==0){<br />
echo &#8220;match&#8221;;<br />
}<br />
else<br />
{<br />
echo &#8220;no match&#8221;;<br />
}</p>
<p>The problem here is $cat = $category[0]->cat_name; returns the first category name, so we are comparing only the first category with the title. If we want to compare the second category we have to use $cat = $category[1]->cat_name;</p>
<p>I hope someone will write a better solution so that we can compare the array, category with title. I would appreciate if someone can post that&#8230;</p>
<p>in_array came to my mind, but it is case sensitive&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://worth2read.org/blog/2009/09/24/compare-title-and-category-name-in-wordpress/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Page rank &#124; Alexa Rank &#124; Back links &#124; Indexed pages &#124; Dmoz listing checker</title>
		<link>http://worth2read.org/blog/2009/08/27/page-rank-alexa-rank-back-links-indexed-pages-dmoz-listing-checker/</link>
		<comments>http://worth2read.org/blog/2009/08/27/page-rank-alexa-rank-back-links-indexed-pages-dmoz-listing-checker/#comments</comments>
		<pubDate>Thu, 27 Aug 2009 14:44:59 +0000</pubDate>
		<dc:creator>admin0</dc:creator>
				<category><![CDATA[Scripts for sale]]></category>
		<category><![CDATA[Alexa popularity]]></category>
		<category><![CDATA[All the web results]]></category>
		<category><![CDATA[Altavista results]]></category>
		<category><![CDATA[Dmoz listed or not]]></category>
		<category><![CDATA[Google page rank]]></category>
		<category><![CDATA[Number of Google backlinks]]></category>
		<category><![CDATA[Yahoo backlinks]]></category>

		<guid isPermaLink="false">http://worth2read.org/blog/?p=110</guid>
		<description><![CDATA[Here is a free tool to find the statistics like Google page rank, Alexa popularity, Dmoz listed or not , Number of Google backlinks, Yahoo backlinks, All the web results, Altavista results etc &#8211; All in one step. Enter the URL , select the statistics you want and click on  &#8220;Submit&#8221;.
Page rank Checker
Tool is [...]]]></description>
			<content:encoded><![CDATA[<p>Here is a free tool to find the statistics like Google page rank, Alexa popularity, Dmoz listed or not , Number of Google backlinks, Yahoo backlinks, All the web results, Altavista results etc &#8211; All in one step. Enter the URL , select the statistics you want and click on  &#8220;Submit&#8221;.</p>
<p><a href="http://www.worth2read.org/rank.php">Page rank Checker</a></p>
<p>Tool is free. For script contact me via email.</p>
]]></content:encoded>
			<wfw:commentRss>http://worth2read.org/blog/2009/08/27/page-rank-alexa-rank-back-links-indexed-pages-dmoz-listing-checker/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Blank page for wp-admin</title>
		<link>http://worth2read.org/blog/2009/08/24/blank-page-for-wp-admin/</link>
		<comments>http://worth2read.org/blog/2009/08/24/blank-page-for-wp-admin/#comments</comments>
		<pubDate>Mon, 24 Aug 2009 06:01:38 +0000</pubDate>
		<dc:creator>admin0</dc:creator>
				<category><![CDATA[Wordpress Customization]]></category>
		<category><![CDATA[admin page blank]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[wp-admin is blank]]></category>

		<guid isPermaLink="false">http://worth2read.org/blog/?p=107</guid>
		<description><![CDATA[Just now, I had been in a horrible situation that I can see all my blog pages but when I go to http://worth2read.org/blog/wp-admin/ it appears as blank. That is I am completly locked out of the admin area.
I made a Google search for the solution and confused with lots of solutions that appeared.
However atlast I [...]]]></description>
			<content:encoded><![CDATA[<p>Just now, I had been in a horrible situation that I can see all my blog pages but when I go to http://worth2read.org/blog/wp-admin/ it appears as blank. That is I am completly locked out of the admin area.</p>
<p>I made a Google search for the solution and confused with lots of solutions that appeared.</p>
<p>However atlast I manged to get my admin page back, the solution that worked for me is as follows&#8230;</p>
<p>I checked the functions.php in my theme folder. There were some spaces at the top and bottom of the page. i deleted it. </p>
<p>I got my admin page back so that I can post this for you now.</p>
<p>I am posting it here thinking if anyone else came through such situation, it will be helpful for them.</p>
]]></content:encoded>
			<wfw:commentRss>http://worth2read.org/blog/2009/08/24/blank-page-for-wp-admin/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Adding new widgets in wordpress themes</title>
		<link>http://worth2read.org/blog/2009/08/15/adding-new-widgets-in-wordpress-themes/</link>
		<comments>http://worth2read.org/blog/2009/08/15/adding-new-widgets-in-wordpress-themes/#comments</comments>
		<pubDate>Sat, 15 Aug 2009 13:26:48 +0000</pubDate>
		<dc:creator>admin0</dc:creator>
				<category><![CDATA[Wordpress Customization]]></category>
		<category><![CDATA[Adding new widgets in wordpress themes]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://worth2read.org/blog/?p=100</guid>
		<description><![CDATA[We can add new widgets by using functions.php in the theme folder.
For example I can add &#8220;Services I offer and Google Adsense in 2 ways
to the sidebars.
1. Code both to the page sidebar.php
3. Create widgets using functions.php file in the theme folder
Following code shows how I added a simple Adsense widget using functions.php
if (function_exists(&#8217;register_sidebar&#8217;))
{
register_sidebar_widget(__(&#8217;Adsense&#8217;), &#8216;google_widget&#8217;);
}
function [...]]]></description>
			<content:encoded><![CDATA[<p>We can add new widgets by using functions.php in the theme folder.</p>
<p>For example I can add &#8220;Services I offer and Google Adsense in 2 ways<br />
to the sidebars.</p>
<p>1. Code both to the page sidebar.php<br />
3. Create widgets using functions.php file in the theme folder</p>
<p>Following code shows how I added a simple Adsense widget using functions.php</p>
<p>if (function_exists(&#8217;register_sidebar&#8217;))<br />
{<br />
register_sidebar_widget(__(&#8217;Adsense&#8217;), &#8216;google_widget&#8217;);<br />
}</p>
<p>function google_widget() {<br />
echo $before_widget;<br />
echo $before_title;</p>
<p>echo&#8221;&lt;li&gt;&lt;h2&gt;Sponsors&lt;/h2&gt;&lt;/li&gt;&#8221;;<br />
echo $after_title; <br />
?&gt;<br />
 &lt;ul&gt;<br />
 &lt;li&gt;</p>
<p>Here comes Adsense code</p>
<p>&lt;/li&gt;<br />
 &lt;/ul&gt;<br />
 &lt;?php echo $after_widget; <br />
}</p>
<p>function init_adsense(){<br />
    register_adsense_widget(&#8221;Sponsors&#8221;, &#8220;google_widget&#8221;);    <br />
}</p>
<p>add_action(&#8221;plugins_loaded&#8221;, &#8220;init_adsense&#8221;);</p>
<p>The above code gives a simple widget named adsense in the widget panel. From the widget list I can add it to the sidebar without disturbing sidebar.php file.</p>
<p><strong>Update:</strong></p>
<p>Just now, I  noticed another method,  if the widget contains text or HTML only. In such cases you can use text widgets. Add the already existing &#8220;Text widget&#8221;.</p>
<p>In the example above give the title as &#8220;Sponsors&#8221; and write adsense code in the box. It is the easiest way if the widget you are making contains only text or HTML.</p>
]]></content:encoded>
			<wfw:commentRss>http://worth2read.org/blog/2009/08/15/adding-new-widgets-in-wordpress-themes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>A simple, cool wordpress theme (Yellow and Blue)</title>
		<link>http://worth2read.org/blog/2009/08/08/a-simple-cool-wordpress-theme-yellow-and-blue/</link>
		<comments>http://worth2read.org/blog/2009/08/08/a-simple-cool-wordpress-theme-yellow-and-blue/#comments</comments>
		<pubDate>Sat, 08 Aug 2009 14:56:38 +0000</pubDate>
		<dc:creator>admin0</dc:creator>
				<category><![CDATA[Wordpress Themes]]></category>
		<category><![CDATA[Wordpress theme]]></category>

		<guid isPermaLink="false">http://worth2read.org/blog/?p=97</guid>
		<description><![CDATA[Here is the preview of a simple cool wordpress theme:
Theme Home page Preview
I will upload this free theme here as soon as it is finished, now some final touches&#8230;
Most of the colors can be changed using css.
Suggestions and new ideas will be very much appreciated&#8230;
Update: Download link : http://worth2read.org/blog/yellow_blue.zip
]]></description>
			<content:encoded><![CDATA[<p>Here is the preview of a simple cool wordpress theme:</p>
<p><a href="http://worth2read.org/blog/?preview_theme=yellow_blue">Theme Home page Preview</a></p>
<p>I will upload this free theme here as soon as it is finished, now some final touches&#8230;</p>
<p>Most of the colors can be changed using css.</p>
<p>Suggestions and new ideas will be very much appreciated&#8230;</p>
<p>Update: <em><strong>Download link : http://worth2read.org/blog/yellow_blue.zip</strong></em></p>
]]></content:encoded>
			<wfw:commentRss>http://worth2read.org/blog/2009/08/08/a-simple-cool-wordpress-theme-yellow-and-blue/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Adding Separate boxes for wordpress excerpts</title>
		<link>http://worth2read.org/blog/2009/08/08/adding-separate-boxes-for-wordpress-excerpts/</link>
		<comments>http://worth2read.org/blog/2009/08/08/adding-separate-boxes-for-wordpress-excerpts/#comments</comments>
		<pubDate>Sat, 08 Aug 2009 06:05:28 +0000</pubDate>
		<dc:creator>admin0</dc:creator>
				<category><![CDATA[Wordpress Customization]]></category>

		<guid isPermaLink="false">http://worth2read.org/blog/?p=82</guid>
		<description><![CDATA[In most of the themes the post container lists all the excerpts of the most recent posts in the home page. The following code will help you to break up each post into separate boxes.
Example: Theme Home page Preview
Using css we can make a 10px gap in-between each post, where the background of the page [...]]]></description>
			<content:encoded><![CDATA[<p>In most of the themes the post container lists all the excerpts of the most recent posts in the home page. The following code will help you to break up each post into separate boxes.</p>
<p>Example: <a href="http://worth2read.org/blog/?preview_theme=yellow_blue">Theme Home page Preview</a></p>
<p>Using css we can make a 10px gap in-between each post, where the background of the page shows through.</p>
<p>In the page index.php we have</p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-</p>
<p>&lt;div id=&#8221;content&#8221;&gt;</p>
<p>&lt;?php while (have_posts()) : the_post(); ?&gt;</p>
<p>   &lt;div class=&#8221;post&#8221; id=&#8221;post-&lt;?php the_ID(); ?&gt;&#8221;&gt;</p>
<p> &lt;div class=&#8221;title-bg&#8221;&gt;   &lt;h2 class=&#8221;title&#8221;&gt;</p>
<p>&lt;a href=&#8221;&lt;?php the_permalink() ?&gt;&#8221; rel=&#8221;bookmark&#8221; title=&#8221;Permanent Link to &lt;?php the_title(); ?&gt;&#8221;&gt;&lt;?php the_title(); ?&gt;&lt;/a&gt;</p>
<p>&lt;/h2&gt;&lt;/div&gt;<br />
 &lt;div class=&#8221;entry&#8221;&gt;</p>
<p>     &lt;?php the_excerpt(); ?&gt;</p>
<p>     &lt;p class=&#8221;links&#8221;&gt;</p>
<p>&lt;a href=&#8221;&lt;?php the_permalink() ?&gt;&#8221; class=&#8221;more&#8221;&gt;&amp;laquo;&amp;laquo;&amp;nbsp;&amp;nbsp;Read More&lt;/a&gt;&lt;/p&gt;</p>
<p>    &lt;/div&gt;   &lt;/div&gt;</p>
<p>  &lt;?php endwhile; ?&gt;</p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;</p>
<p>I was just copying the index page. Ignore the div tags you don&#8217;t want , but the following css code for content and post will help to add a separation between each post.</p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;</p>
<p>#content {</p>
<p>float: left;</p>
<p>width: 600px;</p>
<p>border-left: 1px #BBBBBB dashed;</p>
<p>margin-left:10px;</p>
<p>}</p>
<p>.post {</p>
<p>padding-bottom: 15px;</p>
<p>line-height: 200%;</p>
<p>background-color:#FFFFCC;</p>
<p>margin-top:10px;</p>
<p>}</p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;</p>
<p>Here &#8220;background-color:#FFFFCC;&#8221; gives an yellow background and &#8220;margin-top:10px;&#8221; gives a gap with the background color mentioned in #content background color.</p>
<p>In this example it is white.</p>
]]></content:encoded>
			<wfw:commentRss>http://worth2read.org/blog/2009/08/08/adding-separate-boxes-for-wordpress-excerpts/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Changing background color of an image using Photoshop</title>
		<link>http://worth2read.org/blog/2009/08/03/changing-background-color-of-an-image-using-photoshop/</link>
		<comments>http://worth2read.org/blog/2009/08/03/changing-background-color-of-an-image-using-photoshop/#comments</comments>
		<pubDate>Mon, 03 Aug 2009 05:08:50 +0000</pubDate>
		<dc:creator>admin0</dc:creator>
				<category><![CDATA[Photoshop]]></category>
		<category><![CDATA[Changing background color of an image using Photoshop]]></category>

		<guid isPermaLink="false">http://worth2read.org/blog/?p=75</guid>
		<description><![CDATA[Step1: Open Photoshop, click on the &#8220;Set background color&#8221;
Step2: Click File &#8211;> Add New, Set Background contents as &#8220;Background color&#8221;
Step3: Open up your image by selecting file -> open
As you can see there are now two windows on your work space.
Now follow the following steps to make the background transparent. Click on the window of [...]]]></description>
			<content:encoded><![CDATA[<p>Step1: Open Photoshop, click on the &#8220;Set background color&#8221;</p>
<p>Step2: Click File &#8211;> Add New, Set Background contents as &#8220;Background color&#8221;</p>
<p>Step3: Open up your image by selecting file -> open</p>
<p>As you can see there are now two windows on your work space.</p>
<p>Now follow the following steps to make the background transparent. Click on the window of your image and then&#8230;</p>
<p>Step 4: Double click on the layer in the layers palette on the right hand side of the screen by default. Click OK on the box that comes up. </p>
<p>Step5: Grab the magic wand tool and click on the white background. </p>
<p>Step6: Hit Delete on your keyboard. </p>
<p>Step7: Hit Ctrl + D on your keyboard. </p>
<p>Step8: Hit Ctrl + Shift + S on your keyboard and select CompuServe (*.gif) in the File Type dropdown. And select where you want your image to be saved. </p>
<p>Now you can drag your transperant object to your colourd canvas, for this use the Move tool.</p>
<p>Finally save it. Done !</p>
]]></content:encoded>
			<wfw:commentRss>http://worth2read.org/blog/2009/08/03/changing-background-color-of-an-image-using-photoshop/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
