<?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 on: Lightweight JavaScript Accordion with CSS</title>
	<atom:link href="http://www.leigeber.com/2008/04/lightweight-javascript-and-css-accordion/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.leigeber.com/2008/04/lightweight-javascript-and-css-accordion/</link>
	<description>This web development blog features fresh articles on JavaScript, AJAX, CSS, XHTML, PHP, Photoshop and more.</description>
	<lastBuildDate>Fri, 19 Mar 2010 21:31:07 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: theActor</title>
		<link>http://www.leigeber.com/2008/04/lightweight-javascript-and-css-accordion/comment-page-3/#comment-6424</link>
		<dc:creator>theActor</dc:creator>
		<pubDate>Mon, 22 Dec 2008 13:03:29 +0000</pubDate>
		<guid isPermaLink="false">http://www.leigeber.com/?p=13#comment-6424</guid>
		<description>hello guys,
Im trying to apply a tabbed acordian to my site however i dont want to disrrupt the present layout.

I have links at the top of the page that headshots, contact ect.
I would like only the link that is pressed to be visiable at any time.
The only part I wish to be visible when the page originally loads is my name.

Can any body help?</description>
		<content:encoded><![CDATA[<p>hello guys,<br />
Im trying to apply a tabbed acordian to my site however i dont want to disrrupt the present layout.</p>
<p>I have links at the top of the page that headshots, contact ect.<br />
I would like only the link that is pressed to be visiable at any time.<br />
The only part I wish to be visible when the page originally loads is my name.</p>
<p>Can any body help?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Crow</title>
		<link>http://www.leigeber.com/2008/04/lightweight-javascript-and-css-accordion/comment-page-3/#comment-6364</link>
		<dc:creator>Crow</dc:creator>
		<pubDate>Fri, 12 Dec 2008 22:58:14 +0000</pubDate>
		<guid isPermaLink="false">http://www.leigeber.com/?p=13#comment-6364</guid>
		<description>How to create an active selection in this accordion?</description>
		<content:encoded><![CDATA[<p>How to create an active selection in this accordion?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: leslie</title>
		<link>http://www.leigeber.com/2008/04/lightweight-javascript-and-css-accordion/comment-page-3/#comment-6346</link>
		<dc:creator>leslie</dc:creator>
		<pubDate>Wed, 10 Dec 2008 14:54:19 +0000</pubDate>
		<guid isPermaLink="false">http://www.leigeber.com/?p=13#comment-6346</guid>
		<description>I noticed that the script works correctly on IE 6.0.2900.2180; but does not work correctly on others.</description>
		<content:encoded><![CDATA[<p>I noticed that the script works correctly on IE 6.0.2900.2180; but does not work correctly on others.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: leslie</title>
		<link>http://www.leigeber.com/2008/04/lightweight-javascript-and-css-accordion/comment-page-3/#comment-6343</link>
		<dc:creator>leslie</dc:creator>
		<pubDate>Wed, 10 Dec 2008 02:46:59 +0000</pubDate>
		<guid isPermaLink="false">http://www.leigeber.com/?p=13#comment-6343</guid>
		<description>Did the IE6 text issue get fixed?  It looks fine for me when the page loads, but when I click one of the other levels, all the text in the slider goes bold and looks down right awful.  Only in ie6.</description>
		<content:encoded><![CDATA[<p>Did the IE6 text issue get fixed?  It looks fine for me when the page loads, but when I click one of the other levels, all the text in the slider goes bold and looks down right awful.  Only in ie6.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Burak Yücel</title>
		<link>http://www.leigeber.com/2008/04/lightweight-javascript-and-css-accordion/comment-page-3/#comment-6241</link>
		<dc:creator>Burak Yücel</dc:creator>
		<pubDate>Sun, 23 Nov 2008 15:53:03 +0000</pubDate>
		<guid isPermaLink="false">http://www.leigeber.com/?p=13#comment-6241</guid>
		<description>Isnt there any answer about width ??? how can i change the width of accordion ?</description>
		<content:encoded><![CDATA[<p>Isnt there any answer about width ??? how can i change the width of accordion ?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Amante</title>
		<link>http://www.leigeber.com/2008/04/lightweight-javascript-and-css-accordion/comment-page-2/#comment-6211</link>
		<dc:creator>Amante</dc:creator>
		<pubDate>Wed, 19 Nov 2008 20:29:58 +0000</pubDate>
		<guid isPermaLink="false">http://www.leigeber.com/?p=13#comment-6211</guid>
		<description>Quick tip: To leave tabs open even when you click on other tabs just replace this line of code.

else if(cd.style.display==&#039;block&#039;)
{
	this.islide(c,-1);
}

with

else if(cd.style.display==&#039;block&#039;&amp;&amp;h==d)
{
	this.islide(c,-1);
}</description>
		<content:encoded><![CDATA[<p>Quick tip: To leave tabs open even when you click on other tabs just replace this line of code.</p>
<p>else if(cd.style.display==&#8217;block&#8217;)<br />
{<br />
	this.islide(c,-1);<br />
}</p>
<p>with</p>
<p>else if(cd.style.display==&#8217;block&#8217;&#38;&#38;h==d)<br />
{<br />
	this.islide(c,-1);<br />
}</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: sassygirl</title>
		<link>http://www.leigeber.com/2008/04/lightweight-javascript-and-css-accordion/comment-page-2/#comment-6100</link>
		<dc:creator>sassygirl</dc:creator>
		<pubDate>Mon, 10 Nov 2008 02:09:50 +0000</pubDate>
		<guid isPermaLink="false">http://www.leigeber.com/?p=13#comment-6100</guid>
		<description>ignore my above question, somehow I got it working :)</description>
		<content:encoded><![CDATA[<p>ignore my above question, somehow I got it working <img src='http://www.leigeber.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Burak Yücel</title>
		<link>http://www.leigeber.com/2008/04/lightweight-javascript-and-css-accordion/comment-page-2/#comment-6099</link>
		<dc:creator>Burak Yücel</dc:creator>
		<pubDate>Mon, 10 Nov 2008 02:00:28 +0000</pubDate>
		<guid isPermaLink="false">http://www.leigeber.com/?p=13#comment-6099</guid>
		<description>REALLYY GREAT WORK !!! I COULDNT FIND HOW I CAN CHANGE THE WIDTH OF THE ALL SLIDES . THERE IS A WIDTH ENTERY ON CSS PARTS I CHANGED ALL ONE . BUT THAT EFFECT NOTHING ... 
THANKS FOR YOUR ANSWER ... PLEASE GIVE ME A DETAILED ANSWER BECAUSE I AM NEW AT CSS</description>
		<content:encoded><![CDATA[<p>REALLYY GREAT WORK !!! I COULDNT FIND HOW I CAN CHANGE THE WIDTH OF THE ALL SLIDES . THERE IS A WIDTH ENTERY ON CSS PARTS I CHANGED ALL ONE . BUT THAT EFFECT NOTHING &#8230;<br />
THANKS FOR YOUR ANSWER &#8230; PLEASE GIVE ME A DETAILED ANSWER BECAUSE I AM NEW AT CSS</p>
]]></content:encoded>
	</item>
</channel>
</rss>
