<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="bbPress/1.1" -->
<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>THE MOLITOR FORUMS &#187; Topic: slider autoplay, slider bottom (circle) navigation always on</title>
		<link>http://www.themolitor.com/forums/topic/slider-autoplay-slider-bottom-circle-navigation-always-on</link>
		<description>THE MOLITOR FORUMS &#187; Topic: slider autoplay, slider bottom (circle) navigation always on</description>
		<language>en-US</language>
		<pubDate>Sun, 10 May 2026 05:52:51 +0000</pubDate>
		<generator>http://bbpress.org/?v=1.1</generator>
		<textInput>
			<title><![CDATA[Search]]></title>
			<description><![CDATA[Search all topics from these forums.]]></description>
			<name>q</name>
			<link>http://www.themolitor.com/forums/search.php</link>
		</textInput>
		<atom:link href="http://www.themolitor.com/forums/rss/topic/slider-autoplay-slider-bottom-circle-navigation-always-on" rel="self" type="application/rss+xml" />

		<item>
			<title>THE MOLITOR on "slider autoplay, slider bottom (circle) navigation always on"</title>
			<link>http://www.themolitor.com/forums/topic/slider-autoplay-slider-bottom-circle-navigation-always-on#post-26014</link>
			<pubDate>Thu, 02 Jan 2014 10:53:47 +0000</pubDate>
			<dc:creator>THE MOLITOR</dc:creator>
			<guid isPermaLink="false">26014@http://www.themolitor.com/forums/</guid>
			<description><p>Awesome! :-)</p>
<p>If you're enjoying the theme, PLEASE don't forget to rate it on your downloads page on ThemeForest. Positive ratings REALLY help me out.</p>
<p>Thanks!</p>
<p>Chris
</p></description>
		</item>
		<item>
			<title>ebwsad on "slider autoplay, slider bottom (circle) navigation always on"</title>
			<link>http://www.themolitor.com/forums/topic/slider-autoplay-slider-bottom-circle-navigation-always-on#post-25994</link>
			<pubDate>Tue, 31 Dec 2013 21:26:18 +0000</pubDate>
			<dc:creator>ebwsad</dc:creator>
			<guid isPermaLink="false">25994@http://www.themolitor.com/forums/</guid>
			<description><p>&#62; Did you also add the CSS in the Custom CSS box?</p>
<p>I did now (again) and it worked.</p>
<p>I can't remember if I did it few days ago.</p>
<p>Any case, thanks a lot for your help. This is looking great now.
</p></description>
		</item>
		<item>
			<title>THE MOLITOR on "slider autoplay, slider bottom (circle) navigation always on"</title>
			<link>http://www.themolitor.com/forums/topic/slider-autoplay-slider-bottom-circle-navigation-always-on#post-25978</link>
			<pubDate>Tue, 31 Dec 2013 09:09:49 +0000</pubDate>
			<dc:creator>THE MOLITOR</dc:creator>
			<guid isPermaLink="false">25978@http://www.themolitor.com/forums/</guid>
			<description><p>Hi there,</p>
<p>Did you also add the CSS in the Custom CSS box?</p>
<p>Please provide a link with those edits applied and I'll take a look.</p>
<p>Best,</p>
<p>Chris
</p></description>
		</item>
		<item>
			<title>ebwsad on "slider autoplay, slider bottom (circle) navigation always on"</title>
			<link>http://www.themolitor.com/forums/topic/slider-autoplay-slider-bottom-circle-navigation-always-on#post-25962</link>
			<pubDate>Mon, 30 Dec 2013 21:39:26 +0000</pubDate>
			<dc:creator>ebwsad</dc:creator>
			<guid isPermaLink="false">25962@http://www.themolitor.com/forums/</guid>
			<description><p>Hi Chris,</p>
<p>Thank you for fast responses.</p>
<p>As for auto rotation of slides, I believe if it was set up to some 5 seconds or similar value it would ensure that all slides are displayed... That being said, I understand what you are saying and I'm fine with not having auto rotation.</p>
<p>The other thing, (circle) navigation "buttons"...<br />
I've done the change in "wp-content/themes/misc/scripts/custom.js", doing exact changes that you proposed.<br />
It did not result in circle navigation buttons being shown, and it messed up the page so I had to revert it back.<br />
Can you test it out and give another try at resolving this?</p>
<p>Thanks
</p></description>
		</item>
		<item>
			<title>THE MOLITOR on "slider autoplay, slider bottom (circle) navigation always on"</title>
			<link>http://www.themolitor.com/forums/topic/slider-autoplay-slider-bottom-circle-navigation-always-on#post-25657</link>
			<pubDate>Thu, 19 Dec 2013 09:04:07 +0000</pubDate>
			<dc:creator>THE MOLITOR</dc:creator>
			<guid isPermaLink="false">25657@http://www.themolitor.com/forums/</guid>
			<description><p>Hi there,</p>
<p>With the way MISC is setup, the home page uses AJAX to load the next/prev slide when you click the arrows at the top of the page. Since AJAX is being used, the amount of time it takes for the next slide to appear varies.</p>
<p>For example, I click the arrow and the next slide appears in 2 seconds. I click it again and the next slide appears in 3 seconds. On a different machine/location, I click the arrow and the slide appears in 5 seconds - maybe you see where I'm going with this...</p>
<p>Since AJAX is used, there is no way to KNOW how long the slide will take to load. If an auto-rotation feature was applied, this could cause known and unknown issues to occur. Such as the slide appearing and then a second later the next slide appears, etc. etc.</p>
<p>Conclusion:</p>
<p>Auto-rotation is NOT an option/recommended because it uses AJAX.</p>
<p>----</p>
<p>Regarding the navigation dots, add the following to your Custom CSS box on the customize page...</p>
<pre><code>.headPostinate {display:block !important;}</code></pre>
<p>... and then change the following in custom.js on lines 366-375 from this...</p>
<pre><code>////////////////
//SHOW ARROWS - HEADER
////////////////
if(headPostinate.length &#62; 0){
	slideArrows.show().hover(function(){
		headPostinate.stop(true,true).fadeIn(300);
	},function(){
		headPostinate.stop(true,true).fadeOut(300);
	});
}</code></pre>
<p>...to this...</p>
<pre><code>////////////////
//SHOW ARROWS - HEADER
////////////////
if(headPostinate.length &#62; 0){
	slideArrows.show();
}</code></pre>
<p>Let me know if that helps.</p>
<p>Best,</p>
<p>Chris
</p></description>
		</item>
		<item>
			<title>ebwsad on "slider autoplay, slider bottom (circle) navigation always on"</title>
			<link>http://www.themolitor.com/forums/topic/slider-autoplay-slider-bottom-circle-navigation-always-on#post-25635</link>
			<pubDate>Wed, 18 Dec 2013 14:47:24 +0000</pubDate>
			<dc:creator>ebwsad</dc:creator>
			<guid isPermaLink="false">25635@http://www.themolitor.com/forums/</guid>
			<description><p>Hi,</p>
<p>I've managed to get most of the things I wanted working fine...<br />
Following two are still problem. I did read documentation and tried fiddling with css files.</p>
<p>I would like the slider to automatically "play" / switch images upon loading the website, with for example 4 seconds delay.</p>
<p>Also, the bottom (circle) navigation "buttons" to be visible at all times, not just when right or left navigation buttons are pressed.</p>
<p>Website is available at <a href="http://www.ebwsad.com" rel="nofollow">http://www.ebwsad.com</a></p>
<p>Thank you for your support.
</p></description>
		</item>

	</channel>
</rss>
