<?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>Customize CSS/Style &#8211; Content Views Pro</title>
	<atom:link href="https://contentviewspro.com/documentation/cats/customize-css-style/feed/" rel="self" type="application/rss+xml" />
	<link>https://contentviewspro.com/documentation</link>
	<description>Most Popular Filter &#38; Grid Plugin For WordPress</description>
	<lastBuildDate>Fri, 29 Dec 2023 08:28:06 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	
	<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>Live Filter &#8211; custom style for the Checkbox</title>
		<link>https://contentviewspro.com/documentation/article/live-filter-custom-style-for-the-checkbox-type/</link>
		
		<dc:creator><![CDATA[admin1]]></dc:creator>
		<pubDate>Wed, 10 Jul 2019 04:17:53 +0000</pubDate>
				<guid isPermaLink="false">https://docs.contentviewspro.com/?p=3645</guid>

					<description><![CDATA[This document helps you to style the checkbox type of Live Filter to look like this: To do that, Please add this code to Custom CSS field (the left textarea) in Content Views >> Settings page: /* Live Filter – custom style for the checkbox type */ .cvp-live-filter.cvp-checkbox { min-width: 250px; } .cvp-live-filter.cvp-checkbox .cvp-label { &#8230;<p class="read-more"> <a class="" href="https://contentviewspro.com/documentation/article/live-filter-custom-style-for-the-checkbox-type/"> <span class="screen-reader-text">Live Filter &#8211; custom style for the Checkbox</span> Read More &#187;</a></p>]]></description>
										<content:encoded><![CDATA[<p>This document helps you to style the checkbox type of Live Filter to look like this:</p>
<p><img fetchpriority="high" decoding="async" src="https://contentviewspro.com/documentation/wp-content/uploads/2019/07/cvp-live-filter-checkbox.png" alt="cvp-live-filter-checkbox" width="557" height="275" class="alignnone size-full wp-image-3646" srcset="https://contentviewspro.com/documentation/wp-content/uploads/2019/07/cvp-live-filter-checkbox.png 557w, https://contentviewspro.com/documentation/wp-content/uploads/2019/07/cvp-live-filter-checkbox-300x148.png 300w" sizes="(max-width: 557px) 100vw, 557px" /></p>
<p>To do that, Please add this code to <strong>Custom CSS</strong> field (the left textarea) in <a href="https://contentviewspro.com/documentation/wp-content/uploads/2018/03/Content-Views-_-Settings.png">Content Views >> Settings</a> page:</p>
<pre style="font-size:13px">
/* Live Filter – custom style for the checkbox type */
.cvp-live-filter.cvp-checkbox {
    min-width: 250px;
}

.cvp-live-filter.cvp-checkbox .cvp-label {
    font-size: 20px !important;
    line-height: 1.3 !important;
    color: #ffffff !important;
    background-color: #00aeef !important;
    display: block;
    margin-right: 0;
    padding: 10px;
}

.cvp-live-filter.cvp-checkbox .checkbox {
    border-bottom: 1px solid #f3f3f3 !important;
    padding: 5px 0px;
    color: red;
}
</pre>
<p>Best regards,</p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Change border of Read More button</title>
		<link>https://contentviewspro.com/documentation/article/change-border-width-style-color-of-read-more-button/</link>
		
		<dc:creator><![CDATA[admin1]]></dc:creator>
		<pubDate>Wed, 10 Apr 2019 02:39:27 +0000</pubDate>
				<guid isPermaLink="false">https://docs.contentviewspro.com/?p=3572</guid>

					<description><![CDATA[With Pro version, you can change Border in Style Settings &#62; Read More. With Free version, to change border (width, style, color) of Read More button, please use this CSS: /* Change border of Read More button */ .pt-cv-view .pt-cv-readmore { border-width: 3px !important; border-style: solid !important; border-color: red !important; } .pt-cv-view .pt-cv-readmore:hover { border-width: &#8230;<p class="read-more"> <a class="" href="https://contentviewspro.com/documentation/article/change-border-width-style-color-of-read-more-button/"> <span class="screen-reader-text">Change border of Read More button</span> Read More &#187;</a></p>]]></description>
										<content:encoded><![CDATA[<p>With Pro version, you can change Border in Style Settings &gt; Read More.</p>
<p>With Free version, to change border (width, style, color) of Read More button, please use this CSS:</p>
<pre style="font-size: 13px;">/* Change border of Read More button */
.pt-cv-view .pt-cv-readmore {
    border-width: 3px !important;
    border-style: solid !important;
    border-color: red !important;
}

.pt-cv-view .pt-cv-readmore:hover {
    border-width: 3px !important;
    border-style: solid !important;
    border-color: red !important;
}
</pre>
<p>You can change values of width, style, color as you want.</p>
<p>Best regards,</p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Pagination &#8211; hide the caret (the down arrow) in the &#8220;Load more&#8221; pagination</title>
		<link>https://contentviewspro.com/documentation/article/pagination-hide-the-caret-the-down-arrow-in-the-load-more-pagination/</link>
		
		<dc:creator><![CDATA[admin1]]></dc:creator>
		<pubDate>Mon, 29 Oct 2018 04:03:22 +0000</pubDate>
				<guid isPermaLink="false">https://docs.contentviewspro.com/?p=3410</guid>

					<description><![CDATA[Please add this code to Custom CSS field (the left textarea) in Content Views >> Settings page: .pt-cv-more .caret {display: none !important;} Best regards,]]></description>
										<content:encoded><![CDATA[<p>Please add this code to <strong>Custom CSS</strong> field (the left textarea) in <a href="https://contentviewspro.com/documentation/wp-content/uploads/2018/03/Content-Views-_-Settings.png">Content Views >> Settings</a> page:</p>
<pre style="font-size:13px">
.pt-cv-more .caret {display: none !important;}
</pre>
<p>Best regards,</p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Lightbox &#8211; change background color, opacity, close icon&#8230;</title>
		<link>https://contentviewspro.com/documentation/article/lightbox-change-background-color-opacity-close-icon-etc/</link>
		
		<dc:creator><![CDATA[admin1]]></dc:creator>
		<pubDate>Thu, 12 Apr 2018 09:20:08 +0000</pubDate>
				<guid isPermaLink="false">https://docs.contentviewspro.com/?p=3037</guid>

					<description><![CDATA[Change background color and opacity around the lightbox: #cvpboxOverlay { background: #000 !important; opacity: 0.5 !important; } Change the border of the lightbox: #cvpboxLoadedContent { border: 5px solid #000 !important; } Change the close icon: #cvpboxClose { background: url(URL_OF_YOUR_CLOSE_ICON_HERE) !important; } Lightbox of thumbnail: Move the arrows outside the image: #cvpboxPrevious { left: -45px !important; &#8230;<p class="read-more"> <a class="" href="https://contentviewspro.com/documentation/article/lightbox-change-background-color-opacity-close-icon-etc/"> <span class="screen-reader-text">Lightbox &#8211; change background color, opacity, close icon&#8230;</span> Read More &#187;</a></p>]]></description>
										<content:encoded><![CDATA[<h2>Change background color and opacity around the lightbox:</h2>
<pre style="font-size: 13px;">#cvpboxOverlay {
    background: #000 !important;
    opacity: 0.5 !important;
}
</pre>
<h2>Change the border of the lightbox:</h2>
<pre style="font-size: 13px;">#cvpboxLoadedContent {
    border: 5px solid #000 !important;
}
</pre>
<h2>Change the close icon:</h2>
<pre style="font-size:13px">
#cvpboxClose {
    background: url(URL_OF_YOUR_CLOSE_ICON_HERE) !important;
}
</pre>
<h2>Lightbox of thumbnail: Move the arrows outside the image:</h2>
<pre style="font-size:13px">
#cvpboxPrevious {
    left: -45px !important;
}
#cvpboxNext {
    right: -45px !important;
}
</pre>
<h2>Lightbox of thumbnail: change styles of the text/description</h2>
<pre style="font-size:13px">
#cvpboxTitle {
    font-size: 20px;
    color: #ccc;
    font-family: Arial, serif;
}
</pre>
<h2>Lightbox of thumbnail: remove the text/description</h2>
<pre style="font-size:13px">
#cvpboxTitle {
    display: none !important;
}
</pre>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Pinterest &#8211; equal height columns</title>
		<link>https://contentviewspro.com/documentation/article/pinterest-display-items-height/</link>
		
		<dc:creator><![CDATA[admin1]]></dc:creator>
		<pubDate>Wed, 28 Mar 2018 04:56:19 +0000</pubDate>
				<guid isPermaLink="false">https://docs.contentviewspro.com/?p=2990</guid>

					<description><![CDATA[To display Pinterest items in a same height, please add this code to Custom CSS field (the left textarea) in Content Views >> Settings page: /* Pinterest – equal height columns */ @media (min-width: 992px) { #pt-cv-view-VIEWID .pt-cv-pinmas {height:300px} } and: replace VIEWID with ID of your View replace 300px with relevant height for your &#8230;<p class="read-more"> <a class="" href="https://contentviewspro.com/documentation/article/pinterest-display-items-height/"> <span class="screen-reader-text">Pinterest &#8211; equal height columns</span> Read More &#187;</a></p>]]></description>
										<content:encoded><![CDATA[<p>To display Pinterest items in a same height, please add this code to <strong>Custom CSS</strong> field (the left textarea) in <a href="https://contentviewspro.com/documentation/wp-content/uploads/2018/03/Content-Views-_-Settings.png">Content Views >> Settings</a> page:</p>
<pre style="font-size:13px">
/* Pinterest – equal height columns */
@media (min-width: 992px) {
#pt-cv-view-VIEWID .pt-cv-pinmas {height:300px}
}
</pre>
<p>and:</p>
<ul>
<li>replace <strong>VIEWID</strong> with <a href="https://contentviewspro.com/documentation/article/what-is-id-of-a-view/">ID of your View</a></li>
<li>replace <strong>300px</strong> with relevant height for your View</li>
</ul>
<blockquote><p>Notice: There is a space between VIEWID and <code>.pt-cv-pinmas</code></p></blockquote>
<p>Best regards,</p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Show borders around each post in Grid</title>
		<link>https://contentviewspro.com/documentation/article/show-borders-around-post-grid/</link>
		
		<dc:creator><![CDATA[admin1]]></dc:creator>
		<pubDate>Tue, 20 Feb 2018 03:11:35 +0000</pubDate>
				<guid isPermaLink="false">https://docs.contentviewspro.com/?p=2874</guid>

					<description><![CDATA[Please add this code to the Custom CSS field in the Content Views >> Settings page: /* Show borders around each post in Grid */ .pt-cv-ifield {border: 1px solid #eee; padding: 15px;} That will work for all grids. To show the border for a specific view only, please use this CSS instead: #pt-cv-view-VIEW_ID .pt-cv-ifield {border: &#8230;<p class="read-more"> <a class="" href="https://contentviewspro.com/documentation/article/show-borders-around-post-grid/"> <span class="screen-reader-text">Show borders around each post in Grid</span> Read More &#187;</a></p>]]></description>
										<content:encoded><![CDATA[<p>Please add this code to the <strong>Custom CSS</strong> field in the Content Views >> Settings page:</p>
<pre style="font-size:13px">
/* Show borders around each post in Grid */
.pt-cv-ifield {border: 1px solid #eee; padding: 15px;}
</pre>
<p>That will work for all grids.</p>
<p>To show the border for a specific view only, please use this CSS instead:</p>
<pre style="font-size:13px">
#pt-cv-view-VIEW_ID   .pt-cv-ifield {border: 1px solid #eee; padding: 15px;}
</pre>
<p>(and replace <strong>VIEW_ID</strong> with <a href="https://contentviewspro.com/documentation/article/what-is-id-of-a-view/">ID of your View</a>)</p>
<p>Best regards,</p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Scrollable list &#8211; fade effect (instead of slide)</title>
		<link>https://contentviewspro.com/documentation/article/scrollable-list-fade-effect-instead-slide/</link>
		
		<dc:creator><![CDATA[CVP]]></dc:creator>
		<pubDate>Thu, 18 Jan 2018 02:10:00 +0000</pubDate>
				<guid isPermaLink="false">https://docs.contentviewspro.com/?p=2792</guid>

					<description><![CDATA[By default, the Scrollable list uses the slide effect when switching slides. To use the fade effect, please add this code to Custom CSS field in Content Views >> Settings page: /* Scrollable list – fade effect */ .pt-cv-carousel .item{transition:opacity ease-in-out .5s!important}.pt-cv-carousel .active.left,.pt-cv-carousel .active.right,.pt-cv-carousel .item{opacity:0!important}.pt-cv-carousel .active,.pt-cv-carousel .next.left,.pt-cv-carousel .prev.right{opacity:1!important}.pt-cv-carousel .active.left,.pt-cv-carousel .active.right,.pt-cv-carousel .next,.pt-cv-carousel .prev{transform:translate3d(0,0,0)!important} Best regards,]]></description>
										<content:encoded><![CDATA[<p>By default, the Scrollable list uses the slide effect when switching slides.<br />
To use the fade effect, please add this code to <strong>Custom CSS</strong> field in Content Views >> Settings page:</p>
<pre style="font-size:13px">
/* Scrollable list – fade effect */
.pt-cv-carousel .item{transition:opacity ease-in-out .5s!important}.pt-cv-carousel .active.left,.pt-cv-carousel .active.right,.pt-cv-carousel .item{opacity:0!important}.pt-cv-carousel .active,.pt-cv-carousel .next.left,.pt-cv-carousel .prev.right{opacity:1!important}.pt-cv-carousel .active.left,.pt-cv-carousel .active.right,.pt-cv-carousel .next,.pt-cv-carousel .prev{transform:translate3d(0,0,0)!important}
</pre>
<p>Best regards,</p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Style Settings &#8211; Use custom font name</title>
		<link>https://contentviewspro.com/documentation/article/use-custom-font-name/</link>
		
		<dc:creator><![CDATA[admin1]]></dc:creator>
		<pubDate>Thu, 11 Jan 2018 05:11:14 +0000</pubDate>
				<guid isPermaLink="false">https://docs.contentviewspro.com/?p=2753</guid>

					<description><![CDATA[Content Views Pro offers many fonts to styling your content. If you want to use custom font which is not in the default list, please follow the steps below: 1. Please ensure that the custom font was defined somewhere, for example: @font-face { font-family: "My font"; src: url("/fonts/Font1-Regular-webfont.woff2") format("woff2"), url("/fonts/Font1-Regular-webfont.woff") format("woff"); } 2. In the &#8230;<p class="read-more"> <a class="" href="https://contentviewspro.com/documentation/article/use-custom-font-name/"> <span class="screen-reader-text">Style Settings &#8211; Use custom font name</span> Read More &#187;</a></p>]]></description>
										<content:encoded><![CDATA[<p>Content Views Pro offers many fonts to styling your content.<br />
If you want to use custom font which is not in the default list, please follow the steps below:</p>
<p>1. Please ensure that the custom font was defined somewhere, for example:</p>
<pre>
@font-face {
  font-family: "My font";
  src: url("/fonts/Font1-Regular-webfont.woff2") format("woff2"),
       url("/fonts/Font1-Regular-webfont.woff") format("woff");
}
</pre>
<p>2.</p>
<ul>
<li>In the Style Settings tab, click the <code>- Default Font -</code> dropdown</li>
<li>Select the <code>Custom font</code> option</li>
<li>Enter the custom font name in the text field</li>
</ul>
<p><img decoding="async" src="https://contentviewspro.com/documentation/wp-content/uploads/2018/01/CVPro-custom-font-name.png" alt="Content Views Pro - custom font name" width="774" height="163" class="alignnone size-full wp-image-2755" srcset="https://contentviewspro.com/documentation/wp-content/uploads/2018/01/CVPro-custom-font-name.png 774w, https://contentviewspro.com/documentation/wp-content/uploads/2018/01/CVPro-custom-font-name-300x63.png 300w, https://contentviewspro.com/documentation/wp-content/uploads/2018/01/CVPro-custom-font-name-768x162.png 768w" sizes="(max-width: 774px) 100vw, 774px" /></p>
<p>Best regards,</p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Pagination &#8211; CSS selectors</title>
		<link>https://contentviewspro.com/documentation/article/pagination-css-selectors/</link>
		
		<dc:creator><![CDATA[CVP]]></dc:creator>
		<pubDate>Thu, 09 Nov 2017 03:31:23 +0000</pubDate>
				<guid isPermaLink="false">http://docs.contentviewspro.com/?p=2529</guid>

					<description><![CDATA[Content Views helps you to show any posts with pagination easily. Here are CSS selectors for page number, next/prev button when you want to use your own custom CSS: /* Page number */ .pt-cv-pagination li a { } /* Page number - active */ .pt-cv-pagination li.active a { } Notice: For Pro users, please use &#8230;<p class="read-more"> <a class="" href="https://contentviewspro.com/documentation/article/pagination-css-selectors/"> <span class="screen-reader-text">Pagination &#8211; CSS selectors</span> Read More &#187;</a></p>]]></description>
										<content:encoded><![CDATA[<p>Content Views helps you to show any posts with pagination easily.</p>
<p>Here are CSS selectors for page number, next/prev button when you want to use your own custom CSS:</p>
<pre style="font-size:13px">
/* Page number */
.pt-cv-pagination li a {
    
}

/* Page number - active */
.pt-cv-pagination li.active a {
    
}
</pre>
<blockquote><p>Notice: For Pro users, please use the &#8220;Style Settings&#8221; tab of View to change color, font, align, transform, so on without writing CSS.</p></blockquote>
]]></content:encoded>
					
		
		
			</item>
	</channel>
</rss>
