<?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 for malihu</title>
	<atom:link href="http://manos.malihu.gr/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://manos.malihu.gr</link>
	<description>web design</description>
	<lastBuildDate>Wed, 19 Jun 2013 17:41:13 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
	<item>
		<title>Comment on jQuery custom content scroller by kroco</title>
		<link>http://manos.malihu.gr/jquery-custom-content-scroller/comment-page-12/#comment-16953</link>
		<dc:creator>kroco</dc:creator>
		<pubDate>Wed, 19 Jun 2013 17:41:13 +0000</pubDate>
		<guid isPermaLink="false">http://manos.malihu.gr/?p=197#comment-16953</guid>
		<description><![CDATA[Edited work code.
&lt;code&gt;&lt;script&gt;
		(function($){
			$(window).load(function(){
				$(&quot;#content_1&quot;).mCustomScrollbar({
					callbacks:{
					  onTotalScroll:function(){
						if(!$(&quot;.nextpage&quot;).attr(&quot;href&quot;)){
						alert(&#039;All content successfully loaded&#039;);
						}else{
						var url = $(&quot;.nextpage&quot;).attr(&quot;href&quot;);
						$.get(url,function(data){
						$(&quot;.nextpage&quot;).remove(&quot;.nextpage&quot;);
						$(&quot;#content_1 .mCSB_container&quot;).append(data);
						$(&quot;#content_1&quot;).mCustomScrollbar(&quot;update&quot;);
						$(&quot;#content_1&quot;).mCustomScrollbar(&quot;scrollTo&quot;,&quot;h2:last&quot;,{scrollInertia:2500,scrollEasing:&quot;easeInOutQuad&quot;}); //scroll to appended content
						});
						}						
					  }
					}
				
				});
			});
		})(jQuery);
	&lt;/script&gt;&lt;/code&gt;]]></description>
		<content:encoded><![CDATA[<p>Edited work code.<br />
<code>&lt;script&gt;
    (function($){
      $(window).load(function(){
        $(&quot;#content_1&quot;).mCustomScrollbar({
          callbacks:{
            onTotalScroll:function(){
            if(!$(&quot;.nextpage&quot;).attr(&quot;href&quot;)){
            alert(&#039;All content successfully loaded&#039;);
            }else{
            var url = $(&quot;.nextpage&quot;).attr(&quot;href&quot;);
            $.get(url,function(data){
            $(&quot;.nextpage&quot;).remove(&quot;.nextpage&quot;);
            $(&quot;#content_1 .mCSB_container&quot;).append(data);
            $(&quot;#content_1&quot;).mCustomScrollbar(&quot;update&quot;);
            $(&quot;#content_1&quot;).mCustomScrollbar(&quot;scrollTo&quot;,&quot;h2:last&quot;,{scrollInertia:2500,scrollEasing:&quot;easeInOutQuad&quot;}); //scroll to appended content
            });
            }            
            }
          }
        
        });
      });
    })(jQuery);
  &lt;/script&gt;</code></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on jQuery custom content scroller by vishal</title>
		<link>http://manos.malihu.gr/jquery-custom-content-scroller/comment-page-12/#comment-16952</link>
		<dc:creator>vishal</dc:creator>
		<pubDate>Wed, 19 Jun 2013 12:31:23 +0000</pubDate>
		<guid isPermaLink="false">http://manos.malihu.gr/?p=197#comment-16952</guid>
		<description><![CDATA[Hello when i use this script on local html the mouse wheel is working but when i integrate it with wordpress the scrolling works but thte mouse wheel is not working may be because of other script conflict.how to solve this?]]></description>
		<content:encoded><![CDATA[<p>Hello when i use this script on local html the mouse wheel is working but when i integrate it with wordpress the scrolling works but thte mouse wheel is not working may be because of other script conflict.how to solve this?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on jQuery custom content scroller by Nikita Radaev</title>
		<link>http://manos.malihu.gr/jquery-custom-content-scroller/comment-page-12/#comment-16951</link>
		<dc:creator>Nikita Radaev</dc:creator>
		<pubDate>Tue, 18 Jun 2013 19:23:03 +0000</pubDate>
		<guid isPermaLink="false">http://manos.malihu.gr/?p=197#comment-16951</guid>
		<description><![CDATA[Hi guys,

Hawing a bit of a problem with the scroll speed. Here is what I have as my defaults in mCustomScrollbar.js:

scrollButtons:{ /*scroll buttons*/
					enable:true, /*scroll buttons support: boolean*/
					scrollType:&quot;pixel&quot;, /*scroll buttons scrolling type: &quot;continuous&quot;, &quot;pixels&quot;*/
					scrollSpeed:&quot;integer&quot;, /*scroll buttons continuous scrolliing speed: integer, &quot;auto&quot;*/
					scrollAmount:500 /*scroll buttons pixels scroll amount: integer (pixels)*/
				}

And here is how I initialize it on the page:

(function($){
			$(window).load(function(){
				$(&quot;.content_1&quot;).mCustomScrollbar({
					scrollButtons:{
						enable:true,

					},
					advanced:{
						updateOnContentResize:true
					},
					theme:&quot;light-2&quot;
				});
			});
		})(jQuery);


I would like to increase scrolling speed. What am I doing wrong?]]></description>
		<content:encoded><![CDATA[<p>Hi guys,</p>
<p>Hawing a bit of a problem with the scroll speed. Here is what I have as my defaults in mCustomScrollbar.js:</p>
<p>scrollButtons:{ /*scroll buttons*/<br />
					enable:true, /*scroll buttons support: boolean*/<br />
					scrollType:&#8221;pixel&#8221;, /*scroll buttons scrolling type: &#8220;continuous&#8221;, &#8220;pixels&#8221;*/<br />
					scrollSpeed:&#8221;integer&#8221;, /*scroll buttons continuous scrolliing speed: integer, &#8220;auto&#8221;*/<br />
					scrollAmount:500 /*scroll buttons pixels scroll amount: integer (pixels)*/<br />
				}</p>
<p>And here is how I initialize it on the page:</p>
<p>(function($){<br />
			$(window).load(function(){<br />
				$(&#8220;.content_1&#8243;).mCustomScrollbar({<br />
					scrollButtons:{<br />
						enable:true,</p>
<p>					},<br />
					advanced:{<br />
						updateOnContentResize:true<br />
					},<br />
					theme:&#8221;light-2&#8243;<br />
				});<br />
			});<br />
		})(jQuery);</p>
<p>I would like to increase scrolling speed. What am I doing wrong?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on HTML Tabs: Complete tutorial and plugin by Nikita Radaev</title>
		<link>http://manos.malihu.gr/html-tabs-complete-tutorial-and-plugin/comment-page-1/#comment-16950</link>
		<dc:creator>Nikita Radaev</dc:creator>
		<pubDate>Tue, 18 Jun 2013 19:19:26 +0000</pubDate>
		<guid isPermaLink="false">http://manos.malihu.gr/?p=600#comment-16950</guid>
		<description><![CDATA[Hi Malihu,

Just wanted to thank you for you excellent tutorials. I&#039;ve used your plugins in most of my projects. Not to say how much I learned from them. Again, thank you and keep up good work.

Cheers, Nikita!]]></description>
		<content:encoded><![CDATA[<p>Hi Malihu,</p>
<p>Just wanted to thank you for you excellent tutorials. I&#8217;ve used your plugins in most of my projects. Not to say how much I learned from them. Again, thank you and keep up good work.</p>
<p>Cheers, Nikita!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on jQuery custom content scroller by Karvapallo</title>
		<link>http://manos.malihu.gr/jquery-custom-content-scroller/comment-page-12/#comment-16949</link>
		<dc:creator>Karvapallo</dc:creator>
		<pubDate>Tue, 18 Jun 2013 11:56:55 +0000</pubDate>
		<guid isPermaLink="false">http://manos.malihu.gr/?p=197#comment-16949</guid>
		<description><![CDATA[Same issue. Would need to be able to stop the scroll event from propagating to the window even when the scrolling has reached the end.]]></description>
		<content:encoded><![CDATA[<p>Same issue. Would need to be able to stop the scroll event from propagating to the window even when the scrolling has reached the end.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on jQuery custom content scroller by shams</title>
		<link>http://manos.malihu.gr/jquery-custom-content-scroller/comment-page-12/#comment-16948</link>
		<dc:creator>shams</dc:creator>
		<pubDate>Tue, 18 Jun 2013 06:11:18 +0000</pubDate>
		<guid isPermaLink="false">http://manos.malihu.gr/?p=197#comment-16948</guid>
		<description><![CDATA[Hi Malihu,

Great plugin! Good job. Hope it will handle rtl content in the future versions.

I&#039;m actually using the plugin which is integrated in a WP theme and was wondering if you can help me hacking/configuring it to handle rtl content scrolling.
I took a look at the code and tried to figure out what to change to make my horizontal scroll from right to left. I just reversed right and left positions and get the scroll dragger to the right but couldn&#039;t make it moving.

Please advise.]]></description>
		<content:encoded><![CDATA[<p>Hi Malihu,</p>
<p>Great plugin! Good job. Hope it will handle rtl content in the future versions.</p>
<p>I&#8217;m actually using the plugin which is integrated in a WP theme and was wondering if you can help me hacking/configuring it to handle rtl content scrolling.<br />
I took a look at the code and tried to figure out what to change to make my horizontal scroll from right to left. I just reversed right and left positions and get the scroll dragger to the right but couldn&#8217;t make it moving.</p>
<p>Please advise.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Animate page to id with jQuery by alex</title>
		<link>http://manos.malihu.gr/animate-page-to-id-with-jquery/comment-page-1/#comment-16947</link>
		<dc:creator>alex</dc:creator>
		<pubDate>Mon, 17 Jun 2013 04:38:21 +0000</pubDate>
		<guid isPermaLink="false">http://manos.malihu.gr/?p=134#comment-16947</guid>
		<description><![CDATA[If you have a fixed top bar and dont want to set some offset value just add a negative value to the end of line 28  of the .js file

var scrollToPos=$(&quot;#&quot;+scrollTarget[1]).offset().top-75

and it should work like so http://goo.gl/Pt99i

all the best!]]></description>
		<content:encoded><![CDATA[<p>If you have a fixed top bar and dont want to set some offset value just add a negative value to the end of line 28  of the .js file</p>
<p>var scrollToPos=$(&#8220;#&#8221;+scrollTarget[1]).offset().top-75</p>
<p>and it should work like so <a href="http://goo.gl/Pt99i" rel="nofollow">http://goo.gl/Pt99i</a></p>
<p>all the best!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Style-my-tooltips jQuery plugin by Ameennullah</title>
		<link>http://manos.malihu.gr/style-my-tooltips-jquery-plugin/comment-page-1/#comment-16946</link>
		<dc:creator>Ameennullah</dc:creator>
		<pubDate>Sun, 16 Jun 2013 14:18:19 +0000</pubDate>
		<guid isPermaLink="false">http://manos.malihu.gr/?p=281#comment-16946</guid>
		<description><![CDATA[Thanks you for this simple clean awesome script.

I would like to know is there a way to display the tooltip just above the link or div tag centered?]]></description>
		<content:encoded><![CDATA[<p>Thanks you for this simple clean awesome script.</p>
<p>I would like to know is there a way to display the tooltip just above the link or div tag centered?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Animate page to id with jQuery by Jason</title>
		<link>http://manos.malihu.gr/animate-page-to-id-with-jquery/comment-page-1/#comment-16945</link>
		<dc:creator>Jason</dc:creator>
		<pubDate>Sun, 16 Jun 2013 05:39:20 +0000</pubDate>
		<guid isPermaLink="false">http://manos.malihu.gr/?p=134#comment-16945</guid>
		<description><![CDATA[Jordan, I still don&#039;t think that addresses Terence&#039;s issue of linking to another page. The example at pootlepress only shows how to link to an anchor within a page  (e.g. #anchor) , instead of a separate page (e.g. /page#anchor).]]></description>
		<content:encoded><![CDATA[<p>Jordan, I still don&#8217;t think that addresses Terence&#8217;s issue of linking to another page. The example at pootlepress only shows how to link to an anchor within a page  (e.g. #anchor) , instead of a separate page (e.g. /page#anchor).</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Re-designed blog by Astro</title>
		<link>http://manos.malihu.gr/re-designed-blog/comment-page-1/#comment-16943</link>
		<dc:creator>Astro</dc:creator>
		<pubDate>Sat, 15 Jun 2013 15:11:02 +0000</pubDate>
		<guid isPermaLink="false">http://manos.malihu.gr/?p=510#comment-16943</guid>
		<description><![CDATA[kali fasi]]></description>
		<content:encoded><![CDATA[<p>kali fasi</p>
]]></content:encoded>
	</item>
</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using disk
Page Caching using disk

 Served from: manos.malihu.gr @ 2013-06-20 14:32:29 by W3 Total Cache -->