<?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>Useful tips and stuff that matters &#187; wordpress</title>
	<atom:link href="http://www.theusefulblog.com/tag/wordpress/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.theusefulblog.com</link>
	<description>Tips and tricks and stuff that matters for computers, internet, and many others.</description>
	<lastBuildDate>Thu, 26 Nov 2009 08:13:45 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.5</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Make WordPress K2 Themes Refresh Faster</title>
		<link>http://www.theusefulblog.com/post/make-wordpress-k2-themes-refresh-faster/</link>
		<comments>http://www.theusefulblog.com/post/make-wordpress-k2-themes-refresh-faster/#comments</comments>
		<pubDate>Thu, 07 Dec 2006 23:08:19 +0000</pubDate>
		<dc:creator>angelchen1111</dc:creator>
				<category><![CDATA[wordpress]]></category>
		<category><![CDATA[k2]]></category>
		<category><![CDATA[template]]></category>

		<guid isPermaLink="false">http://www.theusefulblog.com/2006/12/07/make-wordpress-k2-themes-refresh-faster/</guid>
		<description><![CDATA[The pages with wordpress K2 theme loads fast when you click them, but if you try to refresh the page it will be very slow to load, while other themes don&#8217;t have this problem. To fix this follow this guide taken from K2&#8217;s forum:
find the folder js inside the K2 folder, then for each .js.php [...]]]></description>
			<content:encoded><![CDATA[<p>The pages with wordpress K2 theme loads fast when you click them, but if you try to refresh the page it will be very slow to load, while other themes don&#8217;t have this problem. To fix this follow this guide taken from K2&#8217;s forum:</p>
<p>find the folder <strong>js</strong> inside the <strong>K2</strong> folder, then for each <strong>.js.php</strong> file comment out the <strong>&#8216;require(&#8230;.. wp-blog-header.php)&#8217; </strong>line and replace <strong>&#8216;!get_settings(&#8217;gzipcompression&#8217;)&#8217; </strong>with <strong>&#8216;( ob_get_length() === FALSE)&#8217;</strong>. After that the first few lines should look like this:<br />
<code><br />
//require(dirname(__FILE__)."/../../../../wp-blog-header.php");<br />
// check to see if the user has enabled gzip compression in the WordPress admin panel<br />
if ( (ob_get_length() === FALSE) and !ini_get('zlib.output_compression') and ini_get('output_handler') != 'ob_gzhandler' and ini_get('output_handler') != 'mb_output_handler' ) {<br />
ob_start('ob_gzhandler');<br />
}<br />
</code><br />
Then add the following lines on the top of the files <strong>livesearch.js.php</strong> and <strong>rollingarchives.js.php</strong> after the php tag:<br />
<code><br />
// Echo a translated string.<br />
function _e($text, $domain = 'default') {<br />
global $l10n;</code></p>
<p>if (isset($l10n[$domain]))<br />
echo apply_filters(&#8217;gettext&#8217;, $l10n[$domain]-&gt;translate($text), $text);<br />
else<br />
echo $text;<br />
}</p>
<p>For <strong>livesearch.js.php, <del>comments.js.php</del></strong>:<br />
replace all<br />
<code>bloginfo("template_url")</code><br />
with<br />
<code>echo str_replace($_SERVER['DOCUMENT_ROOT'],'',realpath(dirname(__FILE__) . '/../'))</code><br />
There are two instances of these in <del>comments.js.php</del>, and one in livesearch.js.php.</p>
<p>After all these the pages will refresh very fast.</p>
<p><a href="http://getk2.com/forum/showthread.php?t=1934">Original post in which this guide is taken from&#8230;</a></p>
<hr /><small>Copyright &copy; 2008<br /> This feed is for personal, non-commercial use only. <br /> The use of this feed on other websites breaches copyright. If this content is not in your news reader, it makes the page you are viewing an infringement of the copyright. (Digital Fingerprint:<br /> )</small>]]></content:encoded>
			<wfw:commentRss>http://www.theusefulblog.com/post/make-wordpress-k2-themes-refresh-faster/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Today I changed my blog&#8217;s template to TripleK2</title>
		<link>http://www.theusefulblog.com/post/today-i-changed-my-blogs-template-to-triplek2/</link>
		<comments>http://www.theusefulblog.com/post/today-i-changed-my-blogs-template-to-triplek2/#comments</comments>
		<pubDate>Fri, 17 Nov 2006 03:32:23 +0000</pubDate>
		<dc:creator>angelchen1111</dc:creator>
				<category><![CDATA[wordpress]]></category>
		<category><![CDATA[k2]]></category>
		<category><![CDATA[template]]></category>

		<guid isPermaLink="false">http://www.theusefulblog.com/2006/11/16/today-i-changed-my-blogs-template-to-triplek2/</guid>
		<description><![CDATA[Today I changed my blog&#8217;s template to TripleK2, a theme based on K2 but with three columns, with a very nice style TechnoBlue(found in the same website). Now I have one sidebar on the left and one on the right. The theme is similar to 3k2, but I didn&#8217;t use 3k2 since the last time [...]]]></description>
			<content:encoded><![CDATA[<p>Today I changed my blog&#8217;s template to <a href="http://www.johntp.com/2006/09/17/triplek2-a-three-column-k2-mod-for-wordpress/">TripleK2</a>, a theme based on K2 but with three columns, with a very nice style <a href="http://www.johntp.com/2006/09/17/triplek2-a-three-column-k2-mod-for-wordpress/">TechnoBlue</a>(found in the same website). Now I have one sidebar on the left and one on the right. The theme is similar to 3k2, but I didn&#8217;t use 3k2 since the last time it&#8217;s updated is like half years ago, it uses a much older version of K2 which probably has some bugs that cause trouble. I really liked the style TechnoBlue, since it looks very nice and neat, if you&#8217;re looking for a three-column K2 with a nice style it should be your choice.<br />
<img src="http://static.flickr.com/107/299158893_386f8fcbb6.jpg?v=0" alt="" align="middle" /></p>
<hr /><small>Copyright &copy; 2008<br /> This feed is for personal, non-commercial use only. <br /> The use of this feed on other websites breaches copyright. If this content is not in your news reader, it makes the page you are viewing an infringement of the copyright. (Digital Fingerprint:<br /> )</small>]]></content:encoded>
			<wfw:commentRss>http://www.theusefulblog.com/post/today-i-changed-my-blogs-template-to-triplek2/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>How to add social bookmarking in wordpress</title>
		<link>http://www.theusefulblog.com/post/how-to-add-social-bookmarking-in-wordpress/</link>
		<comments>http://www.theusefulblog.com/post/how-to-add-social-bookmarking-in-wordpress/#comments</comments>
		<pubDate>Wed, 15 Nov 2006 05:56:15 +0000</pubDate>
		<dc:creator>angelchen1111</dc:creator>
				<category><![CDATA[wordpress]]></category>
		<category><![CDATA[blogger]]></category>
		<category><![CDATA[digg]]></category>
		<category><![CDATA[template]]></category>

		<guid isPermaLink="false">http://www.theusefulblog.com/2006/11/14/how-to-add-social-bookmarking-in-wordpress/</guid>
		<description><![CDATA[In the entry Let Your Blog Be Social nongeek talked about the advantage of social bookmarking and how to add bookmark area in blogger&#8217;s template. You can also do that in wordpress too, using the same way he said in that post, but substitute Blogger&#8217;s template tags with wordpress&#8217;s tags. For example, if you want [...]]]></description>
			<content:encoded><![CDATA[<p>In the entry <a href="http://nongeeksight.blogspot.com/2006/10/let-your-blog-be-social.html">Let Your Blog Be Social</a> nongeek talked about the advantage of social bookmarking and how to add bookmark area in blogger&#8217;s template. You can also do that in wordpress too, using the same way he said in that post, but substitute Blogger&#8217;s template tags with wordpress&#8217;s tags. For example, if you want a &#8220;Submit to del.icio.us&#8221; line you should add</p>
<p><code>Submit to: &lt;a href=&quot;http://del.icio.us/post?url=&lt;?php the_permalink()<br />
?&gt;;title=&lt;?php the_title(); ?&gt;&quot; &gt;del.icio.us&lt;/a&gt;</code></p>
<p>instead of</p>
<p><code>Submit to: &lt;a href=&quot;http://del.icio.us/post?url=&lt;$BlogItemPermalinkURL$&gt;;title=&lt;$BlogItemTitle$&gt;&quot;<br />
&gt;del.icio.us&lt;/a&gt;</code></p>
<p>to your template&#8217;s php file before or after the line <code>&lt;?php the_content('something'); ?&gt;</code> depending on if you want it to appear before or after the posts.</p>
<p>If you want to submit to Digg there&#8217;s a great WordPress plugin called <a href="http://dev.lipidity.com/feature/digg-this-wordpress-plugin-reloaded">Digg This for WordPress Reloaded</a> that lets you to add a very cool &#8220;Digg This button&#8221; like the one I have in the posts, without changing the template&#8217;s codes. It also comes with a Complete admin interface with options for many customizations, like positioning the button, what pages to show the button, the style of the button , and many others.</p>
<hr /><small>Copyright &copy; 2008<br /> This feed is for personal, non-commercial use only. <br /> The use of this feed on other websites breaches copyright. If this content is not in your news reader, it makes the page you are viewing an infringement of the copyright. (Digital Fingerprint:<br /> )</small>]]></content:encoded>
			<wfw:commentRss>http://www.theusefulblog.com/post/how-to-add-social-bookmarking-in-wordpress/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>how to fix wordpress 404 error when posting in wordpress</title>
		<link>http://www.theusefulblog.com/post/how-to-fix-wordpress-404-error-when-posting-in-wordpress/</link>
		<comments>http://www.theusefulblog.com/post/how-to-fix-wordpress-404-error-when-posting-in-wordpress/#comments</comments>
		<pubDate>Mon, 06 Nov 2006 01:16:22 +0000</pubDate>
		<dc:creator>angelchen1111</dc:creator>
				<category><![CDATA[tips]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[404]]></category>

		<guid isPermaLink="false">http://www.theusefulblog.com/2006/11/05/how-to-fix-wordpress-404-error-when-posting-in-wordpress/</guid>
		<description><![CDATA[If you have mod_security turned on in your server you will sometimes get a 404 not found error when you try to save or publish your post. To fix this add the lines
SecFilterEngine Off
SecFilterScanPOST Off
to your .htaccess file in your wordpress&#8217;s root directory to turn off mod_security&#8217;s keyword filtering feature for posting forms, and you [...]]]></description>
			<content:encoded><![CDATA[<p>If you have mod_security turned on in your server you will sometimes get a 404 not found error when you try to save or publish your post. To fix this add the lines<br />
<code>SecFilterEngine Off<br />
SecFilterScanPOST Off</code><br />
to your .htaccess file in your wordpress&#8217;s root directory to turn off mod_security&#8217;s keyword filtering feature for posting forms, and you should not get the error anymore when you try to post. </p>
<hr /><small>Copyright &copy; 2008<br /> This feed is for personal, non-commercial use only. <br /> The use of this feed on other websites breaches copyright. If this content is not in your news reader, it makes the page you are viewing an infringement of the copyright. (Digital Fingerprint:<br /> )</small>]]></content:encoded>
			<wfw:commentRss>http://www.theusefulblog.com/post/how-to-fix-wordpress-404-error-when-posting-in-wordpress/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Flash objects break wordpress in Internet Explorer</title>
		<link>http://www.theusefulblog.com/post/flash-objects-break-wordpress/</link>
		<comments>http://www.theusefulblog.com/post/flash-objects-break-wordpress/#comments</comments>
		<pubDate>Thu, 26 Oct 2006 06:58:02 +0000</pubDate>
		<dc:creator>angelchen1111</dc:creator>
				<category><![CDATA[wordpress]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[internet explorer]]></category>

		<guid isPermaLink="false">http://www.theusefulblog.com/2006/10/25/flash-objects-break-wordpress/</guid>
		<description><![CDATA[Today I had problem loading my pages properly in Firefox but not Internet Explorer, I wondered why this happen as I never had this problem with my blog before. At first I thought there was a problem with the scripts, but it still won&#8217;t load completely even after disabling the scripts, then I tried to [...]]]></description>
			<content:encoded><![CDATA[<p>Today I had problem loading my pages properly in Firefox but not Internet Explorer, I wondered why this happen as I never had this problem with my blog before. At first I thought there was a problem with the scripts, but it still won&#8217;t load completely even after disabling the scripts, then I tried to disable activex controls, and it loaded perfectly without the flash objects. Then I suspect the flash videos I have is causing those problems, I tried different flash objects and I found out that those with &lt;object&gt; tags won&#8217;t break the page, but those with &lt;embed&gt; actually do. I changed all my videos to</p>
<blockquote><p>&lt;ins&gt;&lt;object type=&#8217;application/x-shockwave-flash&#8217; data=&#8217;somefile.swf&#8217;&gt;&lt;param<br />
name=&#8217;allowScriptAccess&#8217; value=&#8217;sameDomain&#8217; /&gt;&lt;param name=&#8217;movie&#8217; value=&#8217;somefile.swf&#8217;&gt;&lt;param<br />
name=&#8217;quality&#8217; value=&#8217;best&#8217;/&gt;&lt;param name=&#8217;bgcolor&#8217; value=&#8217;#ffffff&#8217; /&gt;&lt;param<br />
name=&#8217;scale&#8217; value=&#8217;noScale&#8217; /&gt;&lt;param name=&#8217;wmode&#8217; value=&#8217;window&#8217;/&gt;&lt;param name=&#8217;salign&#8217;<br />
value=&#8217;TL&#8217; /&gt;&lt;/object&gt;&lt;/ins&gt;</p></blockquote>
<table id="table1" border="0" width="100%">
<tbody>
<tr>
<td><strong>Before changes:</strong></td>
<td><strong>After changes:</strong></td>
</tr>
<tr>
<td><img src="http://farm3.static.flickr.com/2041/1801672887_a2ef9468c4_o.jpg" border="0" alt="" width="140" height="379" /></td>
<td><img src="http://farm3.static.flickr.com/2224/1801672885_56fd762366_o.jpg" border="0" alt="" width="204" height="377" /></td>
</tr>
</tbody>
</table>
<hr /><small>Copyright &copy; 2008<br /> This feed is for personal, non-commercial use only. <br /> The use of this feed on other websites breaches copyright. If this content is not in your news reader, it makes the page you are viewing an infringement of the copyright. (Digital Fingerprint:<br /> )</small>]]></content:encoded>
			<wfw:commentRss>http://www.theusefulblog.com/post/flash-objects-break-wordpress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>My former Blogger&#8217;s blog doesn&#8217;t update in technorati</title>
		<link>http://www.theusefulblog.com/post/my-former-bloggers-blog-doesnt-update-in-technorati/</link>
		<comments>http://www.theusefulblog.com/post/my-former-bloggers-blog-doesnt-update-in-technorati/#comments</comments>
		<pubDate>Wed, 25 Oct 2006 06:56:35 +0000</pubDate>
		<dc:creator>angelchen1111</dc:creator>
				<category><![CDATA[blogger]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.theusefulblog.com/2006/10/24/my-former-bloggers-blog-doesnt-update-in-technorati/</guid>
		<description><![CDATA[My former blog angelchen1111.blogspot.com doesn&#8217;t update in technorati at all, except for the links. The last date I updated it was Saturday, October 21, 2006. but in technorati it says it was updated 67 days ago, the exact day I created that blog in Blogger. I don&#8217;t know why, I only have problem with that [...]]]></description>
			<content:encoded><![CDATA[<p>My former blog angelchen1111.blogspot.com doesn&#8217;t update in technorati at all, except for the links. The last date I updated it was Saturday, October 21, 2006. but in technorati it says it was updated 67 days ago, the exact day I created that blog in Blogger. I don&#8217;t know why, I only have problem with that blog, I don&#8217;t have problem with other blogs like this blog and <a href="http://myspotforblog.blogspot.com">the other blog from Blogger.</a><img src="http://static.flickr.com/84/278899680_65ce53b790.jpg" alt="" /></p>
<hr /><small>Copyright &copy; 2008<br /> This feed is for personal, non-commercial use only. <br /> The use of this feed on other websites breaches copyright. If this content is not in your news reader, it makes the page you are viewing an infringement of the copyright. (Digital Fingerprint:<br /> )</small>]]></content:encoded>
			<wfw:commentRss>http://www.theusefulblog.com/post/my-former-bloggers-blog-doesnt-update-in-technorati/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>How to get rid of the wide spaces between the post body in WordPress</title>
		<link>http://www.theusefulblog.com/post/how-to-get-rid-of-the-wide-spaces-between-the-post-body-in-wordpress/</link>
		<comments>http://www.theusefulblog.com/post/how-to-get-rid-of-the-wide-spaces-between-the-post-body-in-wordpress/#comments</comments>
		<pubDate>Mon, 23 Oct 2006 05:06:51 +0000</pubDate>
		<dc:creator>angelchen1111</dc:creator>
				<category><![CDATA[tips]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[html]]></category>

		<guid isPermaLink="false">http://www.theusefulblog.com/2006/10/22/how-to-get-rid-of-the-wide-spaces-between-the-post-body-in-wordpress/</guid>
		<description><![CDATA[Sometimes we see some annoying wide spaces in between the post body, which makes the post looks wierd, like this one in the picture. That&#8217;s because the theme&#8217;s stylesheet made the post body&#8217;s texts to align justified. To get rid of those wide spaces we have to open the file style.css in the folder &#8220;wp-content/themes/your [...]]]></description>
			<content:encoded><![CDATA[<p>Sometimes we see some annoying wide spaces in between the post body, which makes the post looks wierd, like this one in <a href="http://www.theusefulblog.com/wp-content/uploads/2006/10/too-many-wide-space.JPG">the picture</a>. That&#8217;s because the theme&#8217;s stylesheet made the post body&#8217;s texts to align justified. To get rid of those wide spaces we have to open the file <strong>style.css</strong> in the folder &#8220;<strong>wp-content/themes/your theme&#8221;,</strong> find the <strong>.post {</strong> section or <strong>.entry-content {</strong> section if you&#8217;re using <strong>K2</strong> and change <strong>text-align: justify; </strong>to <strong>text-align: left; </strong>to make the text to align left, so that they won&#8217;t make wide spaces by sometimes aligning left and sometimes aligning right. After changing this file the wide spaces will be gone.</p>
<hr /><small>Copyright &copy; 2008<br /> This feed is for personal, non-commercial use only. <br /> The use of this feed on other websites breaches copyright. If this content is not in your news reader, it makes the page you are viewing an infringement of the copyright. (Digital Fingerprint:<br /> )</small>]]></content:encoded>
			<wfw:commentRss>http://www.theusefulblog.com/post/how-to-get-rid-of-the-wide-spaces-between-the-post-body-in-wordpress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>I got too many wide space in between the post body(solved)</title>
		<link>http://www.theusefulblog.com/post/i-got-too-many-wide-space-in-between-the-post-body/</link>
		<comments>http://www.theusefulblog.com/post/i-got-too-many-wide-space-in-between-the-post-body/#comments</comments>
		<pubDate>Mon, 23 Oct 2006 03:40:55 +0000</pubDate>
		<dc:creator>angelchen1111</dc:creator>
				<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.theusefulblog.com/2006/10/22/i-got-too-many-wide-space-in-between-the-post-body/</guid>
		<description><![CDATA[I got too many wide space in between the post body, does anyone know how to get rid of them? 
Copyright &#169; 2008 This feed is for personal, non-commercial use only.  The use of this feed on other websites breaches copyright. If this content is not in your news reader, it makes the page [...]]]></description>
			<content:encoded><![CDATA[<p><del datetime="2006-10-23T04:18:56+00:00">I got too many wide space in between the post body, does anyone know how to get rid of them?</del> <img id="image41" src="http://static.flickr.com/105/277048401_18693a7664.jpg" alt="too-many-wide-space.JPG" /></p>
<hr /><small>Copyright &copy; 2008<br /> This feed is for personal, non-commercial use only. <br /> The use of this feed on other websites breaches copyright. If this content is not in your news reader, it makes the page you are viewing an infringement of the copyright. (Digital Fingerprint:<br /> )</small>]]></content:encoded>
			<wfw:commentRss>http://www.theusefulblog.com/post/i-got-too-many-wide-space-in-between-the-post-body/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Finally I moved my blog to http://www.theusefulblog.com</title>
		<link>http://www.theusefulblog.com/post/finally-i-moved-my-blog-to-httpwwwtheusefulblogcom/</link>
		<comments>http://www.theusefulblog.com/post/finally-i-moved-my-blog-to-httpwwwtheusefulblogcom/#comments</comments>
		<pubDate>Sun, 22 Oct 2006 02:40:32 +0000</pubDate>
		<dc:creator>angelchen1111</dc:creator>
				<category><![CDATA[blog]]></category>
		<category><![CDATA[domain]]></category>
		<category><![CDATA[ftp]]></category>
		<category><![CDATA[hosting]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.theusefulblog.com/2006/10/21/finally-i-moved-my-blog-to-httpwwwtheusefulblogcom/</guid>
		<description><![CDATA[Today I decided to use the domain theusefulblog.com for my blog and use Wordpress to host my blog instead of Blogger. I decided not to use tipspedia.info since .info domain kinda sucks. I bought a very cheap web hosting from CirtexHosting which is only $2.50 a month or $24 a year. Despite its low price, [...]]]></description>
			<content:encoded><![CDATA[<p>Today I decided to use the domain theusefulblog.com for my blog and use Wordpress to host my blog instead of Blogger. I decided not to use tipspedia.info since .info domain kinda sucks. I bought a very cheap web hosting from <a href="http://www.cirtexhosting.com/affiliates/idevaffiliate.php?id=297">CirtexHosting</a> which is only $2.50 a month or $24 a year. Despite its low price, I found the service is excellent, it gives you <span style="color: #ff0000;">5000 MB Storage, 100 GB Bandwidth</span>, PHP, CGI, MYSQL, and 5 Email / FTP Accounts in the basic plan, it’s almost never down and its support is also excellent, and it has Live Support where they answer your questions very quickly, the email support is also very fast.</p>
<p>After I created the host and installed WordPress on it I started to migrate the old posts from Blogger to WordPress. Because my Blogger was beta I can&#8217;t import it directly, I had to import its post&#8217;s RSS to the new blog, after importing I found the timestamp was off by seven hours I had to change them back one by one by hand, I also had to type the comments in one by one again since I don&#8217;t know how to import them from Blogger to WordPress <img src='http://www.theusefulblog.com/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' /> . It took me about three hours to do all those&#8230;. Finally I finish migrating by putting the customization I had from Blogger to here and pick a theme for my new blog.</p>
<p>Right now I just don&#8217;t know how to change the top menu for this K2 style TrueBlue, the links over there are not obvious enough,<a class="imagelink" title="topmenu.JPG" href="http://www.theusefulblog.com/wp-content/uploads/2006/10/topmenu.JPG"><img id="image33" src="http://www.theusefulblog.com/wp-content/uploads/2006/10/topmenu.JPG" alt="topmenu.JPG" /></a></p>
<p>if anybody know how to make it look better please tell me about that by leaving a comment here.</p>
<hr /><small>Copyright &copy; 2008<br /> This feed is for personal, non-commercial use only. <br /> The use of this feed on other websites breaches copyright. If this content is not in your news reader, it makes the page you are viewing an infringement of the copyright. (Digital Fingerprint:<br /> )</small>]]></content:encoded>
			<wfw:commentRss>http://www.theusefulblog.com/post/finally-i-moved-my-blog-to-httpwwwtheusefulblogcom/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
