<?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: A Beautiful Apple-style Slideshow Gallery With CSS &amp; jQuery</title>
	<atom:link href="http://tutorialzine.com/2009/11/beautiful-apple-gallery-slideshow/feed/" rel="self" type="application/rss+xml" />
	<link>http://tutorialzine.com/2009/11/beautiful-apple-gallery-slideshow/</link>
	<description>PHP MySQL jQuery CSS Tutorials, Resources and Freebies</description>
	<lastBuildDate>Fri, 12 Mar 2010 21:51:04 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Veronica Ward</title>
		<link>http://tutorialzine.com/2009/11/beautiful-apple-gallery-slideshow/#comment-3590</link>
		<dc:creator>Veronica Ward</dc:creator>
		<pubDate>Thu, 11 Mar 2010 19:06:05 +0000</pubDate>
		<guid isPermaLink="false">http://tutorialzine.com/?p=483#comment-3590</guid>
		<description>Does anyone know how to add left and right arrows to the sides of the slides in order to create a previous and next slide?  I&#039;ve tried to add a variable to the script.js file and the css and nothing works.  

Has anyone tried to add previous and next buttons to this wonderful, wonderful slider?</description>
		<content:encoded><![CDATA[<p>Does anyone know how to add left and right arrows to the sides of the slides in order to create a previous and next slide?  I&#8217;ve tried to add a variable to the script.js file and the css and nothing works.  </p>
<p>Has anyone tried to add previous and next buttons to this wonderful, wonderful slider?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Web Design</title>
		<link>http://tutorialzine.com/2009/11/beautiful-apple-gallery-slideshow/#comment-3157</link>
		<dc:creator>Web Design</dc:creator>
		<pubDate>Sun, 28 Feb 2010 02:45:20 +0000</pubDate>
		<guid isPermaLink="false">http://tutorialzine.com/?p=483#comment-3157</guid>
		<description>Thanks for this great slider, but any plans on making it work on wordpres?</description>
		<content:encoded><![CDATA[<p>Thanks for this great slider, but any plans on making it work on wordpres?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Stefanie</title>
		<link>http://tutorialzine.com/2009/11/beautiful-apple-gallery-slideshow/#comment-3133</link>
		<dc:creator>Stefanie</dc:creator>
		<pubDate>Fri, 26 Feb 2010 20:50:57 +0000</pubDate>
		<guid isPermaLink="false">http://tutorialzine.com/?p=483#comment-3133</guid>
		<description>I can only fit 9 thumbs on, what if you have more pics to put in this slideshow, how do you make the change?

Thanks</description>
		<content:encoded><![CDATA[<p>I can only fit 9 thumbs on, what if you have more pics to put in this slideshow, how do you make the change?</p>
<p>Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ahstrom</title>
		<link>http://tutorialzine.com/2009/11/beautiful-apple-gallery-slideshow/#comment-3100</link>
		<dc:creator>Ahstrom</dc:creator>
		<pubDate>Thu, 25 Feb 2010 12:08:50 +0000</pubDate>
		<guid isPermaLink="false">http://tutorialzine.com/?p=483#comment-3100</guid>
		<description>Quick edit to previous post. You do not need the inline-table part. It just made it ok for Safari and Firefox but destroyed it for IE.

You only need the vertical-align: top; Leave the display at inline-block.

li{
/* Every thumbnail is a li element */
width:60px;
display: inline-block;
list-style:none;
height:45px;
vertical-align: top;
overflow:hidden;
}</description>
		<content:encoded><![CDATA[<p>Quick edit to previous post. You do not need the inline-table part. It just made it ok for Safari and Firefox but destroyed it for IE.</p>
<p>You only need the vertical-align: top; Leave the display at inline-block.</p>
<p>li{<br />
/* Every thumbnail is a li element */<br />
width:60px;<br />
display: inline-block;<br />
list-style:none;<br />
height:45px;<br />
vertical-align: top;<br />
overflow:hidden;<br />
}</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ahstrom</title>
		<link>http://tutorialzine.com/2009/11/beautiful-apple-gallery-slideshow/#comment-3076</link>
		<dc:creator>Ahstrom</dc:creator>
		<pubDate>Wed, 24 Feb 2010 18:35:45 +0000</pubDate>
		<guid isPermaLink="false">http://tutorialzine.com/?p=483#comment-3076</guid>
		<description>Hi! I had a problem with this demo running Safari 4.0.4. It had to do with the icons beneath the slides. They first one was ok (the mac book) but the other three did show up just a little below making the little arrow apear a couple of pixels under. I fixed it using this css on the li class.

li{
	/* Every thumbnail is a li element */
	width:60px;
	display: inline-table;
	list-style:none;
	height:45px;
	vertical-align: top;
	overflow:hidden;
}

Where you have a display of inline-table; instead of inline-block. That rendered it ok in Safari but made it bad in Firefox so then you have to att the vertical-align:t top; - part. Hopefully someone finds this useful. Good job otherwise!</description>
		<content:encoded><![CDATA[<p>Hi! I had a problem with this demo running Safari 4.0.4. It had to do with the icons beneath the slides. They first one was ok (the mac book) but the other three did show up just a little below making the little arrow apear a couple of pixels under. I fixed it using this css on the li class.</p>
<p>li{<br />
	/* Every thumbnail is a li element */<br />
	width:60px;<br />
	display: inline-table;<br />
	list-style:none;<br />
	height:45px;<br />
	vertical-align: top;<br />
	overflow:hidden;<br />
}</p>
<p>Where you have a display of inline-table; instead of inline-block. That rendered it ok in Safari but made it bad in Firefox so then you have to att the vertical-align:t top; &#8211; part. Hopefully someone finds this useful. Good job otherwise!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Glenn Van Bogaert</title>
		<link>http://tutorialzine.com/2009/11/beautiful-apple-gallery-slideshow/#comment-2937</link>
		<dc:creator>Glenn Van Bogaert</dc:creator>
		<pubDate>Fri, 19 Feb 2010 17:14:31 +0000</pubDate>
		<guid isPermaLink="false">http://tutorialzine.com/?p=483#comment-2937</guid>
		<description>Pretty nice effect and tutorial. This is a great function for the portfolio of a webdesigner. I&#039;m concidering to use it for my portfolio. Thanks man!</description>
		<content:encoded><![CDATA[<p>Pretty nice effect and tutorial. This is a great function for the portfolio of a webdesigner. I&#8217;m concidering to use it for my portfolio. Thanks man!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: sydney web design</title>
		<link>http://tutorialzine.com/2009/11/beautiful-apple-gallery-slideshow/#comment-2920</link>
		<dc:creator>sydney web design</dc:creator>
		<pubDate>Thu, 18 Feb 2010 23:32:38 +0000</pubDate>
		<guid isPermaLink="false">http://tutorialzine.com/?p=483#comment-2920</guid>
		<description>looks real nice - will use it when i get a chance :)</description>
		<content:encoded><![CDATA[<p>looks real nice &#8211; will use it when i get a chance <img src='http://tutorialzine.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: heiko</title>
		<link>http://tutorialzine.com/2009/11/beautiful-apple-gallery-slideshow/#comment-2911</link>
		<dc:creator>heiko</dc:creator>
		<pubDate>Thu, 18 Feb 2010 16:53:11 +0000</pubDate>
		<guid isPermaLink="false">http://tutorialzine.com/?p=483#comment-2911</guid>
		<description>thanks a lot. Helped me tremendous!!</description>
		<content:encoded><![CDATA[<p>thanks a lot. Helped me tremendous!!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: chris</title>
		<link>http://tutorialzine.com/2009/11/beautiful-apple-gallery-slideshow/#comment-2841</link>
		<dc:creator>chris</dc:creator>
		<pubDate>Tue, 16 Feb 2010 19:44:15 +0000</pubDate>
		<guid isPermaLink="false">http://tutorialzine.com/?p=483#comment-2841</guid>
		<description>Hi!

Is there any way to get rid of the thumbnails without screwing up the slideshow? i´ve tried but then the slideshow stops....... thanx 4 a gr8 tutorial! / chris</description>
		<content:encoded><![CDATA[<p>Hi!</p>
<p>Is there any way to get rid of the thumbnails without screwing up the slideshow? i´ve tried but then the slideshow stops&#8230;&#8230;. thanx 4 a gr8 tutorial! / chris</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Annie</title>
		<link>http://tutorialzine.com/2009/11/beautiful-apple-gallery-slideshow/#comment-2805</link>
		<dc:creator>Annie</dc:creator>
		<pubDate>Sun, 14 Feb 2010 04:45:42 +0000</pubDate>
		<guid isPermaLink="false">http://tutorialzine.com/?p=483#comment-2805</guid>
		<description>Great tutorial thank you!</description>
		<content:encoded><![CDATA[<p>Great tutorial thank you!</p>
]]></content:encoded>
	</item>
</channel>
</rss>
