<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="bbPress/1.0.2" -->
<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">
	<channel>
		<title>Support Forum - User Favorites: kfs_group</title>
		<link><a href='http://www.kriesi.at/support/profile/kfs_group'>kfs_group</a></link>
		<description>Support Forum - User Favorites: kfs_group</description>
		<language>en-US</language>
		<pubDate>Wed, 19 Jun 2013 11:12:35 +0000</pubDate>
		<generator>http://bbpress.org/?v=1.0.2</generator>
		<textInput>
			<title><![CDATA[Search]]></title>
			<description><![CDATA[Search all topics from these forums.]]></description>
			<name>q</name>
			<link>http://www.kriesi.at/support/search.php</link>
		</textInput>
		<atom:link href="http://www.kriesi.at/support/rss/profile/" rel="self" type="application/rss+xml" />

		<item>
			<title>Dude on "kwicks accordion slider"</title>
			<link>http://www.kriesi.at/support/topic/kwicks-accordion-slider#post-78227</link>
			<pubDate>Tue, 02 Oct 2012 13:53:56 +0000</pubDate>
			<dc:creator>Dude</dc:creator>
			<guid isPermaLink="false">78227@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hey! &#60;/p&#62;
&#60;p&#62; You need to replace:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;ul class=&#38;quot;accordion-slider&#38;quot;&#38;gt;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;with:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;ul id=&#38;quot;accordion-slider&#38;quot;&#38;gt;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62; Best regards,&#60;br /&#62;
Peter
&#60;/p&#62;</description>
		</item>
		<item>
			<title>kfs_group on "kwicks accordion slider"</title>
			<link>http://www.kriesi.at/support/topic/kwicks-accordion-slider#post-78204</link>
			<pubDate>Tue, 02 Oct 2012 08:59:25 +0000</pubDate>
			<dc:creator>kfs_group</dc:creator>
			<guid isPermaLink="false">78204@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;I have updatet avia.js since the old version left all the built-in sliders with no function:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;/* this prevents dom flickering, needs to be outside of dom.ready event: */
document.documentElement.className += &#38;#39;js_active&#38;#39;;

/*end dom flickering =) */

//global path: avia_framework_globals.installedAt

jQuery.noConflict();
jQuery(document).ready(function(){

	// aktiviert den accordion-slider
	jQuery(&#38;#39;#accordion-slider&#38;#39;).kwicks({
 	max : 750,
 	spacing : 2
 	});&#60;/code&#62;&#60;/pre&#62;</description>
		</item>
		<item>
			<title>kfs_group on "kwicks accordion slider"</title>
			<link>http://www.kriesi.at/support/topic/kwicks-accordion-slider#post-78202</link>
			<pubDate>Tue, 02 Oct 2012 08:50:37 +0000</pubDate>
			<dc:creator>kfs_group</dc:creator>
			<guid isPermaLink="false">78202@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Good morning,&#60;/p&#62;
&#60;p&#62;thank you for the reply, unfortunately we do not have any progress.&#60;/p&#62;
&#60;p&#62;We have done the following modifications:&#60;/p&#62;
&#60;p&#62;1) functions.php (in the corresponding area of the code)&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;wp_register_script( &#38;#39;kwicks&#38;#39;,  AVIA_BASE_URL.&#38;#39;js/jquery.kwicks-1.5.1.pack.js&#38;#39;, &#38;#39;jquery&#38;#39;, &#38;quot;1&#38;quot;, false);&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;2) avia.js&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;/* this prevents dom flickering, needs to be outside of dom.ready event: */
document.documentElement.className += &#38;#39;js_active&#38;#39;;

	// aktiviert den accordion-slider
	jQuery(&#38;#39;#accordion-slider&#38;#39;).kwicks({
 	max : 750,
 	spacing : 2
 	});

/*end dom flickering =) */&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;3) header.php (in the corresponding area of the code)&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;wp_enqueue_script( &#38;#39;kwicks&#38;#39; );&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;4) custom.css&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;/* This css file serves as a template for styling your kwicks.  Feel free to modify, but please make note of the comments - some of them are important. */

ul#accordion-slider{
 margin: 0;
 padding: 0;
 list-style: none;
 position: relative;
}
ul#accordion-slider li{
 display: block;
 overflow: hidden;
 padding: 0;
 float: left;
 width: 230px;
 height: 300px;
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;5) We call the slider in the post using:&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;ul&#38;gt;
&#38;lt;li&#38;gt;&#38;lt;img src=&#38;quot;image1.png&#38;quot; alt=&#38;quot;Image Title&#38;quot; /&#38;gt;&#38;lt;/li&#38;gt;
&#38;lt;li&#38;gt;&#38;lt;img src=&#38;quot;image2.png&#38;quot; alt=&#38;quot;Image Title&#38;quot; /&#38;gt;&#38;lt;/li&#38;gt;
&#38;lt;li&#38;gt;&#38;lt;img src=&#38;quot;image3.png&#38;quot; alt=&#38;quot;Image Title&#38;quot; /&#38;gt;&#38;lt;/li&#38;gt;
&#38;lt;li&#38;gt;&#38;lt;img src=&#38;quot;image4.png&#38;quot; alt=&#38;quot;Image Title&#38;quot; /&#38;gt;&#38;lt;/li&#38;gt;
&#38;lt;/ul&#38;gt;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Actually we think it should be:&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;ul class=&#38;quot;accordion-slider&#38;quot;&#38;gt;

&#38;lt;li&#38;gt;&#38;lt;img src=&#38;quot;image1.png&#38;quot; alt=&#38;quot;Image Title&#38;quot; /&#38;gt;&#38;lt;/li&#38;gt;
&#38;lt;li&#38;gt;&#38;lt;img src=&#38;quot;image2.png&#38;quot; alt=&#38;quot;Image Title&#38;quot; /&#38;gt;&#38;lt;/li&#38;gt;
&#38;lt;li&#38;gt;&#38;lt;img src=&#38;quot;image3.png&#38;quot; alt=&#38;quot;Image Title&#38;quot; /&#38;gt;&#38;lt;/li&#38;gt;
&#38;lt;li&#38;gt;&#38;lt;img src=&#38;quot;image4.png&#38;quot; alt=&#38;quot;Image Title&#38;quot; /&#38;gt;&#38;lt;/li&#38;gt;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Your help is appreciated!
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Dude on "kwicks accordion slider"</title>
			<link>http://www.kriesi.at/support/topic/kwicks-accordion-slider#post-78185</link>
			<pubDate>Tue, 02 Oct 2012 05:56:15 +0000</pubDate>
			<dc:creator>Dude</dc:creator>
			<guid isPermaLink="false">78185@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Basically you can add the jquery code to js/avia.js (after the first document.ready code line):&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;jQuery(&#38;#39;#accordion-slider&#38;#39;).kwicks({
 max : 750,
 spacing : 2
 });&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Then add the css code to css/custom.css or the quicks css field. At least insert the slider code itself  at the very bottom of avia.js.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>kfs_group on "kwicks accordion slider"</title>
			<link>http://www.kriesi.at/support/topic/kwicks-accordion-slider#post-78156</link>
			<pubDate>Mon, 01 Oct 2012 22:36:28 +0000</pubDate>
			<dc:creator>kfs_group</dc:creator>
			<guid isPermaLink="false">78156@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Kriesi,&#60;/p&#62;
&#60;p&#62;I’m having trouble implementing the kwicks accordion slider following this tutorial: &#60;a href=&#34;http://www.aoclarkejr.com/tutorial-jquery-accordion-slider.html&#34; rel=&#34;nofollow&#34;&#62;http://www.aoclarkejr.com/tutorial-jquery-accordion-slider.html&#60;/a&#62;&#60;br /&#62;
The idea is to call the slider in an page in order to show a different slider per each language (qTranslate). The page will be used in the theme builder.&#60;/p&#62;
&#60;p&#62;We have tried all possible methods working with header.php and functions.php, but also putting the code in the page using the “Insert JavaScript &#38;amp; CSS ” plugin.&#60;/p&#62;
&#60;p&#62;We fear that the theme is avoiding the execution if the js.&#60;/p&#62;
&#60;p&#62;Your advice would be required.&#60;/p&#62;
&#60;p&#62;Thank you.
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
