<?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: iPhone/iPad Gestures</title>
		<link>http://www.themolitor.com/forums/topic/iphoneipad-gestures</link>
		<description>THE MOLITOR FORUMS &#187; Topic: iPhone/iPad Gestures</description>
		<language>en-US</language>
		<pubDate>Tue, 28 Apr 2026 12:50:55 +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/iphoneipad-gestures" rel="self" type="application/rss+xml" />

		<item>
			<title>THE MOLITOR on "iPhone/iPad Gestures"</title>
			<link>http://www.themolitor.com/forums/topic/iphoneipad-gestures/page/2#post-23717</link>
			<pubDate>Mon, 07 Oct 2013 13:13:53 +0000</pubDate>
			<dc:creator>THE MOLITOR</dc:creator>
			<guid isPermaLink="false">23717@http://www.themolitor.com/forums/</guid>
			<description><p>Hi there,</p>
<p>Please understand that this theme is not currently a responsive theme. Behavior on a mobile device is currently setup to behave as it does on a desktop, which doesn't support manual scroll. This is demonstrated clearly on the demo site.</p>
<p>Anything is possible, but considering my last custom script above is a (free) customization of a (free) customization, additional edits will require a customization request here: <a href="http://themolitor.com/custom" rel="nofollow">http://themolitor.com/custom</a></p>
<p>Just to reiterate, with my last edit above, these are not bugs or issues with the theme. They are how iOS devices chose to handle div scrolling. That may change with an iOS Safari update, but any additional customization here exceed my bandwidth for these support forums.</p>
<p>I hope you understand.</p>
<p>Best,</p>
<p>Chris
</p></description>
		</item>
		<item>
			<title>rmorson on "iPhone/iPad Gestures"</title>
			<link>http://www.themolitor.com/forums/topic/iphoneipad-gestures/page/2#post-23712</link>
			<pubDate>Mon, 07 Oct 2013 11:28:06 +0000</pubDate>
			<dc:creator>rmorson</dc:creator>
			<guid isPermaLink="false">23712@http://www.themolitor.com/forums/</guid>
			<description><p>Chris,</p>
<p>SO you are telling us that this is as good as it gets with regard to the scrolling? It's not user friendly still...just soooooo slow. So there is no way to speed up the timeline scrolling is what you are saying?</p>
<p>RM
</p></description>
		</item>
		<item>
			<title>THE MOLITOR on "iPhone/iPad Gestures"</title>
			<link>http://www.themolitor.com/forums/topic/iphoneipad-gestures#post-23702</link>
			<pubDate>Mon, 07 Oct 2013 09:29:44 +0000</pubDate>
			<dc:creator>THE MOLITOR</dc:creator>
			<guid isPermaLink="false">23702@http://www.themolitor.com/forums/</guid>
			<description><p>Hi there,</p>
<p>This is how iOS treats the scrolling of div elements. The timeline div is nested inside some absolutely positioned divs (required for the timeline bar system to work properly). As a result, the timeline div is being scrolled, not the body/window. Not sure why iOS doesn't apply the same speed/flow to scrolling divs as it does the body/window.</p>
<p>Hope that explains.</p>
<p>Best,</p>
<p>Chris
</p></description>
		</item>
		<item>
			<title>rmorson on "iPhone/iPad Gestures"</title>
			<link>http://www.themolitor.com/forums/topic/iphoneipad-gestures#post-23681</link>
			<pubDate>Fri, 04 Oct 2013 18:35:22 +0000</pubDate>
			<dc:creator>rmorson</dc:creator>
			<guid isPermaLink="false">23681@http://www.themolitor.com/forums/</guid>
			<description><p>Hi Chris,</p>
<p>That is better (it is much smoother and more responsive), BUT is it possible at all that when you swipe, it still has a speed to it? Now the gesture works smoother, but is terribly slow, even when you "flick" the finger motion across. </p>
<p>Let me know,</p>
<p>RM
</p></description>
		</item>
		<item>
			<title>THE MOLITOR on "iPhone/iPad Gestures"</title>
			<link>http://www.themolitor.com/forums/topic/iphoneipad-gestures#post-23679</link>
			<pubDate>Fri, 04 Oct 2013 14:58:29 +0000</pubDate>
			<dc:creator>THE MOLITOR</dc:creator>
			<guid isPermaLink="false">23679@http://www.themolitor.com/forums/</guid>
			<description><p>Hi there,</p>
<p>Okay, to deactivate the timeline bar and allow scrolling on smaller screens, do the following...</p>
<p>1. Open style.css and ADD the following at the very bottom...</p>
<pre><code>/*-------RESPONSIVE STUFF-----------*/
body.respond #timelineWrapper {overflow: auto;}
body.respond .sidebar,
body.respond #controlsWrapper {display: none !important;}</code></pre>
<p>2. Open custom.js and REMOVE the following on lines 63-72...</p>
<pre><code>////////////////
//TOUCH GESTURES
////////////////
wrapper.touchwipe({
	wipeLeft: function() {jQuery(&#34;#rightSmall&#34;).click();},
	wipeRight: function() {jQuery(&#039;#leftSmall&#039;).click();},
	min_move_x: 20,
	min_move_y: 20,
	preventDefaultEvents: false
});</code></pre>
<p>...then REPLACE the following at the bottom on lines 520-525 from this...</p>
<pre><code>////////////////
//WINDOW RESIZE ACTION
////////////////
jQuery(window).resize(function(){
	jQuery(&#039;.referenceDivider&#039;).first().click();
});</code></pre>
<p>...to this...</p>
<pre><code>//////////////////
//RESPONSIVE FUNCTION
//////////////////
function responsive(){
	if(jQuery(window).width() &#60; 1025){
		bodyEl.addClass(&#039;respond&#039;);
	} else {
		bodyEl.removeClass(&#039;respond&#039;);
	}
}
//RUN FUNCTION
responsive();

////////////////
//WINDOW RESIZE ACTION
////////////////
jQuery(window).resize(function(){
	responsive();
	jQuery(&#039;.referenceDivider&#039;).first().click();
	wrapper.scrollLeft(0);
});</code></pre>
<p>Let me know if that works better.</p>
<p>Best,</p>
<p>Chris
</p></description>
		</item>
		<item>
			<title>THE MOLITOR on "iPhone/iPad Gestures"</title>
			<link>http://www.themolitor.com/forums/topic/iphoneipad-gestures#post-23676</link>
			<pubDate>Fri, 04 Oct 2013 14:23:59 +0000</pubDate>
			<dc:creator>THE MOLITOR</dc:creator>
			<guid isPermaLink="false">23676@http://www.themolitor.com/forums/</guid>
			<description><p>Noted. Let me play around with this and see if I can come up with something.</p>
<p>Best,</p>
<p>Chris
</p></description>
		</item>
		<item>
			<title>robertfmorrow on "iPhone/iPad Gestures"</title>
			<link>http://www.themolitor.com/forums/topic/iphoneipad-gestures#post-23674</link>
			<pubDate>Fri, 04 Oct 2013 13:04:21 +0000</pubDate>
			<dc:creator>robertfmorrow</dc:creator>
			<guid isPermaLink="false">23674@http://www.themolitor.com/forums/</guid>
			<description><p>Chris, let me know if this is possible. On a mobile device the swipe without the timeline would be in play. If the user then went to the site from a desktop or laptop, the swipe and timeline would be in play as it's currently coded. Just thinking out loud here.
</p></description>
		</item>
		<item>
			<title>rmorson on "iPhone/iPad Gestures"</title>
			<link>http://www.themolitor.com/forums/topic/iphoneipad-gestures#post-23673</link>
			<pubDate>Fri, 04 Oct 2013 13:01:57 +0000</pubDate>
			<dc:creator>rmorson</dc:creator>
			<guid isPermaLink="false">23673@http://www.themolitor.com/forums/</guid>
			<description><p>Chris,</p>
<p>Can the timeline bar only be disabled on mobile devices? Not on large screen?</p>
<p>If so that's the way to go I think.</p>
<p>RM
</p></description>
		</item>
		<item>
			<title>rmorson on "iPhone/iPad Gestures"</title>
			<link>http://www.themolitor.com/forums/topic/iphoneipad-gestures#post-23672</link>
			<pubDate>Fri, 04 Oct 2013 12:58:02 +0000</pubDate>
			<dc:creator>rmorson</dc:creator>
			<guid isPermaLink="false">23672@http://www.themolitor.com/forums/</guid>
			<description><p>Hi Chris,</p>
<p>Ok so from a user perspective, on mobile devices, no one would know (as I did NOT until you said it) that the swipe activates the clicking. It is not intuitive. </p>
<p>My client DID test you demo site out - cause her concern is on mobile devices - she wanted to see if the demo was acting the same way, and it was. I just wanted you to understand it wasn't just her site.</p>
<p>I expect it to all work lovely on a big screen, cause we have mouses that can click along the timeline, and its obvious where the navigation for the scroll is. However, on mobile devices, we use the differently, and instinctively, a swipe for the user means it should scroll. If it didn't mean that intuitively, we wouldn't be having this discussion - my client is assuming (and rightly so) that a swipe means it will scroll through as she swipes).</p>
<p>So, effectively, due to its small (teeny tiny, in fact) size the timeline bar on mobile devices is pretty much useless, cause you can't manipulate it with your finger, it would follow that disabling it to get the scrolling function with the swipe would be the exact answer. YES. It, as robertfmorrrow said would make for the best user experience on mobile devices.</p>
<p>That would be fab.</p>
<p>RM
</p></description>
		</item>
		<item>
			<title>robertfmorrow on "iPhone/iPad Gestures"</title>
			<link>http://www.themolitor.com/forums/topic/iphoneipad-gestures#post-23671</link>
			<pubDate>Fri, 04 Oct 2013 12:18:10 +0000</pubDate>
			<dc:creator>robertfmorrow</dc:creator>
			<guid isPermaLink="false">23671@http://www.themolitor.com/forums/</guid>
			<description><p>Chris, thank you for the quick reply to rmorson's posts. My vote, would be to disable the bottom timeline. In all honestly, the fluid swiping movement coupled with the clearly visible timeline markers would provide the best UI experience for the end user.
</p></description>
		</item>
		<item>
			<title>THE MOLITOR on "iPhone/iPad Gestures"</title>
			<link>http://www.themolitor.com/forums/topic/iphoneipad-gestures#post-23670</link>
			<pubDate>Fri, 04 Oct 2013 12:09:16 +0000</pubDate>
			<dc:creator>THE MOLITOR</dc:creator>
			<guid isPermaLink="false">23670@http://www.themolitor.com/forums/</guid>
			<description><p>...in order for swiping to work as a scroll effect on a mobile device, the timeline bar at the bottom would have to be disabled. Would that be a better solution?</p>
<p>Let me know,</p>
<p>Chris
</p></description>
		</item>
		<item>
			<title>THE MOLITOR on "iPhone/iPad Gestures"</title>
			<link>http://www.themolitor.com/forums/topic/iphoneipad-gestures#post-23669</link>
			<pubDate>Fri, 04 Oct 2013 12:05:01 +0000</pubDate>
			<dc:creator>THE MOLITOR</dc:creator>
			<guid isPermaLink="false">23669@http://www.themolitor.com/forums/</guid>
			<description><p>Hi there,</p>
<p>To clarify, swiping left or right on a touch device will activate the left CLICK and right CLICK functions. It is not a scrolling feature. In other words, the swiping is treated as a CLICK, not a scroll. </p>
<p>The reason swiping isn't treated as a scroll is because the timeline feature is a very complicated setup so that the timeline bar at the bottom matches the position of the main timeline with images. </p>
<p>If swiping were treated as a scrolling effect, the timeline bar at the bottom wouldn't be able to "talk" with the main timeline because it's all connected via a click function.</p>
<p>Please understand, I have a demo site provided so that users can test the theme out and make sure it works for their needs or meet the demands of their clients. I sincerely hope you don't rate my theme poorly for a feature that can be easily tested/viewed on my demo site (especially since this isn't a bug or problem with my code). </p>
<p>I try really hard to make sure there are no surprises with my themes as I do all I can to let you know how it works via my theme demo and walk-through videos.</p>
<p>I hope that makes sense.</p>
<p>Chris
</p></description>
		</item>
		<item>
			<title>rmorson on "iPhone/iPad Gestures"</title>
			<link>http://www.themolitor.com/forums/topic/iphoneipad-gestures#post-23662</link>
			<pubDate>Fri, 04 Oct 2013 08:31:55 +0000</pubDate>
			<dc:creator>rmorson</dc:creator>
			<guid isPermaLink="false">23662@http://www.themolitor.com/forums/</guid>
			<description><p>Hi Chris,</p>
<p>Also just today she took a video at the apple store, showing the Curator Demo (not her site) swiping motion and it also is having swiping motion issues as you can see in this video.</p>
<p><a href="http://youtu.be/rNQ7GBZO8oU" rel="nofollow">http://youtu.be/rNQ7GBZO8oU</a></p>
<p>So just to show is isn't the number of images on her site or anything. We also turned off the lightboxes on the images to see if that helped - thinking it might just be dealing with the hi res and slowing the processing down of the swipe.</p>
<p>But that hasn't helped either.</p>
<p>Please let me know if you have a solution.</p>
<p>It's definitely not swiping right. Even the techs at Apple say the same thing. It should be MUCH smoother and less jumpy for sure.</p>
<p>Thanks<br />
RM
</p></description>
		</item>
		<item>
			<title>rmorson on "iPhone/iPad Gestures"</title>
			<link>http://www.themolitor.com/forums/topic/iphoneipad-gestures#post-23660</link>
			<pubDate>Fri, 04 Oct 2013 06:25:46 +0000</pubDate>
			<dc:creator>rmorson</dc:creator>
			<guid isPermaLink="false">23660@http://www.themolitor.com/forums/</guid>
			<description><p>Chris, my client has had the theme tested on ALL current devices - literally standing in the store loading the site and trying to swipe. Yesterday she shot a video (view here: <a href="http://youtu.be/m3pUITOVXkI" rel="nofollow">http://youtu.be/m3pUITOVXkI</a> ) in the Apple Store, and even their people agreed it is not scrolling correctly.</p>
<p>They told Her to tell the theme developer that he needs to fix his SD and/or html5 functionality on the swipe. </p>
<p>We are at the point of going with a different theme and will rate this one poorly. It doesn't scroll smoothly, as you can see, and while it does jump to the beginning on my iPhone, it is sporadic and unpredictable.</p>
<p>Can you please look into this, but quickly, as we have to get our site completed relatively soon.</p>
<p>Thanks<br />
RM
</p></description>
		</item>
		<item>
			<title>rmorson on "iPhone/iPad Gestures"</title>
			<link>http://www.themolitor.com/forums/topic/iphoneipad-gestures#post-23470</link>
			<pubDate>Tue, 24 Sep 2013 10:13:18 +0000</pubDate>
			<dc:creator>rmorson</dc:creator>
			<guid isPermaLink="false">23470@http://www.themolitor.com/forums/</guid>
			<description><p>Hmmmm. iPhone 4, using  6.1.3 (10B329) software. 16GB with only 8.6 GB used. Not sure if that's enough info.</p>
<p>Let me know.</p>
<p>RM
</p></description>
		</item>
		<item>
			<title>THE MOLITOR on "iPhone/iPad Gestures"</title>
			<link>http://www.themolitor.com/forums/topic/iphoneipad-gestures#post-23465</link>
			<pubDate>Tue, 24 Sep 2013 09:50:01 +0000</pubDate>
			<dc:creator>THE MOLITOR</dc:creator>
			<guid isPermaLink="false">23465@http://www.themolitor.com/forums/</guid>
			<description><p>Hi there,</p>
<p>I loaded your site on an iPhone 5 running iOS7 and didn't experience any jumping back to the beginning. It's working like it should for me.</p>
<p>Can you provide details about the device you're using (hardware/software). I'll see if I can find one to check it out.</p>
<p>Best,</p>
<p>Chris
</p></description>
		</item>
		<item>
			<title>rmorson on "iPhone/iPad Gestures"</title>
			<link>http://www.themolitor.com/forums/topic/iphoneipad-gestures#post-23456</link>
			<pubDate>Tue, 24 Sep 2013 07:36:53 +0000</pubDate>
			<dc:creator>rmorson</dc:creator>
			<guid isPermaLink="false">23456@http://www.themolitor.com/forums/</guid>
			<description><p>Chris,</p>
<p>I have tried this and it doesn't seem to really do anything. The scrolling on the iPhone for example jumps back to the beginning alot. Please view <a href="http://staging.parowpictures.com" rel="nofollow">http://staging.parowpictures.com</a> and just see what I mean. Its like every time I put my finger on the screen to use the gesture it jumps back to the beginning. And I can not opt to use the scroll bar at the bottom, because well its soooooo tiny , and the safari navigation overlays also impeded using it. I have tried to scroll through this timeline about ten times now, and I either get a few pictures in and it jumps back to the beginning, or it flies through the pictures then jumps back to the beginning. Super frustrating. While I KNOW the iPhone is not the best place to view such a site, I am attempting to make sure it functions on the smallest device, then I know it will be ok for the larger ones. </p>
<p>I don't have an iPad to test it on, but my client will view it on her iPhone and test it there as well. </p>
<p>Any possible things that can be edited to gain better control of the scroll bar using gestures on devices?</p>
<p>Thanks<br />
RM
</p></description>
		</item>
		<item>
			<title>THE MOLITOR on "iPhone/iPad Gestures"</title>
			<link>http://www.themolitor.com/forums/topic/iphoneipad-gestures#post-23436</link>
			<pubDate>Mon, 23 Sep 2013 11:43:51 +0000</pubDate>
			<dc:creator>THE MOLITOR</dc:creator>
			<guid isPermaLink="false">23436@http://www.themolitor.com/forums/</guid>
			<description><p>Hi there,</p>
<p>Swiping left or right on a touch device will activate the left click and right click functions. The speed of these click functions is controlled from the custom.js file. The left click function speed is on line 233 and the right click function speed is on line 266. Both look like this...</p>
<pre><code>var animateSpeed = 1000,</code></pre>
<p>Change that 1000 to a lower number like 700 to make the animation occur faster.</p>
<p>Regarding the scrollbar, unfortunately there is a lot going on there and increasing the size and making adjustments to the scrollbar isn't a quick and easy edit. For requests like that, please submit a customization request: <a href="http://themolitor.com/custom" rel="nofollow">http://themolitor.com/custom</a></p>
<p>Let me know if that helps.</p>
<p>Best,</p>
<p>Chris
</p></description>
		</item>
		<item>
			<title>robertfmorrow on "iPhone/iPad Gestures"</title>
			<link>http://www.themolitor.com/forums/topic/iphoneipad-gestures#post-23433</link>
			<pubDate>Mon, 23 Sep 2013 10:26:33 +0000</pubDate>
			<dc:creator>robertfmorrow</dc:creator>
			<guid isPermaLink="false">23433@http://www.themolitor.com/forums/</guid>
			<description><p>Chris,</p>
<p>Thank you for all the updates. I however agree with rmorson. While the scrolling feature is nice, it really lacks the fluidity most users expect.
</p></description>
		</item>
		<item>
			<title>rmorson on "iPhone/iPad Gestures"</title>
			<link>http://www.themolitor.com/forums/topic/iphoneipad-gestures#post-23431</link>
			<pubDate>Mon, 23 Sep 2013 10:20:14 +0000</pubDate>
			<dc:creator>rmorson</dc:creator>
			<guid isPermaLink="false">23431@http://www.themolitor.com/forums/</guid>
			<description><p>Hi Chris,</p>
<p>Thanks for the update. While it works as per my client checking on her mobile devices, my client did ask if the speed at which the timeline moves when a user swipes can be controlled? It seems quite slow. and people want things quickly. She still struggled with the speed.</p>
<p>Also, can we still get the code necessary to increase the overall scrollbar size (I'd like to increase it by at least 1.5x the size it is now - the entire thing, including arrows etc.)</p>
<p>Please advise.</p>
<p>Thanks<br />
RM
</p></description>
		</item>
		<item>
			<title>THE MOLITOR on "iPhone/iPad Gestures"</title>
			<link>http://www.themolitor.com/forums/topic/iphoneipad-gestures#post-23396</link>
			<pubDate>Sat, 21 Sep 2013 14:09:53 +0000</pubDate>
			<dc:creator>THE MOLITOR</dc:creator>
			<guid isPermaLink="false">23396@http://www.themolitor.com/forums/</guid>
			<description><p>For more info, I posted this thread the other day: <a href="http://www.themolitor.com/forums/topic/update-v140-for-the-curator" rel="nofollow">http://www.themolitor.com/forums/topic/update-v140-for-the-curator</a></p>
<p>Best,</p>
<p>Chris
</p></description>
		</item>
		<item>
			<title>THE MOLITOR on "iPhone/iPad Gestures"</title>
			<link>http://www.themolitor.com/forums/topic/iphoneipad-gestures#post-23395</link>
			<pubDate>Sat, 21 Sep 2013 14:09:01 +0000</pubDate>
			<dc:creator>THE MOLITOR</dc:creator>
			<guid isPermaLink="false">23395@http://www.themolitor.com/forums/</guid>
			<description><p>Hi there,</p>
<p>The update is available now. You should have gotten an email from ThemeForest about the update on Thursday (unless you have that feature disabled).</p>
<p>I was out of the office until now, so I wasn't able to jump in here and update the forum.</p>
<p>Thanks!</p>
<p>Chris
</p></description>
		</item>
		<item>
			<title>mr_pro on "iPhone/iPad Gestures"</title>
			<link>http://www.themolitor.com/forums/topic/iphoneipad-gestures#post-23387</link>
			<pubDate>Sat, 21 Sep 2013 03:59:26 +0000</pubDate>
			<dc:creator>mr_pro</dc:creator>
			<guid isPermaLink="false">23387@http://www.themolitor.com/forums/</guid>
			<description><p>Any estimate for this? Are we talking days, weeks or months?</p>
<p>It's now become vital at this end.</p>
<p>Thanks
</p></description>
		</item>
		<item>
			<title>THE MOLITOR on "iPhone/iPad Gestures"</title>
			<link>http://www.themolitor.com/forums/topic/iphoneipad-gestures#post-23332</link>
			<pubDate>Wed, 18 Sep 2013 14:04:15 +0000</pubDate>
			<dc:creator>THE MOLITOR</dc:creator>
			<guid isPermaLink="false">23332@http://www.themolitor.com/forums/</guid>
			<description><p>Working on an update as we speak. Going to be adding a lot of additional features too :-)</p>
<p>Preview of updates:</p>
<p>added option to turn title year on/off<br />
added option to link to post page instead of image<br />
added timeline order option<br />
More to come...</p>
<p>I'll post here when the update is available :-)</p>
<p>Best,</p>
<p>Chris
</p></description>
		</item>
		<item>
			<title>THE MOLITOR on "iPhone/iPad Gestures"</title>
			<link>http://www.themolitor.com/forums/topic/iphoneipad-gestures#post-23329</link>
			<pubDate>Wed, 18 Sep 2013 10:35:22 +0000</pubDate>
			<dc:creator>THE MOLITOR</dc:creator>
			<guid isPermaLink="false">23329@http://www.themolitor.com/forums/</guid>
			<description><p>I appreciate the feedback. I'll see if I can put together an update with gesture control this week.</p>
<p>Best,</p>
<p>Chris
</p></description>
		</item>
		<item>
			<title>rmorson on "iPhone/iPad Gestures"</title>
			<link>http://www.themolitor.com/forums/topic/iphoneipad-gestures#post-23319</link>
			<pubDate>Wed, 18 Sep 2013 07:53:23 +0000</pubDate>
			<dc:creator>rmorson</dc:creator>
			<guid isPermaLink="false">23319@http://www.themolitor.com/forums/</guid>
			<description><p>Can we possibly get a fix temporarily for the inability to navigate the horizontal scrolling feature. On portable devices it is so tiny that one can not touch the scroll bar and  move it in order to view the images. We have tried it on varying sizes of devices, from iPhone to iPad and larger tablets, and it is so tiny it is inaccessible. And while we appreciate that this theme is sold as a semi-responsive theme, the one feature that is most important (navigation and scrolling of the timeline) is entirely unusable on portable devices, as it is designed - not implementing finger motion, but just being able to touch the scroll bar and slide it across.</p>
<p>So, I suppose my request is the following:</p>
<p>Can you provide the css and/or any appropriate code, to increase the size of the entire scrollbar area (including the background) so that on smaller devices like the iPhone, it is large enough to touch (say double in size).</p>
<p>Or can you implement the finger gestures that SO MANY portable devices use today. While I understand this theme to be semi-responsive, the main feature (timeline) is completely useless on smaller devices as it stands now. </p>
<p>We have tested it on all sizes, and the only one that it is usable on is a desktop, because the mouse is able to click and hold on the slider to move the timeline. Whenever a finger needs to do that, the scrolling area is soooo tiny, it is virtually unclickkble, and also often the attempts to click it make the "copy" feature come up instead. Even larger tablet users can not click and use the bottom scrollbar.</p>
<p>We love the theme, but will be forced to find something that is responsive if we can't work/edit this out using code.</p>
<p>Please help.</p>
<p>THanks!<br />
RM
</p></description>
		</item>
		<item>
			<title>THE MOLITOR on "iPhone/iPad Gestures"</title>
			<link>http://www.themolitor.com/forums/topic/iphoneipad-gestures#post-22913</link>
			<pubDate>Mon, 02 Sep 2013 09:05:32 +0000</pubDate>
			<dc:creator>THE MOLITOR</dc:creator>
			<guid isPermaLink="false">22913@http://www.themolitor.com/forums/</guid>
			<description><p>Thanks for the feedback! :-)</p>
<p>Best,</p>
<p>Chris
</p></description>
		</item>
		<item>
			<title>mr_pro on "iPhone/iPad Gestures"</title>
			<link>http://www.themolitor.com/forums/topic/iphoneipad-gestures#post-22898</link>
			<pubDate>Mon, 02 Sep 2013 03:39:50 +0000</pubDate>
			<dc:creator>mr_pro</dc:creator>
			<guid isPermaLink="false">22898@http://www.themolitor.com/forums/</guid>
			<description><p>Also think that this would be a sensible addition to the theme, as it doesn't quite work on iOS devices.</p>
<p>Thanks
</p></description>
		</item>
		<item>
			<title>THE MOLITOR on "iPhone/iPad Gestures"</title>
			<link>http://www.themolitor.com/forums/topic/iphoneipad-gestures#post-22695</link>
			<pubDate>Wed, 21 Aug 2013 12:33:07 +0000</pubDate>
			<dc:creator>THE MOLITOR</dc:creator>
			<guid isPermaLink="false">22695@http://www.themolitor.com/forums/</guid>
			<description><p>Hi there,</p>
<p>I don't have an ETA, but if you need something done right away, you can submit a request here: <a href="http://themolitor.com/custom" rel="nofollow">http://themolitor.com/custom</a> -- someone from the Werkpress team will get in contact with you regarding cost and time.</p>
<p>Thanks!</p>
<p>Chris
</p></description>
		</item>
		<item>
			<title>robertfmorrow on "iPhone/iPad Gestures"</title>
			<link>http://www.themolitor.com/forums/topic/iphoneipad-gestures#post-22691</link>
			<pubDate>Wed, 21 Aug 2013 12:17:55 +0000</pubDate>
			<dc:creator>robertfmorrow</dc:creator>
			<guid isPermaLink="false">22691@http://www.themolitor.com/forums/</guid>
			<description><p>Chris,</p>
<p>Would you by chance have an ETA on considering this? I have a client, who is a painter, that would be perfect for. If I have to purchase the template first, before you consider it. That is fine. I will do that. I just wanted to know that if I do, I can tell the client that feature will be in place before we are finished with the website.</p>
<p>By the way, if you want to see another one of your templates, in use. Please visit this site: <a href="http://autismdigest.com/" rel="nofollow">http://autismdigest.com/</a>. It's based on your work. Thank you!</p>
<p>Also, can you send me an email of your WordPress coding pricing. I have some jobs coming up and my current coder is booked. Is this something you might be interested in?</p>
<p>Sincerely,<br />
Robert F. Morrow<br />
Owner &#124; tomorrowsdesigns.com
</p></description>
		</item>

	</channel>
</rss>
