<?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: w3images: how to use</title>
	<atom:link href="http://www.axew3.com/b10g/w3images-for-wordpress-how-to-use-it/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.axew3.com/b10g</link>
	<description>axew3 web home</description>
	<lastBuildDate>Mon, 23 May 2011 17:17:54 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
	<item>
		<title>By: axew3</title>
		<link>http://www.axew3.com/b10g/w3images-for-wordpress-how-to-use-it/comment-page-1/#comment-1547</link>
		<dc:creator>axew3</dc:creator>
		<pubDate>Tue, 05 Oct 2010 11:15:22 +0000</pubDate>
		<guid isPermaLink="false">http://www.axew3.com/b10g/?page_id=56#comment-1547</guid>
		<description>&lt;strong&gt;&lt;em&gt;w3images - Shadowbox slideshow mode&lt;/em&gt;&lt;/strong&gt;
This is the Shadowbox Javascript code that need to be added in the header section between &lt;em&gt;&lt;head&gt; ... ... ... &lt;/head&gt;&lt;/em&gt; tags of your template file (&lt;em&gt;header.php&lt;/em&gt; file location: &lt;em&gt;wp-content/themes/theme_name/&lt;strong&gt;header.php&lt;/strong&gt;&lt;/em&gt;) to correctly use the w3images plugin in Shadowbox slideshow mode:
&lt;code&gt;&lt;link rel=&quot;stylesheet&quot; href=&quot;&lt;?php echo get_bloginfo(&#039;url&#039;); ?&gt;/wp-content/plugins/w3images/includes/ajax/shadowbox.css&quot; type=&quot;text/css&quot; media=&quot;screen&quot; /&gt;
&lt;script type=&quot;text/javascript&quot; src=&quot;&lt;?php echo get_bloginfo(&#039;url&#039;); ?&gt;/wp-content/plugins/w3images/includes/ajax/jquery.js&quot;&gt;&lt;/script&gt;
&lt;script type=&quot;text/javascript&quot; src=&quot;&lt;?php echo get_bloginfo(&#039;url&#039;); ?&gt;/wp-content/plugins/w3images/includes/ajax/shadowbox.js&quot;&gt;&lt;/script&gt;
&lt;script type=&quot;text/javascript&quot;&gt;
Shadowbox.init({
    handleOversize: &quot;drag&quot;,
    modal: false
});
&lt;/script&gt;&lt;/code&gt;

It is possible to add options and customize Shadowbox effects and his general look. To do this it is necessary to modify the above default declaration:
&lt;code&gt;&lt;script type=&quot;text/javascript&quot;&gt;
Shadowbox.init({
    handleOversize: &quot;drag&quot;,
    modal: false
});
&lt;/script&gt;&lt;/code&gt;
Below in the simple example, the &lt;em&gt;Shadowbox.init({&lt;/em&gt; declaration has been improved by adding the &lt;em&gt;continuous&lt;/em&gt; option and setting it to true.

Shadowbox galleries will not let a user go before the first image or after the last by default. Enabling the &lt;em&gt;continuous&lt;/em&gt; option, will let the user go directly to the first image in a gallery from the last one by selecting &quot;Next&quot;. Default to false.

&lt;code&gt;&lt;script type=&quot;text/javascript&quot;&gt;
Shadowbox.init({
    handleOversize: &quot;drag&quot;,
    continuous: true,
    modal: false
});
&lt;/script&gt;&lt;/code&gt;

&lt;strong&gt;Take a look to the &lt;a href=&quot;http://www.shadowbox-js.com/options.html&quot;&gt;Shadowbox options page&lt;/a&gt; to know all available options you can apply&lt;/strong&gt;.</description>
		<content:encoded><![CDATA[<p><strong><em>w3images &#8211; Shadowbox slideshow mode</em></strong><br />
This is the Shadowbox Javascript code that need to be added in the header section between <em>&lt;head&gt; &#8230; &#8230; &#8230; &lt;/head&gt;</em> tags of your template file (<em>header.php</em> file location: <em>wp-content/themes/theme_name/<strong>header.php</strong></em>) to correctly use the w3images plugin in Shadowbox slideshow mode:<br />
<code>&lt;link rel="stylesheet" href="&lt;?php echo get_bloginfo('url'); ?&gt;/wp-content/plugins/w3images/includes/ajax/shadowbox.css" type="text/css" media="screen" /&gt;<br />
&lt;script type="text/javascript" src="&lt;?php echo get_bloginfo('url'); ?&gt;/wp-content/plugins/w3images/includes/ajax/jquery.js">&lt;/script&gt;<br />
&lt;script type="text/javascript" src="&lt;?php echo get_bloginfo('url'); ?&gt;/wp-content/plugins/w3images/includes/ajax/shadowbox.js"&gt;&lt;/script><br />
&lt;script type="text/javascript"&gt;<br />
Shadowbox.init({<br />
    handleOversize: "drag",<br />
    modal: false<br />
});<br />
&lt;/script&gt;</code></p>
<p>It is possible to add options and customize Shadowbox effects and his general look. To do this it is necessary to modify the above default declaration:<br />
<code>&lt;script type="text/javascript"&gt;<br />
Shadowbox.init({<br />
    handleOversize: "drag",<br />
    modal: false<br />
});<br />
&lt;/script&gt;</code><br />
Below in the simple example, the <em>Shadowbox.init({</em> declaration has been improved by adding the <em>continuous</em> option and setting it to true.</p>
<p>Shadowbox galleries will not let a user go before the first image or after the last by default. Enabling the <em>continuous</em> option, will let the user go directly to the first image in a gallery from the last one by selecting &#8220;Next&#8221;. Default to false.</p>
<p><code>&lt;script type="text/javascript"&gt;<br />
Shadowbox.init({<br />
    handleOversize: "drag",<br />
    continuous: true,<br />
    modal: false<br />
});<br />
&lt;/script&gt;</code></p>
<p><strong>Take a look to the <a href="http://www.shadowbox-js.com/options.html">Shadowbox options page</a> to know all available options you can apply</strong>.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

