<?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 Shoot</title>
	<atom:link href="http://www.webdesignshoot.com/blog/?feed=rss2" rel="self" type="application/rss+xml" />
	<link>http://www.webdesignshoot.com/blog</link>
	<description>Record any problem or solution of my design work.</description>
	<lastBuildDate>Wed, 05 Oct 2011 09:27:18 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>[ PHP ] Reading external text file and put the content into the text field.</title>
		<link>http://www.webdesignshoot.com/blog/?p=162</link>
		<comments>http://www.webdesignshoot.com/blog/?p=162#comments</comments>
		<pubDate>Wed, 05 Oct 2011 09:17:41 +0000</pubDate>
		<dc:creator>Becky</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.webdesignshoot.com/blog/?p=162</guid>
		<description><![CDATA[&#60;?PHP $file_handle = fopen(&#34;TEST.txt&#34;, &#34;r&#34;); while (!feof($file_handle) ) { &#160; &#160; $line_of_text = fgets($file_handle); &#160; &#160; $parts[] = explode(';', $line_of_text); } fclose($file_handle); ?&#62; -------------------------------------------------------- The content in the TEST.txt is 13;26;50 -------------------------------------------------------- So the output will be 13 26 50 Ok, now we got the values from the file, but how to put these into [...]]]></description>
			<content:encoded><![CDATA[<div class="codecolorer-container text default" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><div class="text codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">&lt;?PHP<br />
$file_handle = fopen(&quot;TEST.txt&quot;, &quot;r&quot;);<br />
while (!feof($file_handle) ) {<br />
&nbsp; &nbsp; $line_of_text = fgets($file_handle);<br />
&nbsp; &nbsp; $parts[] = explode(';', $line_of_text);<br />
}<br />
<br />
fclose($file_handle);<br />
<br />
?&gt;</div></div>
<pre>--------------------------------------------------------</pre>
<pre>The content in the TEST.txt is</pre>
<pre>13;26;50</pre>
<pre>--------------------------------------------------------</pre>
<pre>So the output will be</pre>
<pre>13</pre>
<pre>26</pre>
<pre>50</pre>
<pre>Ok, now we got the values from the file, but how to put these into the text field of form?</pre>
<div class="codecolorer-container text default" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;height:300px;"><div class="text codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">&lt;form action=&quot;&quot; method=&quot;get&quot; id=&quot;form-1&quot;&gt;<br />
&lt;table&gt;<br />
&lt;tr&gt;<br />
&lt;td&gt;Value-1&lt;/td&gt;<br />
&lt;td width=&quot;5&quot;&gt;&lt;/td&gt;<br />
&lt;td&gt;&lt;input name=&quot;text-1&quot; type=&quot;text&quot; value=&quot;&lt;?php echo $parts[0][0]; ?&gt;&quot; readonly=&quot;true&quot; /&gt;&lt;/td&gt;<br />
&lt;/tr&gt;<br />
<br />
&lt;tr&gt;<br />
&lt;td&gt;Value-2&lt;/td&gt;<br />
&lt;td width=&quot;5&quot;&gt;&lt;/td&gt;<br />
&lt;td&gt;&lt;input name=&quot;text-2&quot; type=&quot;text&quot; value=&quot;&lt;?php echo $parts[0][1]; ?&gt;&quot; readonly=&quot;true&quot; /&gt;&lt;/td&gt;<br />
&lt;/tr&gt;<br />
<br />
&lt;tr&gt;<br />
&lt;td&gt;Value-3&lt;/td&gt;<br />
&lt;td width=&quot;5&quot;&gt;&lt;/td&gt;<br />
&lt;td&gt;&lt;input name=&quot;text-3&quot; type=&quot;text&quot; value=&quot;&lt;?php echo $parts[0][2]; ?&gt;&quot; readonly=&quot;true&quot; /&gt;&lt;/td&gt;<br />
&lt;/tr&gt;<br />
&lt;/table&gt;<br />
&lt;/form&gt;</div></div>
]]></content:encoded>
			<wfw:commentRss>http://www.webdesignshoot.com/blog/?feed=rss2&#038;p=162</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>[HTML] HTML5 chart</title>
		<link>http://www.webdesignshoot.com/blog/?p=161</link>
		<comments>http://www.webdesignshoot.com/blog/?p=161#comments</comments>
		<pubDate>Thu, 01 Sep 2011 13:05:05 +0000</pubDate>
		<dc:creator>Becky</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Good article]]></category>

		<guid isPermaLink="false">http://www.webdesignshoot.com/blog/?p=161</guid>
		<description><![CDATA[http://joshduck.com/periodic-table.html]]></description>
			<content:encoded><![CDATA[<p>http://joshduck.com/periodic-table.html</p>
]]></content:encoded>
			<wfw:commentRss>http://www.webdesignshoot.com/blog/?feed=rss2&#038;p=161</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>[ Photoshop ] Quality Brushes</title>
		<link>http://www.webdesignshoot.com/blog/?p=156</link>
		<comments>http://www.webdesignshoot.com/blog/?p=156#comments</comments>
		<pubDate>Wed, 08 Sep 2010 13:49:54 +0000</pubDate>
		<dc:creator>Becky</dc:creator>
				<category><![CDATA[Working Note]]></category>
		<category><![CDATA[Photoshop]]></category>

		<guid isPermaLink="false">http://www.webdesignshoot.com/blog/?p=156</guid>
		<description><![CDATA[QBrushes  http://qbrushes.net/ Today, i found this site occasionally, it&#8217;s so cool &#8230; lots of brushes, all for free. Enjoy !]]></description>
			<content:encoded><![CDATA[<p><a href="http://qbrushes.net/"><img class="alignnone" title="QBrushes" src="http://qbrushes.net/downloads/images/preview/floral-brush-preview.jpg" alt="" width="676" height="259" /></a></p>
<p>QBrushes  <a title="QBrushes" href="http://qbrushes.net/" target="_blank">http://qbrushes.net/</a></p>
<p>Today, i found this site occasionally, it&#8217;s so cool &#8230; lots of brushes, all for free.</p>
<p>Enjoy !</p>
]]></content:encoded>
			<wfw:commentRss>http://www.webdesignshoot.com/blog/?feed=rss2&#038;p=156</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>[ Google ] Font Directory</title>
		<link>http://www.webdesignshoot.com/blog/?p=148</link>
		<comments>http://www.webdesignshoot.com/blog/?p=148#comments</comments>
		<pubDate>Mon, 24 May 2010 06:34:13 +0000</pubDate>
		<dc:creator>Becky</dc:creator>
				<category><![CDATA[Working Note]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[HTML]]></category>

		<guid isPermaLink="false">http://www.webdesignshoot.com/blog/?p=148</guid>
		<description><![CDATA[&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;- It&#8217;s really a good news for web-designer and the easiest way I have never seen to apply beautiful fonts for web site. Try it now!      http://code.google.com/webfonts]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.webdesignshoot.com/blog/wp-content/uploads/2010/05/google-font.png"><img class="alignnone size-full wp-image-149" title="google-font" src="http://www.webdesignshoot.com/blog/wp-content/uploads/2010/05/google-font.png" alt="" width="748" height="233" /></a></p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-</p>
<p>It&#8217;s really a good news for web-designer and the easiest way I have never seen to apply beautiful fonts for web site.</p>
<p>Try it now!      <a title="Google font" href="http://code.google.com/webfonts" target="_blank">http://code.google.com/webfonts</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.webdesignshoot.com/blog/?feed=rss2&#038;p=148</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>[ CSS ] Image Replacement</title>
		<link>http://www.webdesignshoot.com/blog/?p=144</link>
		<comments>http://www.webdesignshoot.com/blog/?p=144#comments</comments>
		<pubDate>Tue, 11 May 2010 03:26:39 +0000</pubDate>
		<dc:creator>Becky</dc:creator>
				<category><![CDATA[Good Artical Review]]></category>
		<category><![CDATA[Working Note]]></category>
		<category><![CDATA[CSS]]></category>

		<guid isPermaLink="false">http://www.webdesignshoot.com/blog/?p=144</guid>
		<description><![CDATA[//* Reference from http://www.cssplay.co.uk/menu/ir.html There are lots of ways to make image replacement function, In this article, i would like to share a solution which uses totally CSS technology &#8230; very simple but useful! &#60;style type="text/css"&#62; h3.ir {width:350px; height:40px; position:relative; padding:0; margin:0 auto 3em auto;} h3.ir em {display:block; width:350px; height:40px; background:url(../images/ir.gif); position:absolute; top:0; left:0;} h3.ir [...]]]></description>
			<content:encoded><![CDATA[<p>//* Reference from <a title="Image Replacement Demo" href="http://www.cssplay.co.uk/menu/ir.html" target="_blank">http://www.cssplay.co.uk/menu/ir.html</a></p>
<p>There are lots of ways to make image replacement function,</p>
<p>In this article, i would like to share a solution which uses totally CSS technology &#8230; very simple but useful!</p>
<p><a href="http://www.webdesignshoot.com/blog/wp-content/uploads/2010/05/1.jpg"><img class="alignnone size-full wp-image-145" title="image replacement" src="http://www.webdesignshoot.com/blog/wp-content/uploads/2010/05/1.jpg" alt="" width="517" height="181" /></a></p>
<pre id="line17"><span style="color: #ff00ff;">&lt;style type="text/css"&gt;</span>
<span style="color: #3366ff;">h3.ir {width:350px; height:40px; position:relative; padding:0; margin:0 auto 3em auto;}
h3.ir em {display:block; width:350px; height:40px; background:url(../images/ir.gif); position:absolute; top:0; left:0;}
h3.ir a {cursor:pointer;}
#holder {margin-bottom:2em;}

h3.ir a:hover {background:#fff;}
h3.ir a:hover em {background:url(../images/ir2.gif);}
</span><span style="color: #ff00ff;">&lt;/style&gt;</span>

<span style="text-decoration: underline;">*Remark: Adjust the dimension and the source link according to your image. It should work vell well!</span>
--------------------------------------------------
HTML
--------------------------------------------------
&lt;div id="holder"&gt;
&lt;h3 class="ir"&gt;&lt;em title="Image Replacement"&gt;&lt;/em&gt;Image Replacement&lt;/h3&gt;
&lt;h3 class="ir"&gt;&lt;a href="<a href="view-source:http://www.cssplay.co.uk/comments/comments.php?comment_id=image%20replacement">#</a>"&gt;&lt;em title="Image Replacement"&gt;&lt;/em&gt;Image Replacement&lt;/a&gt;&lt;/h3&gt;
&lt;/div&gt;</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.webdesignshoot.com/blog/?feed=rss2&#038;p=144</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>[ PhotoShop ] Convert JPG to Vector file</title>
		<link>http://www.webdesignshoot.com/blog/?p=133</link>
		<comments>http://www.webdesignshoot.com/blog/?p=133#comments</comments>
		<pubDate>Wed, 10 Mar 2010 05:30:50 +0000</pubDate>
		<dc:creator>Becky</dc:creator>
				<category><![CDATA[Working Note]]></category>
		<category><![CDATA[Photoshop]]></category>

		<guid isPermaLink="false">http://www.webdesignshoot.com/blog/?p=133</guid>
		<description><![CDATA[There are some solutions to convert jpg file to vector file, for instance, using corel draw, adobe illustrator or adobe photoshop&#8230; For me,  I&#8217;m much familiar with photoshop, so PS would be my first choice. ^^ Here is a very simple but useful tut : http://www.bittbox.com/illustrator/take-vector-paths-from-photoshop-into-illustrator what if  you have an jpg image needed to [...]]]></description>
			<content:encoded><![CDATA[<p>There are some solutions to convert jpg file to vector file, for instance, using corel draw, adobe illustrator or adobe photoshop&#8230;</p>
<p>For me,  I&#8217;m much familiar with photoshop, so PS would be my first choice. ^^</p>
<p>Here is a very simple but useful tut :</p>
<p><a title="Vector paths tutorial" href="http://www.bittbox.com/illustrator/take-vector-paths-from-photoshop-into-illustrator" target="_blank">http://www.bittbox.com/illustrator/take-vector-paths-from-photoshop-into-illustrator</a></p>
<p>what if  you have an jpg image needed to convert to vector paths?</p>
<p>1. Open the image by photoshop</p>
<p>2. Make selection</p>
<p><a href="http://www.webdesignshoot.com/blog/wp-content/uploads/2010/03/screen-capture.png"><img class="alignnone size-medium wp-image-134" title="selection" src="http://www.webdesignshoot.com/blog/wp-content/uploads/2010/03/screen-capture-300x177.png" alt="" width="300" height="177" /></a></p>
<p>3. Remove the other objects you don&#8217;t need in the picture.</p>
<p><a href="http://www.webdesignshoot.com/blog/wp-content/uploads/2010/03/screen-capture-1.png"><img class="alignnone size-medium wp-image-135" title="remove other objects" src="http://www.webdesignshoot.com/blog/wp-content/uploads/2010/03/screen-capture-1-300x177.png" alt="" width="300" height="177" /></a></p>
<p>4. right-click in the selection area, than choose "make work path"</p>
<p><a href="http://www.webdesignshoot.com/blog/wp-content/uploads/2010/03/screen-capture-2.png"><img class="alignnone size-medium wp-image-136" title="make work path" src="http://www.webdesignshoot.com/blog/wp-content/uploads/2010/03/screen-capture-2-300x161.png" alt="" width="300" height="161" /></a></p>
<p>5. Export to illustrator : File &gt; export &gt; paths to illustrator, than you will get another new illustrator file.</p>
<p><a href="http://www.webdesignshoot.com/blog/wp-content/uploads/2010/03/screen-capture-3.png"><img class="alignnone size-medium wp-image-137" title="export to illustrator" src="http://www.webdesignshoot.com/blog/wp-content/uploads/2010/03/screen-capture-3-300x228.png" alt="" width="300" height="228" /></a></p>
<p>6. Open the illustrator file you just got on last step, you will see a blank page, don&#8217;t worry, it does has the paths, just select all things on the page,</p>
<p>you will find them out. Because those paths have no color. The final step is to paint the paths by the color tools in illustrator.</p>
<p>There you go&#8230; we have a vector image as same as jpg image.</p>
<p><a href="http://www.webdesignshoot.com/blog/wp-content/uploads/2010/03/screen-capture-4.png"><img class="alignnone size-medium wp-image-138" title="vector image" src="http://www.webdesignshoot.com/blog/wp-content/uploads/2010/03/screen-capture-4-300x292.png" alt="" width="300" height="292" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.webdesignshoot.com/blog/?feed=rss2&#038;p=133</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>[ Mac ] TunesTEXT &#8211; A Great Lyric Searcher Widget</title>
		<link>http://www.webdesignshoot.com/blog/?p=130</link>
		<comments>http://www.webdesignshoot.com/blog/?p=130#comments</comments>
		<pubDate>Wed, 24 Feb 2010 03:42:57 +0000</pubDate>
		<dc:creator>Becky</dc:creator>
				<category><![CDATA[Good Artical Review]]></category>
		<category><![CDATA[Mac]]></category>

		<guid isPermaLink="false">http://www.webdesignshoot.com/blog/?p=130</guid>
		<description><![CDATA[When you&#8217;re listening the music, and suddenly want to know the lyric &#8230;. but lazy to google it? There is a pretty convenient widget &#8212; TunesTEXT This is a Dashboard Widget displays lyrics of the song currently playing in iTunes. If you don&#8217;t have lyrics data, TunesTEXT searches online lyrics databases and download lyrics automatically. [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignnone" title="TunesTEXT" src="http://www.cyanworks.net/img/mac/TunesTEXTScreen28.jpg" alt="" width="280" height="400" /></p>
<p>When you&#8217;re listening the music, and suddenly want to know the lyric &#8230;. but lazy to google it?</p>
<p>There is a pretty convenient widget &#8212; TunesTEXT</p>
<p><span style="color: #000000;"><strong>This is a Dashboard Widget displays lyrics of the song currently playing in iTunes. </strong></span></p>
<p><span style="color: #000000;"><strong>If you don&#8217;t have lyrics data, TunesTEXT searches online lyrics databases and download lyrics automatically. Requires Mac OS X 10.4 or later. (Freeware).</strong></span></p>
<p>Please visit its offical site to have it! ^^</p>
<p><a title="TunesTEXT" href="http://www.cyanworks.net/dboardTunesTEXT.html" target="_blank">http://www.cyanworks.net/dboardTunesTEXT.html</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.webdesignshoot.com/blog/?feed=rss2&#038;p=130</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>[ Joomla ] Error with installing a component</title>
		<link>http://www.webdesignshoot.com/blog/?p=128</link>
		<comments>http://www.webdesignshoot.com/blog/?p=128#comments</comments>
		<pubDate>Tue, 23 Feb 2010 15:15:49 +0000</pubDate>
		<dc:creator>Becky</dc:creator>
				<category><![CDATA[Working Note]]></category>
		<category><![CDATA[joomla]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://www.webdesignshoot.com/blog/?p=128</guid>
		<description><![CDATA[Since I use Joomla, sometimes I encounter an annoying problem &#8212; fail to install a component : the install page turns out to a blank page and then no more response. Here is a solution, I believe that it can slove most errors of installing a component: Modify php.ini 1. Find out your php.ini 2.  [...]]]></description>
			<content:encoded><![CDATA[<p>Since I use Joomla, sometimes I encounter an annoying problem &#8212; fail to install a component :</p>
<p>the install page turns out to a blank page and then no more response.</p>
<p>Here is a solution, I believe that it can slove most errors of installing a component: Modify <strong>php.ini</strong></p>
<p>1. Find out your php.ini</p>
<p>2.  Change two values of it</p>
<p>a. Increase <strong>memory_limit</strong> at least to 32M;</p>
<p>b. Increase <strong>max_time_out</strong> to 300</p>
<p>3. Save your file.</p>
<p>If this solution still doesn&#8217;t work, you can set the values in <strong>administrator/index.php</strong></p>
<p>1. Adding the following script to index.php :<br />
<strong>set_time_limit(300);<br />
ini_set("memory_limit", "32M");</strong></p>
<p>2. Save the file.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.webdesignshoot.com/blog/?feed=rss2&#038;p=128</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>[ Mac ] The Secret Screen Capture Shortcut</title>
		<link>http://www.webdesignshoot.com/blog/?p=109</link>
		<comments>http://www.webdesignshoot.com/blog/?p=109#comments</comments>
		<pubDate>Fri, 12 Feb 2010 09:02:36 +0000</pubDate>
		<dc:creator>Becky</dc:creator>
				<category><![CDATA[Good Artical Review]]></category>
		<category><![CDATA[Mac]]></category>

		<guid isPermaLink="false">http://www.webdesignshoot.com/blog/?p=109</guid>
		<description><![CDATA[Command-Shift-3 shortcut for taking a screen capture of your entire screen, Command-Shift-4, which gives you a crosshair cursor so you can choose which area of the screen you want to capture. Control-Command-Shift-3 (or 4), which, instead of creating a file on your desktop, copies the capture into yourClipboard memory, so you can paste it where [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignnone" title="Screen Capture" src="http://images.apple.com/pro/tips/images/secretcapture.jpg" alt="" width="286" height="197" /></p>
<h3><span style="color: #ff6600;">Command-Shift-3</span> shortcut for taking a screen capture of your entire screen,</h3>
<h3><span style="color: #ff6600;">Command-Shift-4</span>, which gives you a crosshair cursor so you can choose which area of the screen you want to capture.</h3>
<h3><span style="color: #ff6600;">Control-Command-Shift-3 (or 4)</span>, which, instead of creating a file on your desktop, copies the capture into yourClipboard memory, so you can paste it where you want.</h3>
]]></content:encoded>
			<wfw:commentRss>http://www.webdesignshoot.com/blog/?feed=rss2&#038;p=109</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>[ Joomla ] Script Conflict &#8212; Light Box</title>
		<link>http://www.webdesignshoot.com/blog/?p=105</link>
		<comments>http://www.webdesignshoot.com/blog/?p=105#comments</comments>
		<pubDate>Fri, 12 Feb 2010 08:27:45 +0000</pubDate>
		<dc:creator>Becky</dc:creator>
				<category><![CDATA[Working Note]]></category>
		<category><![CDATA[joomla]]></category>
		<category><![CDATA[jquery]]></category>

		<guid isPermaLink="false">http://www.webdesignshoot.com/blog/?p=105</guid>
		<description><![CDATA[For a joomla web site desinger, I believe that YooTools is a very useful tools for a site. Bue when I use Yoo effect (the one plugin of YooTools), it seems there are some javascript conflicts between my accordion menu and its light box effect.The light box donesn&#8217;t work at all, just turns out to [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.webdesignshoot.com/blog/wp-content/uploads/2010/02/screen-capture-2.png"><img class="alignnone size-medium wp-image-106" title="YooTools" src="http://www.webdesignshoot.com/blog/wp-content/uploads/2010/02/screen-capture-2-300x105.png" alt="" width="498" height="174" /></a></p>
<p>For a joomla web site desinger, I believe that <a title="YooTools" href="http://www.yootheme.com/" target="_blank">YooTools</a> is a very useful tools for a site.</p>
<p>Bue when I use Yoo effect (the one plugin of YooTools), it seems there are some javascript conflicts between my</p>
<p>accordion menu and its light box effect.The light box donesn&#8217;t work at all, just turns out to a new page with my linked file.</p>
<p>I found out another solution to figure it out &#8230; <a href="http://shadowbox-js.com/index.html" target="_blank">Shadowbox.js</a> It solves all my problem magically &#8230; don&#8217;t have to change any code or somethng &#8230;. just remember to link the relative files in index.php of your template.<a href="http://shadowbox-js.com/index.html" target="_blank"><br />
</a></p>
<p>Now the light box works like a charm!!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.webdesignshoot.com/blog/?feed=rss2&#038;p=105</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

