<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments for Design Gala</title>
	<atom:link href="http://designgala.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://designgala.com</link>
	<description>Web Usability, Web Technology, User Experience</description>
	<lastBuildDate>Tue, 15 May 2012 16:54:05 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
	<item>
		<title>Comment on How to change wordpress theme directly from database? by What to do if you mess up your WordPress site &#124; suesdesign</title>
		<link>http://designgala.com/how-to-change-wordpress-theme-directly-from-database/comment-page-1/#comment-12275</link>
		<dc:creator>What to do if you mess up your WordPress site &#124; suesdesign</dc:creator>
		<pubDate>Tue, 15 May 2012 16:54:05 +0000</pubDate>
		<guid isPermaLink="false">http://www.designgala.com/?p=976#comment-12275</guid>
		<description>[...] From the tutorial at http://designgala.com/how-to-change-wordpress-theme-directly-from-database/ [...]</description>
		<content:encoded><![CDATA[<p>[...] From the tutorial at <a href="http://designgala.com/how-to-change-wordpress-theme-directly-from-database/" rel="nofollow">http://designgala.com/how-to-change-wordpress-theme-directly-from-database/</a> [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on TV Element WordPress Theme by Test Fernseher</title>
		<link>http://designgala.com/tv-element-wordpress-theme/comment-page-1/#comment-12270</link>
		<dc:creator>Test Fernseher</dc:creator>
		<pubDate>Thu, 03 May 2012 08:53:47 +0000</pubDate>
		<guid isPermaLink="false">http://www.designgala.com/?p=1982#comment-12270</guid>
		<description>Hey Rabi Shrestha,
I take your point, Does Anybody know where I can find a copy of TV Elements 3. This is a wordpress theme for those who dont know. NOTE MUST BE 3 not 2. If anyone has a copy that would be great. Thanks
BTW great blogpost</description>
		<content:encoded><![CDATA[<p>Hey Rabi Shrestha,<br />
I take your point, Does Anybody know where I can find a copy of TV Elements 3. This is a wordpress theme for those who dont know. NOTE MUST BE 3 not 2. If anyone has a copy that would be great. Thanks<br />
BTW great blogpost</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How to expand collapse (toggle) div layer using jQuery by Opera</title>
		<link>http://designgala.com/how-to-expand-collapse-toggle-div-layer-using-jquery/comment-page-2/#comment-12266</link>
		<dc:creator>Opera</dc:creator>
		<pubDate>Tue, 24 Apr 2012 09:46:52 +0000</pubDate>
		<guid isPermaLink="false">http://www.designgala.com/?p=331#comment-12266</guid>
		<description>Thanks so much, this is perfect !</description>
		<content:encoded><![CDATA[<p>Thanks so much, this is perfect !</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Simple Trick to Hide Tags, Comments widgets from WP-admin Add/Edit Post by Design Gala</title>
		<link>http://designgala.com/simple-trick-to-hide-tags-comments-widgets-from-wp-admin-addedit-post/comment-page-1/#comment-12265</link>
		<dc:creator>Design Gala</dc:creator>
		<pubDate>Mon, 23 Apr 2012 05:33:31 +0000</pubDate>
		<guid isPermaLink="false">http://www.designgala.com/?p=1522#comment-12265</guid>
		<description>Thanks nigedo. :)</description>
		<content:encoded><![CDATA[<p>Thanks nigedo. :)</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How to refresh DIV using jquery by Eric</title>
		<link>http://designgala.com/how-to-refresh-div-using-jquery/comment-page-1/#comment-12264</link>
		<dc:creator>Eric</dc:creator>
		<pubDate>Fri, 20 Apr 2012 17:33:22 +0000</pubDate>
		<guid isPermaLink="false">http://www.designgala.com/?p=943#comment-12264</guid>
		<description>I&#039;ve been hunting for this for some time.  Thanks for posting.  Great job!</description>
		<content:encoded><![CDATA[<p>I&#8217;ve been hunting for this for some time.  Thanks for posting.  Great job!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How to Add Text in an Image by Mitchell</title>
		<link>http://designgala.com/how-to-add-text-in-an-image/comment-page-1/#comment-12259</link>
		<dc:creator>Mitchell</dc:creator>
		<pubDate>Sun, 15 Apr 2012 12:39:11 +0000</pubDate>
		<guid isPermaLink="false">http://www.designgala.com/?p=6#comment-12259</guid>
		<description>Thanks.

Got problems in beginning, but fixed and working flawlessly.

Here is my code if anyone wants to use.

&lt;?php
header (&quot;Content-type: image/png&quot;);
$string = &quot;YOUR TEXT&quot;;	//YOUR TEXT eg: Hi Mom :)
$imageO = &quot;IMAGE.png&quot;;	//YOUR IMAGE AND LOCATION eg: images/myimage.png
$imageN = &quot;IMAGE2.png&quot;;	//YOUR NEW IMAGE eg: mynewimage.png

//PLEASE NOTE IF YOU HAVE TROUBLE MAKE SURE YOUR OUTPUT IMAGE IS NOT IN A SEPARATE FOLDER, IT WILL OUTPUT TO THE FOLDER OF THE .php FILE

$font = 4;	//YOUR FONT SIZE

$width = imagefontwidth($font) * strlen($string) ;
$height = imagefontheight($font) ;
$im = imagecreatefrompng($imageO);

$x = imagesx($im) / 2;	//PLACEMENT CENTERISH - X
$y = imagesy($im) / 2;	//PLACEMENT CENTERISH - Y

$backgroundColor = imagecolorallocate ($im, 255, 255, 255);
$textColor = imagecolorallocate ($im, 0, 0,0);
imagestring ($im, $font, $x, $y,  $string, $textColor);
imagepng($im,$imageN);	
$w = imagesx($im);
$h = imagesy($im);
//PRINT IMAGE ON SCREEN
echo &quot;&quot;;
echo &quot;&lt;a href=&#039;http://www.mrincworld.com&#039; rel=&quot;nofollow&quot;&gt;M.R. Inc - 2012&lt;/a&gt;&quot;;
?&gt;

Regards
Mitchell</description>
		<content:encoded><![CDATA[<p>Thanks.</p>
<p>Got problems in beginning, but fixed and working flawlessly.</p>
<p>Here is my code if anyone wants to use.</p>
<p>&lt;?php<br />
header (&quot;Content-type: image/png&quot;);<br />
$string = &quot;YOUR TEXT&quot;;	//YOUR TEXT eg: Hi Mom :)<br />
$imageO = &quot;IMAGE.png&quot;;	//YOUR IMAGE AND LOCATION eg: images/myimage.png<br />
$imageN = &quot;IMAGE2.png&quot;;	//YOUR NEW IMAGE eg: mynewimage.png</p>
<p>//PLEASE NOTE IF YOU HAVE TROUBLE MAKE SURE YOUR OUTPUT IMAGE IS NOT IN A SEPARATE FOLDER, IT WILL OUTPUT TO THE FOLDER OF THE .php FILE</p>
<p>$font = 4;	//YOUR FONT SIZE</p>
<p>$width = imagefontwidth($font) * strlen($string) ;<br />
$height = imagefontheight($font) ;<br />
$im = imagecreatefrompng($imageO);</p>
<p>$x = imagesx($im) / 2;	//PLACEMENT CENTERISH &#8211; X<br />
$y = imagesy($im) / 2;	//PLACEMENT CENTERISH &#8211; Y</p>
<p>$backgroundColor = imagecolorallocate ($im, 255, 255, 255);<br />
$textColor = imagecolorallocate ($im, 0, 0,0);<br />
imagestring ($im, $font, $x, $y,  $string, $textColor);<br />
imagepng($im,$imageN);<br />
$w = imagesx($im);<br />
$h = imagesy($im);<br />
//PRINT IMAGE ON SCREEN<br />
echo &quot;&#8221;;<br />
echo &#8220;<a href='http://www.mrincworld.com' rel="nofollow">M.R. Inc &#8211; 2012</a>&#8220;;<br />
?&gt;</p>
<p>Regards<br />
Mitchell</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How to expand collapse (toggle) div layer using jQuery by Demo Resources 04.08 &#124; Website Design One</title>
		<link>http://designgala.com/how-to-expand-collapse-toggle-div-layer-using-jquery/comment-page-2/#comment-12255</link>
		<dc:creator>Demo Resources 04.08 &#124; Website Design One</dc:creator>
		<pubDate>Mon, 09 Apr 2012 03:42:13 +0000</pubDate>
		<guid isPermaLink="false">http://www.designgala.com/?p=331#comment-12255</guid>
		<description>[...] Here is a link to a Twitter jQuery Demo. Here is a link to a Toggle DIV using jQuery Demo. [...]</description>
		<content:encoded><![CDATA[<p>[...] Here is a link to a Twitter jQuery Demo. Here is a link to a Toggle DIV using jQuery Demo. [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How to expand collapse (toggle) div layer using jQuery by Carl Kelley</title>
		<link>http://designgala.com/how-to-expand-collapse-toggle-div-layer-using-jquery/comment-page-2/#comment-12253</link>
		<dc:creator>Carl Kelley</dc:creator>
		<pubDate>Thu, 05 Apr 2012 15:21:15 +0000</pubDate>
		<guid isPermaLink="false">http://www.designgala.com/?p=331#comment-12253</guid>
		<description>Thank you for you elegant solution and lucid presentation.</description>
		<content:encoded><![CDATA[<p>Thank you for you elegant solution and lucid presentation.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How to expand collapse (toggle) div layer using jQuery by Md. Rasel Ahmed</title>
		<link>http://designgala.com/how-to-expand-collapse-toggle-div-layer-using-jquery/comment-page-2/#comment-12251</link>
		<dc:creator>Md. Rasel Ahmed</dc:creator>
		<pubDate>Thu, 05 Apr 2012 08:25:39 +0000</pubDate>
		<guid isPermaLink="false">http://www.designgala.com/?p=331#comment-12251</guid>
		<description>Really Nice....  Thank you :)</description>
		<content:encoded><![CDATA[<p>Really Nice&#8230;.  Thank you :)</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How to expand collapse (toggle) div layer using jQuery by Nduh</title>
		<link>http://designgala.com/how-to-expand-collapse-toggle-div-layer-using-jquery/comment-page-2/#comment-12190</link>
		<dc:creator>Nduh</dc:creator>
		<pubDate>Tue, 03 Apr 2012 14:07:38 +0000</pubDate>
		<guid isPermaLink="false">http://www.designgala.com/?p=331#comment-12190</guid>
		<description>plz help, what if u r using ASP.NET master pages. when your menu is  with a class and a body on the other page with , plz email me so that i&#039;ll forward screen shots of u don&#039;t understand</description>
		<content:encoded><![CDATA[<p>plz help, what if u r using ASP.NET master pages. when your menu is  with a class and a body on the other page with , plz email me so that i&#8217;ll forward screen shots of u don&#8217;t understand</p>
]]></content:encoded>
	</item>
</channel>
</rss>

