<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>scrollable list &#8211; Content Views Pro</title>
	<atom:link href="https://contentviewspro.com/documentation/tags/scrollable-list/feed/" rel="self" type="application/rss+xml" />
	<link>https://contentviewspro.com/documentation</link>
	<description>Most Popular Filter &#38; Grid Plugin For WordPress</description>
	<lastBuildDate>Wed, 27 Dec 2023 10:57:32 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	
	<item>
		<title>Scrollable list &#8211; vertical scroll</title>
		<link>https://contentviewspro.com/documentation/article/vertical-scroll-scrollable-list/</link>
		
		<dc:creator><![CDATA[CVP]]></dc:creator>
		<pubDate>Fri, 04 Aug 2017 08:50:47 +0000</pubDate>
				<guid isPermaLink="false">http://docs.contentviewspro.com/?p=1910</guid>

					<description><![CDATA[Content Views helps you to display posts in scrollable list easily without coding. By default, the posts list will scroll from right to left. To use vertical scroll (bottom to top), please: Add this code to Custom CSS field in Content Views >> Settings page: /* Scrollable list - vertical scroll */ .vertical .carousel-inner{height:100%}.pt-cv-carousel.vertical .item{-webkit-transition:.6s &#8230;<p class="read-more"> <a class="" href="https://contentviewspro.com/documentation/article/vertical-scroll-scrollable-list/"> <span class="screen-reader-text">Scrollable list &#8211; vertical scroll</span> Read More &#187;</a></p>]]></description>
										<content:encoded><![CDATA[<p>Content Views helps you to display posts in scrollable list easily without coding. By default, the posts list will scroll from right to left.<br />
To use vertical scroll (bottom to top), please:</p>
<ul>
<li>Add this code to <strong>Custom CSS</strong> field in Content Views >> Settings page:
<pre style="font-size:13px">
/* Scrollable list - vertical scroll */
.vertical .carousel-inner{height:100%}.pt-cv-carousel.vertical .item{-webkit-transition:.6s ease-in-out top!important;-moz-transition:.6s ease-in-out top!important;-ms-transition:.6s ease-in-out top!important;-o-transition:.6s ease-in-out top!important;transition:.6s ease-in-out top!important}.pt-cv-carousel.vertical .active{top:0!important}.pt-cv-carousel.vertical .next{top:400px!important}.pt-cv-carousel.vertical .prev{top:-400px!important}.pt-cv-carousel.vertical .next.left,.pt-cv-carousel.vertical .prev.right{top:0!important}.pt-cv-carousel.vertical .active.left{top:-400px!important}.pt-cv-carousel.vertical .active.right{top:400px!important}.pt-cv-carousel.vertical .item{left:0!important;transform:none!important}
</pre>
</li>
<li>Add this code to <strong>Custom JS</strong> field in Content Views >> Settings page:
<pre style="font-size:13px">
$('.pt-cv-carousel').addClass('vertical')
</pre>
</li>
</ul>
<p>Best regards,</p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Scrollable list &#8211; Fix: click on next/prev button caused the page to scroll</title>
		<link>https://contentviewspro.com/documentation/article/page-scrolls-updown-click-nextprevious-button-scrollable-list/</link>
		
		<dc:creator><![CDATA[admin1]]></dc:creator>
		<pubDate>Thu, 15 Jun 2017 03:06:08 +0000</pubDate>
				<guid isPermaLink="false">http://docs.contentviewspro.com/?p=1668</guid>

					<description><![CDATA[If the page moves up or down on click the navigation buttons (next, previous) of Scrollable list, it means there was a custom Javascript handle of theme or another plugin attached to these buttons. To resolve this issue, please add this code to Custom JS field in Content Views >> Settings page: /* Content Views &#8230;<p class="read-more"> <a class="" href="https://contentviewspro.com/documentation/article/page-scrolls-updown-click-nextprevious-button-scrollable-list/"> <span class="screen-reader-text">Scrollable list &#8211; Fix: click on next/prev button caused the page to scroll</span> Read More &#187;</a></p>]]></description>
										<content:encoded><![CDATA[<p>If the page moves up or down on click the navigation buttons (next, previous) of Scrollable list, it means there was a custom Javascript handle of theme or another plugin attached to these buttons.<br />
To resolve this issue, please add this code to <strong>Custom JS</strong> field in Content Views >> Settings page:</p>
<pre style="font-size:13px">
/* Content Views - Fix page scrolls on click next/previous button of Scrollable List */
setTimeout(function() {
$('.pt-cv-scrollable .carousel-control').off('click');
}, 2000);
</pre>
<p>If you are using Content Views Free, please add above code with this instruction (<a href="http://contentviewspro.com/documentation/article/add-custom-javascript-content-views-free-version/" target="_blank" rel="noopener noreferrer">click here</a>).</p>
<p>Best regards,</p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Scrollable list &#8211; add a Pause button</title>
		<link>https://contentviewspro.com/documentation/article/add-pause-button-scrollable-list/</link>
		
		<dc:creator><![CDATA[admin1]]></dc:creator>
		<pubDate>Wed, 07 Jun 2017 05:56:39 +0000</pubDate>
				<guid isPermaLink="false">http://docs.contentviewspro.com/?p=1616</guid>

					<description><![CDATA[With Content Views Pro, you can enable next, prev and indicator buttons in the Scrollable list with friendly settings. To add the pause button, please add this code to Custom JS field in Content Views >> Settings page: /* Add pause button for scrollable list */ $('.pause.carousel-control').on('click',function(){ var $carousel = $(this).closest('[data-ride=&#34;cvcarousel&#34;][data-interval]'), $button = $(this).find('span'); if($button.hasClass('glyphicon-pause')){ &#8230;<p class="read-more"> <a class="" href="https://contentviewspro.com/documentation/article/add-pause-button-scrollable-list/"> <span class="screen-reader-text">Scrollable list &#8211; add a Pause button</span> Read More &#187;</a></p>]]></description>
										<content:encoded><![CDATA[<p>With Content Views Pro, you can enable next, prev and indicator buttons in the Scrollable list with friendly settings.<br />
To add the pause button, please add this code to <strong>Custom JS</strong> field in Content Views >> Settings page:</p>
<pre style="font-size:13px">
/* Add pause button for scrollable list */
$('.pause.carousel-control').on('click',function(){
    var $carousel = $(this).closest('[data-ride=&quot;cvcarousel&quot;][data-interval]'), $button = $(this).find('span');
    if($button.hasClass('glyphicon-pause')){
        $carousel.cvcarousel('pause');
        $button.removeClass('glyphicon-pause').addClass('glyphicon-play');
    } else {
        $carousel.cvcarousel('cycle');
        $button.addClass('glyphicon-pause').removeClass('glyphicon-play');
    }
});
</pre>
<p>To show the pause button <strong>for all scrollable lists</strong>, add this code below above code</p>
<pre style="font-size:13px">
$('.left.carousel-control').after('&lt;a class=&quot;pause carousel-control&quot;&gt;&lt;span class=&quot;glyphicon glyphicon-pause&quot;&gt;&lt;/span&gt;&lt;/a&gt;');
</pre>
<p>To show the pause button <strong>for specific scrollable lists only</strong>, add this code below above code:</p>
<pre style="font-size:13px">
$('.left.carousel-control', '#pt-cv-view-VIEWID').after('&lt;a class=&quot;pause carousel-control&quot;&gt;&lt;span class=&quot;glyphicon glyphicon-pause&quot;&gt;&lt;/span&gt;&lt;/a&gt;');
</pre>
<p><em>(replace <strong>VIEWID</strong> with ID of your View)</em></p>
<p>Best regards,</p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Scrollable list &#8211; customize style, color, position&#8230;</title>
		<link>https://contentviewspro.com/documentation/article/scrollable-list-elements-navigation-button-indicator/</link>
		
		<dc:creator><![CDATA[admin1]]></dc:creator>
		<pubDate>Tue, 12 Jul 2016 03:43:30 +0000</pubDate>
				<guid isPermaLink="false">http://docs.contentviewspro.com/?p=847</guid>

					<description><![CDATA[All custom CSS should be put in &#8220;Custom CSS&#8221; field in Content Views &#62;&#62; Settings page. To make the changes for only specific View, please replace .pt-cv-scrollable in below code with #pt-cv-view-VIEWID (with VIEWID is the ID of your View) Background color of the next/prev buttons ( ) .pt-cv-scrollable .carousel-control span {background: YOUR_COLOR !important} Hover &#8230;<p class="read-more"> <a class="" href="https://contentviewspro.com/documentation/article/scrollable-list-elements-navigation-button-indicator/"> <span class="screen-reader-text">Scrollable list &#8211; customize style, color, position&#8230;</span> Read More &#187;</a></p>]]></description>
										<content:encoded><![CDATA[<p>All custom CSS should be put in &#8220;Custom CSS&#8221; field in Content Views &gt;&gt; Settings page.</p>
<blockquote><p>To make the changes for only specific View, please replace <code>.pt-cv-scrollable</code> in below code with <br /> <code>#pt-cv-view-VIEWID</code> (with VIEWID is the ID of your View)</p></blockquote>
<h2>Background color of the next/prev buttons ( <> )</h2>
<pre style="font-size:13px">.pt-cv-scrollable .carousel-control span {background: YOUR_COLOR !important}</pre>
<h2>Hover color of next/prev buttons ( <> )</h2>
<pre style="font-size:13px">.pt-cv-scrollable .carousel-control:hover span {color: YOUR_COLOR !important}</pre>
<h2>Move next/prev buttons ( <> ) to bottom</h2>
<pre style="font-size:13px">.pt-cv-scrollable .carousel-control {bottom: -20px!important; top: auto!important;}</pre>
<h2 id="center-vertical">Center next/prev buttons ( <> ) vertically on both sides</h2>
<pre style="font-size:13px">
.pt-cv-scrollable .item{padding-left:30px;padding-right:30px}.pt-cv-scrollable .carousel-control.left{left:0!important;}.pt-cv-scrollable .carousel-control.right{right:0!important;}.pt-cv-scrollable .carousel-control.left,.pt-cv-scrollable .carousel-control.right{position:absolute!important;margin-top:-25px!important;top:50%!important;}
</pre>
<h2>Replace next/prev buttons ( <> ) with custom arrow images</h2>
<pre style="font-size:13px">
.pt-cv-wrapper .glyphicon-chevron-left:before, .pt-cv-wrapper .glyphicon-chevron-right:before {content: "" !important;}
.pt-cv-wrapper .glyphicon-chevron-left {background: url(URL_OF_ARROW_1); background-size: contain;}
.pt-cv-wrapper .glyphicon-chevron-right {background: url(URL_OF_ARROW_2); background-size: contain;}
</pre>
<h2>Background color of indicator (circle icon at bottom of slides)</h2>
<pre style="font-size:13px">.pt-cv-scrollable .pt-cv-carousel-indicators li.active {background-color: YOUR_COLOR !important; background-image: none !important;}</pre>
<h2>Add border for each post</h2>
<pre style="font-size:13px">.pt-cv-scrollable .pt-cv-carousel-caption {border:1px solid YOUR_COLOR; padding:10px}</pre>
<h2>Slowdown the transition duration</h2>
<pre style="font-size:13px">.pt-cv-scrollable .item {transition-duration: 2s !important;}</pre>
<h2>Remove red background, just keep white next/prev buttons</h2>
<pre style="font-size:13px">
.pt-cv-scrollable .carousel-control .glyphicon{background:0 0!important;text-shadow:0 0 11px rgba(171,171,171,.925);font-size:30px!important;color:#fff!important}
</pre>
<h2>Change background color of Caption on hover</h2>
<pre style="font-size:13px">
#pt-cv-view-VIEWID .pt-cv-carousel-caption:hover {background-color: YOUR_COLOR !important;}
</pre>
<p>(replace <strong>VIEWID </strong> with ID of your View)</p>
<h2>Show text on the right of the thumbnail</h2>
<p>By default, text is shown below the thumbnail in the Scrollable list.<br />
To show text below the thumbnail, here is the CSS:</p>
<pre style="font-size:13px">
#pt-cv-view-VIEWID .pt-cv-thumbnail {
    width: 50%;
}
#pt-cv-view-VIEWID div.pt-cv-carousel-caption {
    left: 50% !important;
    top: 1px !important;
    width: 50% !important;
}
</pre>
<p>(replace <strong>VIEWID </strong> with ID of your View)</p>
<p>Best regards,</p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Scrollable list &#8211; Fix: click on next/prev button doesn&#8217;t work</title>
		<link>https://contentviewspro.com/documentation/article/nextprev-button-of-scrollable-list-doesnt-work/</link>
		
		<dc:creator><![CDATA[admin1]]></dc:creator>
		<pubDate>Mon, 14 Dec 2015 04:46:41 +0000</pubDate>
				<guid isPermaLink="false">http://docs.contentviewspro.com/?p=695</guid>

					<description><![CDATA[In Scrollable list, if slide doesn&#8217;t change when you click next/prev button, the possible reason is impact of theme&#8217;s or another plugin&#8217;s script. To resolve this issue, please add this code to Custom JS field in Content Views >> Settings page: /* Content Views - Fix Scrollable List next/prev doesn't work */ setTimeout(function() { $(".carousel-control.left").off("click").on("click",function(){$(this).parent().cvcarousel("prev")}),$(".carousel-control.right").off("click").on("click",function(){$(this).parent().cvcarousel("next")}); &#8230;<p class="read-more"> <a class="" href="https://contentviewspro.com/documentation/article/nextprev-button-of-scrollable-list-doesnt-work/"> <span class="screen-reader-text">Scrollable list &#8211; Fix: click on next/prev button doesn&#8217;t work</span> Read More &#187;</a></p>]]></description>
										<content:encoded><![CDATA[<p>In Scrollable list, if slide doesn&#8217;t change when you click next/prev button, the possible reason is impact of theme&#8217;s or another plugin&#8217;s script.</p>
<p>To resolve this issue, please add this code to <strong>Custom JS</strong> field in Content Views >> Settings page:</p>
<pre style="font-size:13px">
/* Content Views - Fix Scrollable List next/prev doesn't work */
setTimeout(function() {
$(".carousel-control.left").off("click").on("click",function(){$(this).parent().cvcarousel("prev")}),$(".carousel-control.right").off("click").on("click",function(){$(this).parent().cvcarousel("next")});
}, 2000);
</pre>
<p>If you are using Content Views Free, please add above code with this instruction (<a href="http://contentviewspro.com/documentation/article/add-custom-javascript-content-views-free-version/" target="_blank" rel="noopener noreferrer">click here</a>).</p>
<p>Best regards,</p>
]]></content:encoded>
					
		
		
			</item>
	</channel>
</rss>
