<?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>Bootstrap - identity design</title>
	<atom:link href="https://blog.identitydesign.us/category/bootstrap/feed/" rel="self" type="application/rss+xml" />
	<link>https://blog.identitydesign.us/category/bootstrap/</link>
	<description>Web Tips &#38; Free Templates</description>
	<lastBuildDate>Sat, 25 Dec 2021 09:58:41 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.9.4</generator>

<image>
	<url>https://blog.identitydesign.us/wp-content/uploads/2020/08/Screen-Shot-2020-08-08-at-1.08.24-AM-120x120.jpg</url>
	<title>Bootstrap - identity design</title>
	<link>https://blog.identitydesign.us/category/bootstrap/</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>How to Change Bootstrap Carousel Slider Animation to Fade Out Effect or Remove the Sliding Effect</title>
		<link>https://blog.identitydesign.us/how-to-change-bootstrap-carousel-slider-animation-or-remove/</link>
					<comments>https://blog.identitydesign.us/how-to-change-bootstrap-carousel-slider-animation-or-remove/#respond</comments>
		
		<dc:creator><![CDATA[djemals]]></dc:creator>
		<pubDate>Sat, 18 Sep 2021 00:07:29 +0000</pubDate>
				<category><![CDATA[Bootstrap]]></category>
		<category><![CDATA[HTML/CSS/PHP/JavaScripts]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<guid isPermaLink="false">http://blog.identitydesign.us/?p=1549</guid>

					<description><![CDATA[<p>The sliding effect is the default animation for Bootstrap Carousel. Below code is how a general Bootstrap Carousel Slider would look like. &#60;div id=&#34;carousel&#34; class=&#34;carousel slide&#34; data-ride=&#34;carousel&#34;&#62; &#60;div class=&#34;carousel-inner&#34;&#62; &#60;div class=&#34;carousel-item active&#34;&#62; &#60;img src=&#34;https://blog.identitydesign.us/img/bg1.jpg&#34;&#62; &#60;/div&#62; &#60;div class=&#34;carousel-item&#34;&#62; &#60;img src=&#34;https://blog.identitydesign.us/img/bg2.jpg&#34;&#62; &#60;/div&#62; &#60;div class=&#34;carousel-item&#34;&#62; &#60;img src=&#34;https://blog.identitydesign.us/img/bg3.jpg&#34;&#62; &#60;/div&#62; &#60;/div&#62; &#60;/div&#62; Change Sliding Animation to a &#8220;Fade&#8221; Effect Add [&#8230;]</p>
<p>The post <a href="https://blog.identitydesign.us/how-to-change-bootstrap-carousel-slider-animation-or-remove/">How to Change Bootstrap Carousel Slider Animation to Fade Out Effect or Remove the Sliding Effect</a> first appeared on <a href="https://blog.identitydesign.us">identity design</a>.</p>
<p>The post <a href="https://blog.identitydesign.us/how-to-change-bootstrap-carousel-slider-animation-or-remove/">How to Change Bootstrap Carousel Slider Animation to Fade Out Effect or Remove the Sliding Effect</a> appeared first on <a href="https://blog.identitydesign.us">identity design</a>.</p>
<div class='yarpp yarpp-related yarpp-related-rss yarpp-template-list'>
<!-- YARPP List -->
<h3>Related posts:</h3><ol>
<li><a href="https://blog.identitydesign.us/bootstrap-carousel-slider-transition-speed-time-interval/" rel="bookmark" title="How to Change Bootstrap Carousel Slider Transition Speed Time Interval">How to Change Bootstrap Carousel Slider Transition Speed Time Interval</a></li>
<li><a href="https://blog.identitydesign.us/how-to-remove-copyright-text-in-wp-bootstrap-starter-theme/" rel="bookmark" title="How to Remove &#8220;Bootstrap WordPress Theme&#8221; on WP Bootstrap Starter Template">How to Remove &#8220;Bootstrap WordPress Theme&#8221; on WP Bootstrap Starter Template</a></li>
<li><a href="https://blog.identitydesign.us/freebies-merry-christmas-gif-animation-template-psd/" rel="bookmark" title="Freebies: Merry Christmas Gif Animation Template (PSD)">Freebies: Merry Christmas Gif Animation Template (PSD)</a></li>
</ol>
</div>
]]></description>
										<content:encoded><![CDATA[<p>The sliding effect is the default animation for Bootstrap Carousel. Below code is how a general Bootstrap Carousel Slider would look like.</p>
<pre>&lt;div id=&quot;carousel&quot; class=&quot;carousel slide&quot; data-ride=&quot;carousel&quot;&gt;
  &lt;div class=&quot;carousel-inner&quot;&gt;
    &lt;div class=&quot;carousel-item active&quot;&gt;
      &lt;img src=&quot;https://blog.identitydesign.us/img/bg1.jpg&quot;&gt;
    &lt;/div&gt;
    &lt;div class=&quot;carousel-item&quot;&gt;
      &lt;img src=&quot;https://blog.identitydesign.us/img/bg2.jpg&quot;&gt;
    &lt;/div&gt;
    &lt;div class=&quot;carousel-item&quot;&gt;
      &lt;img src=&quot;https://blog.identitydesign.us/img/bg3.jpg&quot;&gt;
    &lt;/div&gt;
  &lt;/div&gt;
&lt;/div&gt;
</pre>

<h3>Change Sliding Animation to a &#8220;Fade&#8221; Effect</h3>
<p>Add a class name, <code>carousel-face</code> right after <code>slide</code>. You can also add <code>data-interval="3000"</code> to control the speed of the animation. 1000 is 1 second, and 3000 is 3 seconds. You can replace &#8216;3000&#8217; with your desired slider speed.</p>
<pre>&lt;div id=&quot;carousel&quot; class=&quot;carousel slide carousel-fade&quot; data-ride=&quot;carousel&quot; data-interval=&quot;3000&quot;&gt;</pre>
<h3>Remove the Sliding Effect Completely</h3>
<p>You can completely remove the sliding effect on your carousel. Simply remove <code>slide</code> from the class of <code>div</code>.</p>
<pre>&lt;div id=&quot;carousel&quot; class=&quot;carousel&quot; data-ride=&quot;carousel&quot;&gt;</pre><p>The post <a href="https://blog.identitydesign.us/how-to-change-bootstrap-carousel-slider-animation-or-remove/">How to Change Bootstrap Carousel Slider Animation to Fade Out Effect or Remove the Sliding Effect</a> first appeared on <a href="https://blog.identitydesign.us">identity design</a>.</p><p>The post <a href="https://blog.identitydesign.us/how-to-change-bootstrap-carousel-slider-animation-or-remove/">How to Change Bootstrap Carousel Slider Animation to Fade Out Effect or Remove the Sliding Effect</a> appeared first on <a href="https://blog.identitydesign.us">identity design</a>.</p>
<div class='yarpp yarpp-related yarpp-related-rss yarpp-template-list'>
<!-- YARPP List -->
<h3>Related posts:</h3><ol>
<li><a href="https://blog.identitydesign.us/bootstrap-carousel-slider-transition-speed-time-interval/" rel="bookmark" title="How to Change Bootstrap Carousel Slider Transition Speed Time Interval">How to Change Bootstrap Carousel Slider Transition Speed Time Interval</a></li>
<li><a href="https://blog.identitydesign.us/how-to-remove-copyright-text-in-wp-bootstrap-starter-theme/" rel="bookmark" title="How to Remove &#8220;Bootstrap WordPress Theme&#8221; on WP Bootstrap Starter Template">How to Remove &#8220;Bootstrap WordPress Theme&#8221; on WP Bootstrap Starter Template</a></li>
<li><a href="https://blog.identitydesign.us/freebies-merry-christmas-gif-animation-template-psd/" rel="bookmark" title="Freebies: Merry Christmas Gif Animation Template (PSD)">Freebies: Merry Christmas Gif Animation Template (PSD)</a></li>
</ol>
</div>
]]></content:encoded>
					
					<wfw:commentRss>https://blog.identitydesign.us/how-to-change-bootstrap-carousel-slider-animation-or-remove/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Woocommerce Conflicts with Bootstrap 4 in WordPress</title>
		<link>https://blog.identitydesign.us/woocommerce-conflicts-with-bootstrap4/</link>
					<comments>https://blog.identitydesign.us/woocommerce-conflicts-with-bootstrap4/#respond</comments>
		
		<dc:creator><![CDATA[djemals]]></dc:creator>
		<pubDate>Mon, 18 Jan 2021 09:48:36 +0000</pubDate>
				<category><![CDATA[backend]]></category>
		<category><![CDATA[Bootstrap]]></category>
		<category><![CDATA[HTML/CSS/PHP/JavaScripts]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Website]]></category>
		<guid isPermaLink="false">http://blog.identitydesign.us/?p=1369</guid>

					<description><![CDATA[<p>I can&#8217;t give up on either functionalities: Woocommerce and Bootstrap. A conflict occurs with the wonky looking layout when using Woocommerce and Bootstrap 4 together. See the breakdown when you are on the checkout page. Below a few CSS lines would resolve the wonkiness issue really quick. Now I can enjoy both! CSS .woocommerce .col-1, [&#8230;]</p>
<p>The post <a href="https://blog.identitydesign.us/woocommerce-conflicts-with-bootstrap4/">Woocommerce Conflicts with Bootstrap 4 in WordPress</a> first appeared on <a href="https://blog.identitydesign.us">identity design</a>.</p>
<p>The post <a href="https://blog.identitydesign.us/woocommerce-conflicts-with-bootstrap4/">Woocommerce Conflicts with Bootstrap 4 in WordPress</a> appeared first on <a href="https://blog.identitydesign.us">identity design</a>.</p>
<div class='yarpp yarpp-related yarpp-related-rss yarpp-template-list'>
<!-- YARPP List -->
<h3>Related posts:</h3><ol>
<li><a href="https://blog.identitydesign.us/add-bootstrap-on-wordpress-website-using-plugin/" rel="bookmark" title="Add Bootstrap to Your WordPress Website with a Plugin">Add Bootstrap to Your WordPress Website with a Plugin</a></li>
<li><a href="https://blog.identitydesign.us/remove-copyright-storefront/" rel="bookmark" title="Remove &#8216;Built with Storefront &#038; WooCommerce&#8217; with CSS lines on WordPress Storefront Theme">Remove &#8216;Built with Storefront &#038; WooCommerce&#8217; with CSS lines on WordPress Storefront Theme</a></li>
<li><a href="https://blog.identitydesign.us/how-to-remove-copyright-text-in-wp-bootstrap-starter-theme/" rel="bookmark" title="How to Remove &#8220;Bootstrap WordPress Theme&#8221; on WP Bootstrap Starter Template">How to Remove &#8220;Bootstrap WordPress Theme&#8221; on WP Bootstrap Starter Template</a></li>
</ol>
</div>
]]></description>
										<content:encoded><![CDATA[<p>I can&#8217;t give up on either functionalities: Woocommerce and Bootstrap. A conflict occurs with the wonky looking layout when using Woocommerce and Bootstrap 4 together. See the breakdown when you are on the checkout page. Below a few CSS lines would resolve the wonkiness issue really quick. Now I can enjoy both!</p>
<h2>CSS</h2>
<pre>
.woocommerce .col-1, .woocommerce .col-2 { 
    max-width:none; 
}
.woocommerce-billing-fields .form-row, .woocommerce-shipping-fields .form-row,.woocommerce form .form-row { 
    display: block; 
}
.woocommerce .col2-set .col-1, .woocommerce-page .col2-set .col-1,.woocommerce .col2-set .col-2, .woocommerce-page .col2-set .col-2 { 
    max-width: unset; 
}
</pre>

<div class="clear"></div><p>The post <a href="https://blog.identitydesign.us/woocommerce-conflicts-with-bootstrap4/">Woocommerce Conflicts with Bootstrap 4 in WordPress</a> first appeared on <a href="https://blog.identitydesign.us">identity design</a>.</p><p>The post <a href="https://blog.identitydesign.us/woocommerce-conflicts-with-bootstrap4/">Woocommerce Conflicts with Bootstrap 4 in WordPress</a> appeared first on <a href="https://blog.identitydesign.us">identity design</a>.</p>
<div class='yarpp yarpp-related yarpp-related-rss yarpp-template-list'>
<!-- YARPP List -->
<h3>Related posts:</h3><ol>
<li><a href="https://blog.identitydesign.us/add-bootstrap-on-wordpress-website-using-plugin/" rel="bookmark" title="Add Bootstrap to Your WordPress Website with a Plugin">Add Bootstrap to Your WordPress Website with a Plugin</a></li>
<li><a href="https://blog.identitydesign.us/remove-copyright-storefront/" rel="bookmark" title="Remove &#8216;Built with Storefront &#038; WooCommerce&#8217; with CSS lines on WordPress Storefront Theme">Remove &#8216;Built with Storefront &#038; WooCommerce&#8217; with CSS lines on WordPress Storefront Theme</a></li>
<li><a href="https://blog.identitydesign.us/how-to-remove-copyright-text-in-wp-bootstrap-starter-theme/" rel="bookmark" title="How to Remove &#8220;Bootstrap WordPress Theme&#8221; on WP Bootstrap Starter Template">How to Remove &#8220;Bootstrap WordPress Theme&#8221; on WP Bootstrap Starter Template</a></li>
</ol>
</div>
]]></content:encoded>
					
					<wfw:commentRss>https://blog.identitydesign.us/woocommerce-conflicts-with-bootstrap4/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Add Bootstrap to Your WordPress Website with a Plugin</title>
		<link>https://blog.identitydesign.us/add-bootstrap-on-wordpress-website-using-plugin/</link>
					<comments>https://blog.identitydesign.us/add-bootstrap-on-wordpress-website-using-plugin/#respond</comments>
		
		<dc:creator><![CDATA[djemals]]></dc:creator>
		<pubDate>Sat, 02 Jan 2021 07:13:11 +0000</pubDate>
				<category><![CDATA[backend]]></category>
		<category><![CDATA[Bootstrap]]></category>
		<category><![CDATA[HTML/CSS/PHP/JavaScripts]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Website]]></category>
		<guid isPermaLink="false">http://blog.identitydesign.us/?p=1351</guid>

					<description><![CDATA[<p>There are a few ways to install Bootstrap 4 to your WordPress website for free. One of the popular choices is to activate a Bootstrap 4 pre-installed theme, but this can be little complicated or not efficient as you might want to use a woocommerce compatible theme or some themes of your favorite. I recommend [&#8230;]</p>
<p>The post <a href="https://blog.identitydesign.us/add-bootstrap-on-wordpress-website-using-plugin/">Add Bootstrap to Your WordPress Website with a Plugin</a> first appeared on <a href="https://blog.identitydesign.us">identity design</a>.</p>
<p>The post <a href="https://blog.identitydesign.us/add-bootstrap-on-wordpress-website-using-plugin/">Add Bootstrap to Your WordPress Website with a Plugin</a> appeared first on <a href="https://blog.identitydesign.us">identity design</a>.</p>
<div class='yarpp yarpp-related yarpp-related-rss yarpp-template-list'>
<!-- YARPP List -->
<h3>Related posts:</h3><ol>
<li><a href="https://blog.identitydesign.us/all-in-one-bootstrap-html-template/" rel="bookmark" title="All-in-one Bootstrap 4 / Jquery Responsive HTML Template">All-in-one Bootstrap 4 / Jquery Responsive HTML Template</a></li>
<li><a href="https://blog.identitydesign.us/how-to-remove-copyright-text-in-wp-bootstrap-starter-theme/" rel="bookmark" title="How to Remove &#8220;Bootstrap WordPress Theme&#8221; on WP Bootstrap Starter Template">How to Remove &#8220;Bootstrap WordPress Theme&#8221; on WP Bootstrap Starter Template</a></li>
<li><a href="https://blog.identitydesign.us/add-copyright-css-wordpress/" rel="bookmark" title="Add a Copyright Text / Info Using CSS on WordPress Websites">Add a Copyright Text / Info Using CSS on WordPress Websites</a></li>
</ol>
</div>
]]></description>
										<content:encoded><![CDATA[<p>There are a few ways to install <strong>Bootstrap 4</strong> to your WordPress website for free. One of the popular choices is to activate a Bootstrap 4 pre-installed theme, but this can be little complicated or not efficient as you might want to use a woocommerce compatible theme or some themes of your favorite.</p>
<p>I recommend to use the &#8220;Simple Custom CSS and JS&#8221; plugin by <a href="https://www.silkypress.com/" target="_blank" rel="noopener">Silkypress.com</a> and add 3 lines to your html. By doing this, you have a freedom to choose any theme of your favorite and enjoy Bootstrap for free.</p>
<p><em>Let me show you how to add in steps.</em></p>
<ol class="circ-list">
<li>Go to the admin page of your WordPress website <code>http://YOUR-DOMAIN.com/wp-admin</code></li>
<li>Go to &#8220;Plugins&#8221; -> &#8220;Add New&#8221; -> search for &#8220;Simple Custom CSS and JS&#8221; plugin. Install the plugin and make it active.</li>
<li><em>(You will see &#8220;Custom CSS &#038; JS&#8221; on the sidebar)</em>, go to the plugin menu called <strong>Custom CSS &#038; JS</strong> -> &#8220;Add Custom HTML&#8221;</li>
<li>Name it as &#8220;Header&#8221;, check the radio buttons on <code>Header</code> and <code>In Frontend</code>.</li>
<li>Add below CSS line into the code field and publish.
<pre>&lt;link rel=&quot;stylesheet&quot; href=&quot;https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css&quot; integrity=&quot;sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T&quot; crossorigin=&quot;anonymous&quot;&gt;</pre>
</li>
<li>Create another &#8220;Add Custom HTML&#8221; and name it &#8220;Footer&#8221;. Check the radio buttons on <code>Footer</code> and <code>In Frontend</code></li>
<li>Add below JS lines into the code field and publish.
<pre>&lt;script src=&quot;https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js&quot;&gt;&lt;/script&gt;
&lt;script src=&quot;https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js&quot; integrity=&quot;sha384-JjSmVgyd0p3pXB1rRibZUAYoIIy6OrQ6VrjIEaFf/nJGzIxFDsf4x0xIM+B07jRM&quot; crossorigin=&quot;anonymous&quot;&gt;&lt;/script&gt;</pre>
</li>
</ol>
<p>Now you are ready with Bootstrap 4 on your WordPress website. Enjoy!</p>

<div class="clear"></div><p>The post <a href="https://blog.identitydesign.us/add-bootstrap-on-wordpress-website-using-plugin/">Add Bootstrap to Your WordPress Website with a Plugin</a> first appeared on <a href="https://blog.identitydesign.us">identity design</a>.</p><p>The post <a href="https://blog.identitydesign.us/add-bootstrap-on-wordpress-website-using-plugin/">Add Bootstrap to Your WordPress Website with a Plugin</a> appeared first on <a href="https://blog.identitydesign.us">identity design</a>.</p>
<div class='yarpp yarpp-related yarpp-related-rss yarpp-template-list'>
<!-- YARPP List -->
<h3>Related posts:</h3><ol>
<li><a href="https://blog.identitydesign.us/all-in-one-bootstrap-html-template/" rel="bookmark" title="All-in-one Bootstrap 4 / Jquery Responsive HTML Template">All-in-one Bootstrap 4 / Jquery Responsive HTML Template</a></li>
<li><a href="https://blog.identitydesign.us/how-to-remove-copyright-text-in-wp-bootstrap-starter-theme/" rel="bookmark" title="How to Remove &#8220;Bootstrap WordPress Theme&#8221; on WP Bootstrap Starter Template">How to Remove &#8220;Bootstrap WordPress Theme&#8221; on WP Bootstrap Starter Template</a></li>
<li><a href="https://blog.identitydesign.us/add-copyright-css-wordpress/" rel="bookmark" title="Add a Copyright Text / Info Using CSS on WordPress Websites">Add a Copyright Text / Info Using CSS on WordPress Websites</a></li>
</ol>
</div>
]]></content:encoded>
					
					<wfw:commentRss>https://blog.identitydesign.us/add-bootstrap-on-wordpress-website-using-plugin/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Accordion Partial Collapse &#038; Expand Demo Template for Bootstrap</title>
		<link>https://blog.identitydesign.us/accordion-partial-collapse-expand-demo-template-bootstrap/</link>
					<comments>https://blog.identitydesign.us/accordion-partial-collapse-expand-demo-template-bootstrap/#respond</comments>
		
		<dc:creator><![CDATA[djemals]]></dc:creator>
		<pubDate>Mon, 30 Nov 2020 05:20:22 +0000</pubDate>
				<category><![CDATA[backend]]></category>
		<category><![CDATA[Bootstrap]]></category>
		<category><![CDATA[HTML/CSS/PHP/JavaScripts]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Website]]></category>
		<guid isPermaLink="false">http://blog.identitydesign.us/?p=1328</guid>

					<description><![CDATA[<p>Bootstrap has provided accordion &#8220;Collapse&#8221; JavaScript plugins for Bootstrap users, but has no explanation making the accordion partially expand and collapse. Below is the demo/template to build your accordion partially expand and collapse within the given height. The HTML includes CDN (content delivery network) to connect Bootstrap/Jquery&#8217;s CSS and JavaScript files, so it&#8217;s ready to [&#8230;]</p>
<p>The post <a href="https://blog.identitydesign.us/accordion-partial-collapse-expand-demo-template-bootstrap/">Accordion Partial Collapse & Expand Demo Template for Bootstrap</a> first appeared on <a href="https://blog.identitydesign.us">identity design</a>.</p>
<p>The post <a href="https://blog.identitydesign.us/accordion-partial-collapse-expand-demo-template-bootstrap/">Accordion Partial Collapse &#038; Expand Demo Template for Bootstrap</a> appeared first on <a href="https://blog.identitydesign.us">identity design</a>.</p>
<div class='yarpp yarpp-related yarpp-related-rss yarpp-template-list'>
<!-- YARPP List -->
<h3>Related posts:</h3><ol>
<li><a href="https://blog.identitydesign.us/all-in-one-bootstrap-html-template/" rel="bookmark" title="All-in-one Bootstrap 4 / Jquery Responsive HTML Template">All-in-one Bootstrap 4 / Jquery Responsive HTML Template</a></li>
<li><a href="https://blog.identitydesign.us/how-to-make-bootstrap-nav-top-level-menu-clickable-with-dropdowns/" rel="bookmark" title="How to Make Bootstrap Nav Top Level Menu Clickable With Dropdowns">How to Make Bootstrap Nav Top Level Menu Clickable With Dropdowns</a></li>
<li><a href="https://blog.identitydesign.us/how-to-remove-copyright-text-in-wp-bootstrap-starter-theme/" rel="bookmark" title="How to Remove &#8220;Bootstrap WordPress Theme&#8221; on WP Bootstrap Starter Template">How to Remove &#8220;Bootstrap WordPress Theme&#8221; on WP Bootstrap Starter Template</a></li>
</ol>
</div>
]]></description>
										<content:encoded><![CDATA[<p>Bootstrap has provided accordion &#8220;Collapse&#8221; JavaScript plugins for Bootstrap users, but has no explanation making the accordion partially expand and collapse.   </p>
<p>Below is the demo/template to build your accordion partially expand and collapse within the given height. The HTML includes CDN (content delivery network) to connect Bootstrap/Jquery&#8217;s CSS and JavaScript files, so it&#8217;s ready to be used! Click to download below.</p>
<h2>DEMO: How It Looks</h2>
<p><iframe src="https://blog.identitydesign.us/wp-content/uploads/2020/11/bootstrap4-partial-collapse-demo.html" style="height:400px;width:560px" title="Iframe Demo"></iframe></p>
<h2>HTML</h2>
<pre>
&lt;div class=&quot;accordion partialcollapse&quot; id=&quot;partialcollapse&quot;&gt;
  &lt;div id=&quot;collapse-one&quot; class=&quot;collapse&quot; aria-labelledby=&quot;headingOne&quot; data-parent=&quot;#partialcollapse&quot;&gt;
    &lt;h4&gt;Accordion Title&lt;/h4&gt;
    &lt;p&gt;Accordion content goes here&lt;/p&gt;
  &lt;/div&gt;
  &lt;button class=&quot;btn btn-link&quot; type=&quot;button&quot; data-toggle=&quot;collapse&quot; data-target=&quot;#collapse-one&quot; aria-expanded=&quot;true&quot; aria-controls=&quot;collapse-one&quot;&gt; &lt;/button&gt;
&lt;/div&gt;
</pre>
<h2>CSS</h2>
<pre>
.partialcollapse .collapse {
    display: block;
    height: 120px !important;
    overflow: hidden;
}
.partialcollapse .collapsing {
    height: inherit!important;
}
.partialcollapse .collapse.show {
    height: auto !important;
} 
.partialcollapse .collapse+button:after {
    content: '+ Show More';
}
.partialcollapse .show+button:after, .partialcollapse .collapsing+button:after {
    content: '- Show Less';
}
</pre>

<div class="clear"></div>
<div class="btn-group"><a class="btn" onclick="_gaq.push(['_trackEvent', 'Freebies', 'Accordion-partial-collapse', 'https://blog.identitydesign.us/wp-content/uploads/2020/11/bootstrap4-partial-collapse.html.zip']);" href="https://blog.identitydesign.us/wp-content/uploads/2020/11/bootstrap4-partial-collapse.html.zip">Download HTML</a></div><p>The post <a href="https://blog.identitydesign.us/accordion-partial-collapse-expand-demo-template-bootstrap/">Accordion Partial Collapse & Expand Demo Template for Bootstrap</a> first appeared on <a href="https://blog.identitydesign.us">identity design</a>.</p><p>The post <a href="https://blog.identitydesign.us/accordion-partial-collapse-expand-demo-template-bootstrap/">Accordion Partial Collapse &#038; Expand Demo Template for Bootstrap</a> appeared first on <a href="https://blog.identitydesign.us">identity design</a>.</p>
<div class='yarpp yarpp-related yarpp-related-rss yarpp-template-list'>
<!-- YARPP List -->
<h3>Related posts:</h3><ol>
<li><a href="https://blog.identitydesign.us/all-in-one-bootstrap-html-template/" rel="bookmark" title="All-in-one Bootstrap 4 / Jquery Responsive HTML Template">All-in-one Bootstrap 4 / Jquery Responsive HTML Template</a></li>
<li><a href="https://blog.identitydesign.us/how-to-make-bootstrap-nav-top-level-menu-clickable-with-dropdowns/" rel="bookmark" title="How to Make Bootstrap Nav Top Level Menu Clickable With Dropdowns">How to Make Bootstrap Nav Top Level Menu Clickable With Dropdowns</a></li>
<li><a href="https://blog.identitydesign.us/how-to-remove-copyright-text-in-wp-bootstrap-starter-theme/" rel="bookmark" title="How to Remove &#8220;Bootstrap WordPress Theme&#8221; on WP Bootstrap Starter Template">How to Remove &#8220;Bootstrap WordPress Theme&#8221; on WP Bootstrap Starter Template</a></li>
</ol>
</div>
]]></content:encoded>
					
					<wfw:commentRss>https://blog.identitydesign.us/accordion-partial-collapse-expand-demo-template-bootstrap/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>All-in-one Bootstrap 4 / Jquery Responsive HTML Template</title>
		<link>https://blog.identitydesign.us/all-in-one-bootstrap-html-template/</link>
					<comments>https://blog.identitydesign.us/all-in-one-bootstrap-html-template/#respond</comments>
		
		<dc:creator><![CDATA[djemals]]></dc:creator>
		<pubDate>Fri, 16 Oct 2020 09:52:23 +0000</pubDate>
				<category><![CDATA[backend]]></category>
		<category><![CDATA[Bootstrap]]></category>
		<category><![CDATA[Freebies]]></category>
		<category><![CDATA[HTML/CSS/PHP/JavaScripts]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Website]]></category>
		<guid isPermaLink="false">http://blog.identitydesign.us/?p=1318</guid>

					<description><![CDATA[<p>This is the All-in-one HTML Template to build your Bootstrap 4 (ver. 4.5.2) website. The HTML includes CDN (content delivery network) to connect Bootstrap/Jquery&#8217;s CSS and JavaScript files, so you literally need this single HTML to run. HTML &#60;!DOCTYPE html&#62; &#60;html lang="en"&#62; &#60;head&#62; &#60;meta charset="utf-8"&#62; &#60;meta http-equiv="X-UA-Compatible" content="IE=edge"&#62; &#60;meta name="viewport" content="width=device-width, initial-scale=1"&#62; &#60;meta name="robots" content="index, [&#8230;]</p>
<p>The post <a href="https://blog.identitydesign.us/all-in-one-bootstrap-html-template/">All-in-one Bootstrap 4 / Jquery Responsive HTML Template</a> first appeared on <a href="https://blog.identitydesign.us">identity design</a>.</p>
<p>The post <a href="https://blog.identitydesign.us/all-in-one-bootstrap-html-template/">All-in-one Bootstrap 4 / Jquery Responsive HTML Template</a> appeared first on <a href="https://blog.identitydesign.us">identity design</a>.</p>
<div class='yarpp yarpp-related yarpp-related-rss yarpp-template-list'>
<!-- YARPP List -->
<h3>Related posts:</h3><ol>
<li><a href="https://blog.identitydesign.us/make-clickable-link-javascript-instead-html-anchor/" rel="bookmark" title="Make Clickable Link with JavaScript instead of HTML Anchor">Make Clickable Link with JavaScript instead of HTML Anchor</a></li>
<li><a href="https://blog.identitydesign.us/accordion-partial-collapse-expand-demo-template-bootstrap/" rel="bookmark" title="Accordion Partial Collapse &#038; Expand Demo Template for Bootstrap">Accordion Partial Collapse &#038; Expand Demo Template for Bootstrap</a></li>
<li><a href="https://blog.identitydesign.us/bootstrap-carousel-slider-transition-speed-time-interval/" rel="bookmark" title="How to Change Bootstrap Carousel Slider Transition Speed Time Interval">How to Change Bootstrap Carousel Slider Transition Speed Time Interval</a></li>
</ol>
</div>
]]></description>
										<content:encoded><![CDATA[<p>This is the All-in-one HTML Template to build your Bootstrap 4 (ver. 4.5.2) website. The HTML includes CDN (content delivery network) to connect Bootstrap/Jquery&#8217;s CSS and JavaScript files, so you literally need this single HTML to run.</p>
<h2>HTML</h2>
<pre>
&lt;!DOCTYPE html&gt;
&lt;html lang="en"&gt;
&lt;head&gt;  
&lt;meta charset="utf-8"&gt;
&lt;meta http-equiv="X-UA-Compatible" content="IE=edge"&gt;
&lt;meta name="viewport" content="width=device-width, initial-scale=1"&gt;
&lt;meta name="robots" content="index, follow"/&gt;
	
&lt;!-- Bootstrap --&gt;
&lt;link href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css" rel="stylesheet"&gt;
    
&lt;!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries --&gt;
&lt;!-- WARNING: Respond.js doesn't work if you view the page via file:// --&gt;
&lt;!--[if lt IE 9]&gt;
&lt;script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"&gt;&lt;/script&gt;
&lt;script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"&gt;&lt;/script&gt;
&lt;![endif]--&gt;
&lt;/head&gt;
    
&lt;body&gt;
&lt;p&gt;Write your code here.&lt;/p&gt;
 
&lt;!-- jQuery (necessary for Bootstrap's JavaScript plugins) --&gt;
&lt;script src="https://code.jquery.com/jquery-3.5.1.js" integrity="sha256-QWo7LDvxbWT2tbbQ97B53yJnYU3WhH/C8ycbRAkjPDc=" crossorigin="anonymous"&gt;&lt;/script&gt;
	
&lt;!-- Include all compiled plugins (below), or include individual files as needed --&gt;
&lt;script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"&gt;&lt;/script&gt;
 
&lt;/body&gt;
&lt;/html&gt;
</pre>

<div class="clear"></div>
<div class="btn-group"><a class="btn" onclick="_gaq.push(['_trackEvent', 'Freebies', 'All-in-one-bootstrap-html', 'https://blog.identitydesign.us/wp-content/uploads/2020/10/all-in-one-bootstrap4.html.zip']);" href="https://blog.identitydesign.us/wp-content/uploads/2020/10/all-in-one-bootstrap4.html.zip">Download HTML</a></div><p>The post <a href="https://blog.identitydesign.us/all-in-one-bootstrap-html-template/">All-in-one Bootstrap 4 / Jquery Responsive HTML Template</a> first appeared on <a href="https://blog.identitydesign.us">identity design</a>.</p><p>The post <a href="https://blog.identitydesign.us/all-in-one-bootstrap-html-template/">All-in-one Bootstrap 4 / Jquery Responsive HTML Template</a> appeared first on <a href="https://blog.identitydesign.us">identity design</a>.</p>
<div class='yarpp yarpp-related yarpp-related-rss yarpp-template-list'>
<!-- YARPP List -->
<h3>Related posts:</h3><ol>
<li><a href="https://blog.identitydesign.us/make-clickable-link-javascript-instead-html-anchor/" rel="bookmark" title="Make Clickable Link with JavaScript instead of HTML Anchor">Make Clickable Link with JavaScript instead of HTML Anchor</a></li>
<li><a href="https://blog.identitydesign.us/accordion-partial-collapse-expand-demo-template-bootstrap/" rel="bookmark" title="Accordion Partial Collapse &#038; Expand Demo Template for Bootstrap">Accordion Partial Collapse &#038; Expand Demo Template for Bootstrap</a></li>
<li><a href="https://blog.identitydesign.us/bootstrap-carousel-slider-transition-speed-time-interval/" rel="bookmark" title="How to Change Bootstrap Carousel Slider Transition Speed Time Interval">How to Change Bootstrap Carousel Slider Transition Speed Time Interval</a></li>
</ol>
</div>
]]></content:encoded>
					
					<wfw:commentRss>https://blog.identitydesign.us/all-in-one-bootstrap-html-template/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Bootstrap Uneven Column Heights Issue in Layout Grid System</title>
		<link>https://blog.identitydesign.us/bootstrap-uneven-column-heights/</link>
					<comments>https://blog.identitydesign.us/bootstrap-uneven-column-heights/#respond</comments>
		
		<dc:creator><![CDATA[djemals]]></dc:creator>
		<pubDate>Wed, 17 Jun 2020 09:11:41 +0000</pubDate>
				<category><![CDATA[Bootstrap]]></category>
		<category><![CDATA[CSSonly]]></category>
		<category><![CDATA[How-To]]></category>
		<category><![CDATA[HTML/CSS/PHP/JavaScripts]]></category>
		<category><![CDATA[Website]]></category>
		<category><![CDATA[Wordpress]]></category>
		<guid isPermaLink="false">http://blog.identitydesign.us/?p=1250</guid>

					<description><![CDATA[<p>Bootstrap columns could go wrong and look uneven when columns have different heights. Use float: left to clear out the float properties and to stack blocks to the closest side. .col-lg-3:nth-child(5n) { clear: left; } If you have multiple blocks (for instance, 4-column layout) use float: left pseudo-element to apply the class every 5th element [&#8230;]</p>
<p>The post <a href="https://blog.identitydesign.us/bootstrap-uneven-column-heights/">Bootstrap Uneven Column Heights Issue in Layout Grid System</a> first appeared on <a href="https://blog.identitydesign.us">identity design</a>.</p>
<p>The post <a href="https://blog.identitydesign.us/bootstrap-uneven-column-heights/">Bootstrap Uneven Column Heights Issue in Layout Grid System</a> appeared first on <a href="https://blog.identitydesign.us">identity design</a>.</p>
<div class='yarpp yarpp-related yarpp-related-rss yarpp-template-list'>
<!-- YARPP List -->
<h3>Related posts:</h3><ol>
<li><a href="https://blog.identitydesign.us/table-column-width-setting-css/" rel="bookmark" title="CSS: A Simple Way to Set the Table Column Width">CSS: A Simple Way to Set the Table Column Width</a></li>
<li><a href="https://blog.identitydesign.us/free-indesign-template-letter-size-3-column-flyer-inddpdf/" rel="bookmark" title="Free InDesign Template: Letter-Size 3 Column Flyer (INDD/PDF)">Free InDesign Template: Letter-Size 3 Column Flyer (INDD/PDF)</a></li>
<li><a href="https://blog.identitydesign.us/how-to-remove-copyright-text-in-wp-bootstrap-starter-theme/" rel="bookmark" title="How to Remove &#8220;Bootstrap WordPress Theme&#8221; on WP Bootstrap Starter Template">How to Remove &#8220;Bootstrap WordPress Theme&#8221; on WP Bootstrap Starter Template</a></li>
</ol>
</div>
]]></description>
										<content:encoded><![CDATA[<p>Bootstrap columns could go wrong and look uneven when columns have different heights. Use <code>float: left</code> to clear out the float properties and to stack blocks to the closest side.</p>
<pre>
.col-lg-3:nth-child(5n) { clear: left; }
</pre>
<p>If you have multiple blocks (for instance, 4-column layout) use <code>float: left</code> pseudo-element to apply the class every 5th element <code>5n</code>.</p><p>The post <a href="https://blog.identitydesign.us/bootstrap-uneven-column-heights/">Bootstrap Uneven Column Heights Issue in Layout Grid System</a> first appeared on <a href="https://blog.identitydesign.us">identity design</a>.</p><p>The post <a href="https://blog.identitydesign.us/bootstrap-uneven-column-heights/">Bootstrap Uneven Column Heights Issue in Layout Grid System</a> appeared first on <a href="https://blog.identitydesign.us">identity design</a>.</p>
<div class='yarpp yarpp-related yarpp-related-rss yarpp-template-list'>
<!-- YARPP List -->
<h3>Related posts:</h3><ol>
<li><a href="https://blog.identitydesign.us/table-column-width-setting-css/" rel="bookmark" title="CSS: A Simple Way to Set the Table Column Width">CSS: A Simple Way to Set the Table Column Width</a></li>
<li><a href="https://blog.identitydesign.us/free-indesign-template-letter-size-3-column-flyer-inddpdf/" rel="bookmark" title="Free InDesign Template: Letter-Size 3 Column Flyer (INDD/PDF)">Free InDesign Template: Letter-Size 3 Column Flyer (INDD/PDF)</a></li>
<li><a href="https://blog.identitydesign.us/how-to-remove-copyright-text-in-wp-bootstrap-starter-theme/" rel="bookmark" title="How to Remove &#8220;Bootstrap WordPress Theme&#8221; on WP Bootstrap Starter Template">How to Remove &#8220;Bootstrap WordPress Theme&#8221; on WP Bootstrap Starter Template</a></li>
</ol>
</div>
]]></content:encoded>
					
					<wfw:commentRss>https://blog.identitydesign.us/bootstrap-uneven-column-heights/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>CSS Only: Pop-up Modal Lightbox on Page Load</title>
		<link>https://blog.identitydesign.us/css-only-modal-lightbox-pop-up-on-page-load/</link>
					<comments>https://blog.identitydesign.us/css-only-modal-lightbox-pop-up-on-page-load/#respond</comments>
		
		<dc:creator><![CDATA[djemals]]></dc:creator>
		<pubDate>Fri, 10 Apr 2020 18:24:30 +0000</pubDate>
				<category><![CDATA[Bootstrap]]></category>
		<category><![CDATA[CSSonly]]></category>
		<category><![CDATA[How-To]]></category>
		<category><![CDATA[HTML/CSS/PHP/JavaScripts]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Website]]></category>
		<category><![CDATA[Wordpress]]></category>
		<guid isPermaLink="false">http://blog.identitydesign.us/?p=1232</guid>

					<description><![CDATA[<p>I&#8217;ve shared a way to add a pop-up or modal lightbox with CSS only on my earlier post, Easy Modal Lightbox Pop-Up. I&#8217;ve received many request how to make this modal pop up on page load instead of using a button. So, here&#8217;s how-to: &#215; Pop-up modal/lightbox on page load You are seeing this because [&#8230;]</p>
<p>The post <a href="https://blog.identitydesign.us/css-only-modal-lightbox-pop-up-on-page-load/">CSS Only: Pop-up Modal Lightbox on Page Load</a> first appeared on <a href="https://blog.identitydesign.us">identity design</a>.</p>
<p>The post <a href="https://blog.identitydesign.us/css-only-modal-lightbox-pop-up-on-page-load/">CSS Only: Pop-up Modal Lightbox on Page Load</a> appeared first on <a href="https://blog.identitydesign.us">identity design</a>.</p>
<div class='yarpp yarpp-related yarpp-related-rss yarpp-template-list'>
<!-- YARPP List -->
<h3>Related posts:</h3><ol>
<li><a href="https://blog.identitydesign.us/css-only-easy-modal-lightbox-popup-animated/" rel="bookmark" title="CSS Only: Easy Modal Lightbox Pop-up (Animated)">CSS Only: Easy Modal Lightbox Pop-up (Animated)</a></li>
<li><a href="https://blog.identitydesign.us/add-copyright-css-wordpress/" rel="bookmark" title="Add a Copyright Text / Info Using CSS on WordPress Websites">Add a Copyright Text / Info Using CSS on WordPress Websites</a></li>
<li><a href="https://blog.identitydesign.us/remove-copyright-storefront/" rel="bookmark" title="Remove &#8216;Built with Storefront &#038; WooCommerce&#8217; with CSS lines on WordPress Storefront Theme">Remove &#8216;Built with Storefront &#038; WooCommerce&#8217; with CSS lines on WordPress Storefront Theme</a></li>
</ol>
</div>
]]></description>
										<content:encoded><![CDATA[<p>I&#8217;ve shared a way to add a pop-up or modal lightbox with CSS only on my earlier post, <a href="https://blog.identitydesign.us/css-only-easy-modal-lightbox-popup-animated/">Easy Modal Lightbox Pop-Up</a>. I&#8217;ve received many request how to make this modal pop up on page load instead of using a button. So, here&#8217;s how-to:</p>
<div id="modal-1" class="modal animate-opacity">
<div class="modal-content">
<div class="modal-inner">
       <span onclick="document.getElementById('modal-1').style.display='none'" class="modal-close">&times;</span></p>
<h4>Pop-up modal/lightbox on page load</h4>
<p>You are seeing this because I&#8217;m about to show you how to create a pop up on page load without using any JavaScript.</p>
</p></div>
</p></div>
</div>

<div class="clear"></div>
<h2>HTML</h2>
<p>Copy the code below and paste into your HTML document. </p>
<pre>
&lt;div id=&quot;modal-1&quot; class=&quot;modal animate-opacity&quot;&gt;
   &lt;div class=&quot;modal-content&quot;&gt;
      &lt;div class=&quot;modal-inner&quot;&gt;
         &lt;span onclick=&quot;document.getElementById('modal-1').style.display='none'&quot; class=&quot;modal-close&quot;&gt;&amp;times;&lt;/span&gt;
         &lt;h4&gt;Modal Headline&lt;/h4&gt;
         &lt;p&gt;Modal description goes here.&lt;/p&gt;
      &lt;/div&gt; 
   &lt;/div&gt;
&lt;/div&gt;
</pre>

<div class="clear"></div>
<h2>CSS</h2>
<p>Copy the code below and paste into your CSS document. 		 	</p>
<pre>
.modal {
	z-index: 10;
	display: block;
	padding-top: 100px;
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: auto;
	background-color: rgb(0,0,0);
	background-color: rgba(0,0,0,0.5)
}
.modal-content {
	margin: auto;
	background-color: #fff;
	position: relative;
	padding: 0;
	outline: 0;
	max-width: 600px
}
.modal-inner { padding: 20px 30px; }
.modal-close {
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	position: absolute;
	right: 0;
	top: 0;
	background: #ccc;
	padding: 6px 10px;
}
.animate-opacity { animation: opac 0.8s }@keyframes opac{from{opacity:0} to{opacity:1}}
</pre>
<p><code>.animate-opacity</code> is optional as it&#8217;s the animated effect when modal opens. </p>
<p>You can tweak the animation time. It&#8217;s currently 0.8 seconds <code>opac 0.8s</code> , but change the timing as your need.<br />
</p>
<div class="clear"></div>
<style>
.modal{z-index:10;display:block;padding-top:100px;position:fixed;left:0;top:0;width:100%;height:100%;overflow:auto;background-color:rgb(0,0,0);background-color:rgba(0,0,0,0.5);margin-left: 0px !important;}
.modal-content{margin:auto;background-color:#fff;position:relative;padding:0;outline:0;max-width:600px}
.modal-inner {padding: 20px 30px;} 
.modal-close{-webkit-touch-callout:none;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none; position:absolute;right:0;top:0;     background: #ccc;padding: 6px 10px;}  
.animate-opacity{animation:opac 0.8s}@keyframes opac{from{opacity:0} to{opacity:1}}
button{background:orange;border:none;}
button:hover{background:red;color:#fff;border:none;}
</style><p>The post <a href="https://blog.identitydesign.us/css-only-modal-lightbox-pop-up-on-page-load/">CSS Only: Pop-up Modal Lightbox on Page Load</a> first appeared on <a href="https://blog.identitydesign.us">identity design</a>.</p><p>The post <a href="https://blog.identitydesign.us/css-only-modal-lightbox-pop-up-on-page-load/">CSS Only: Pop-up Modal Lightbox on Page Load</a> appeared first on <a href="https://blog.identitydesign.us">identity design</a>.</p>
<div class='yarpp yarpp-related yarpp-related-rss yarpp-template-list'>
<!-- YARPP List -->
<h3>Related posts:</h3><ol>
<li><a href="https://blog.identitydesign.us/css-only-easy-modal-lightbox-popup-animated/" rel="bookmark" title="CSS Only: Easy Modal Lightbox Pop-up (Animated)">CSS Only: Easy Modal Lightbox Pop-up (Animated)</a></li>
<li><a href="https://blog.identitydesign.us/add-copyright-css-wordpress/" rel="bookmark" title="Add a Copyright Text / Info Using CSS on WordPress Websites">Add a Copyright Text / Info Using CSS on WordPress Websites</a></li>
<li><a href="https://blog.identitydesign.us/remove-copyright-storefront/" rel="bookmark" title="Remove &#8216;Built with Storefront &#038; WooCommerce&#8217; with CSS lines on WordPress Storefront Theme">Remove &#8216;Built with Storefront &#038; WooCommerce&#8217; with CSS lines on WordPress Storefront Theme</a></li>
</ol>
</div>
]]></content:encoded>
					
					<wfw:commentRss>https://blog.identitydesign.us/css-only-modal-lightbox-pop-up-on-page-load/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Star Rating Symbol Icons Show Broken or Square Boxes on Woocommerce Review</title>
		<link>https://blog.identitydesign.us/star-symbol-broken-woocommerce-review/</link>
					<comments>https://blog.identitydesign.us/star-symbol-broken-woocommerce-review/#respond</comments>
		
		<dc:creator><![CDATA[djemals]]></dc:creator>
		<pubDate>Mon, 09 Mar 2020 07:13:17 +0000</pubDate>
				<category><![CDATA[backend]]></category>
		<category><![CDATA[Bootstrap]]></category>
		<category><![CDATA[CSSonly]]></category>
		<category><![CDATA[Fonts]]></category>
		<category><![CDATA[How-To]]></category>
		<category><![CDATA[HTML/CSS/PHP/JavaScripts]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Website]]></category>
		<category><![CDATA[Wordpress]]></category>
		<guid isPermaLink="false">http://blog.identitydesign.us/?p=1218</guid>

					<description><![CDATA[<p>Very strange? I just made the reviews functionality active on my WordPress Woocommerce website, and I see the icons are broken with square boxes (some says &#8220;SSSSS&#8221;). There should be some CSS conflicts where the icon fonts were not properly loaded. So, I&#8217;ve came up overwriting some CSS styling including a new font-family to the [&#8230;]</p>
<p>The post <a href="https://blog.identitydesign.us/star-symbol-broken-woocommerce-review/">Star Rating Symbol Icons Show Broken or Square Boxes on Woocommerce Review</a> first appeared on <a href="https://blog.identitydesign.us">identity design</a>.</p>
<p>The post <a href="https://blog.identitydesign.us/star-symbol-broken-woocommerce-review/">Star Rating Symbol Icons Show Broken or Square Boxes on Woocommerce Review</a> appeared first on <a href="https://blog.identitydesign.us">identity design</a>.</p>
<div class='yarpp yarpp-related yarpp-related-rss yarpp-template-list'>
<!-- YARPP List -->
<h3>Related posts:</h3><ol>
<li><a href="https://blog.identitydesign.us/bootstrap-carousel-slider-transition-speed-time-interval/" rel="bookmark" title="How to Change Bootstrap Carousel Slider Transition Speed Time Interval">How to Change Bootstrap Carousel Slider Transition Speed Time Interval</a></li>
<li><a href="https://blog.identitydesign.us/remove-copyright-storefront/" rel="bookmark" title="Remove &#8216;Built with Storefront &#038; WooCommerce&#8217; with CSS lines on WordPress Storefront Theme">Remove &#8216;Built with Storefront &#038; WooCommerce&#8217; with CSS lines on WordPress Storefront Theme</a></li>
<li><a href="https://blog.identitydesign.us/fix-php-upgrade-error-whm-cpanel/" rel="bookmark" title="(Resolved) Fix PHP / MultiPHP Version Upgrade Error in WHM/Cpanel">(Resolved) Fix PHP / MultiPHP Version Upgrade Error in WHM/Cpanel</a></li>
</ol>
</div>
]]></description>
										<content:encoded><![CDATA[<p>Very strange? I just made the reviews functionality active on my WordPress Woocommerce website, and I see the icons are broken with square boxes (some says &#8220;SSSSS&#8221;). There should be some CSS conflicts where the icon fonts were not properly loaded. So, I&#8217;ve came up overwriting some CSS styling including a new font-family to the page, and it&#8217;s working! </p>
<pre>
p.stars a:before, p.stars a:hover, p.stars a:visited, p.stars a:focus, p.stars a:hover~a:before, p.stars:hover a:before, p.stars.selected a:not(.active):before, p.stars.selected a.active:before, p.stars.selected a.active~a:before {
    font-family: 'star';
    content: '\53';
    line-height: 1.4 !important;
}
</pre>

<div class="display-posts-listing display-related">
<div class="listing-item"><a class="image" href="https://blog.identitydesign.us/how-to-make-bootstrap-nav-top-level-menu-clickable-with-dropdowns/"><img fetchpriority="high" decoding="async" width="300" height="200" src="https://blog.identitydesign.us/wp-content/uploads/2018/08/300x200-topnav-300x200.jpg" class="attachment-medium size-medium wp-post-image" alt="300x200-topnav" scale="0"></a> <a class="title" href="https://blog.identitydesign.us/how-to-make-bootstrap-nav-top-level-menu-clickable-with-dropdowns/">How to Make Bootstrap Nav Top Level Menu Clickable With Dropdowns</a></div>
<div class="listing-item"><a class="image" href="https://blog.identitydesign.us/free-stockphoto-sites-for-commercial-use/"><img decoding="async" width="300" height="200" src="https://blog.identitydesign.us/wp-content/uploads/2014/09/stockphoto.jpg" class="attachment-medium size-medium wp-post-image" alt="Stock Photo" scale="0"></a> <a class="title" href="https://blog.identitydesign.us/free-stockphoto-sites-for-commercial-use/">Best Free Stock Photo Sites for Commercial Use</a></div>
<div class="listing-item"><a class="image" href="https://blog.identitydesign.us/freebies-foodie-website-design-mockup-template/"><img decoding="async" width="300" height="200" src="https://blog.identitydesign.us/wp-content/uploads/2015/10/Foodie-thumb.jpg" class="attachment-medium size-medium wp-post-image" alt="Foodie Website thumb" scale="0"></a> <a class="title" href="https://blog.identitydesign.us/freebies-foodie-website-design-mockup-template/">Freebies: Foodie Website Mock Up Template (PSD)</a></div>
</div><p>The post <a href="https://blog.identitydesign.us/star-symbol-broken-woocommerce-review/">Star Rating Symbol Icons Show Broken or Square Boxes on Woocommerce Review</a> first appeared on <a href="https://blog.identitydesign.us">identity design</a>.</p><p>The post <a href="https://blog.identitydesign.us/star-symbol-broken-woocommerce-review/">Star Rating Symbol Icons Show Broken or Square Boxes on Woocommerce Review</a> appeared first on <a href="https://blog.identitydesign.us">identity design</a>.</p>
<div class='yarpp yarpp-related yarpp-related-rss yarpp-template-list'>
<!-- YARPP List -->
<h3>Related posts:</h3><ol>
<li><a href="https://blog.identitydesign.us/bootstrap-carousel-slider-transition-speed-time-interval/" rel="bookmark" title="How to Change Bootstrap Carousel Slider Transition Speed Time Interval">How to Change Bootstrap Carousel Slider Transition Speed Time Interval</a></li>
<li><a href="https://blog.identitydesign.us/remove-copyright-storefront/" rel="bookmark" title="Remove &#8216;Built with Storefront &#038; WooCommerce&#8217; with CSS lines on WordPress Storefront Theme">Remove &#8216;Built with Storefront &#038; WooCommerce&#8217; with CSS lines on WordPress Storefront Theme</a></li>
<li><a href="https://blog.identitydesign.us/fix-php-upgrade-error-whm-cpanel/" rel="bookmark" title="(Resolved) Fix PHP / MultiPHP Version Upgrade Error in WHM/Cpanel">(Resolved) Fix PHP / MultiPHP Version Upgrade Error in WHM/Cpanel</a></li>
</ol>
</div>
]]></content:encoded>
					
					<wfw:commentRss>https://blog.identitydesign.us/star-symbol-broken-woocommerce-review/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Remove &#8216;Built with Storefront &#038; WooCommerce&#8217; with CSS lines on WordPress Storefront Theme</title>
		<link>https://blog.identitydesign.us/remove-copyright-storefront/</link>
					<comments>https://blog.identitydesign.us/remove-copyright-storefront/#respond</comments>
		
		<dc:creator><![CDATA[djemals]]></dc:creator>
		<pubDate>Sun, 01 Dec 2019 06:10:59 +0000</pubDate>
				<category><![CDATA[Bootstrap]]></category>
		<category><![CDATA[CSSonly]]></category>
		<category><![CDATA[How-To]]></category>
		<category><![CDATA[HTML/CSS/PHP/JavaScripts]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Website]]></category>
		<category><![CDATA[Wordpress]]></category>
		<guid isPermaLink="false">http://blog.identitydesign.us/?p=1199</guid>

					<description><![CDATA[<p>Woocommerce offers one of a greatest E-Commerce template themes for free called, &#8220;Storefront&#8220;. From the Nav to checkout process, all required functionality in order to run an E-Commerce are ready for you to download and activate. But, one little thing is bugging at the bottom of the page, &#8220;Built with Storefront &#38; WooCommerce.&#8221; line, however, [&#8230;]</p>
<p>The post <a href="https://blog.identitydesign.us/remove-copyright-storefront/">Remove ‘Built with Storefront & WooCommerce’ with CSS lines on WordPress Storefront Theme</a> first appeared on <a href="https://blog.identitydesign.us">identity design</a>.</p>
<p>The post <a href="https://blog.identitydesign.us/remove-copyright-storefront/">Remove &#8216;Built with Storefront &#038; WooCommerce&#8217; with CSS lines on WordPress Storefront Theme</a> appeared first on <a href="https://blog.identitydesign.us">identity design</a>.</p>
<div class='yarpp yarpp-related yarpp-related-rss yarpp-template-list'>
<!-- YARPP List -->
<h3>Related posts:</h3><ol>
<li><a href="https://blog.identitydesign.us/woocommerce-storefront-theme-remove-storefront-woothemes-credits/" rel="bookmark" title="Remove &#8220;Storefront designed by WooThemes&#8221; on Woocommerce Storefront Theme">Remove &#8220;Storefront designed by WooThemes&#8221; on Woocommerce Storefront Theme</a></li>
<li><a href="https://blog.identitydesign.us/remove-product-description-and-reviews-tabs-woocommerce-storefront-theme/" rel="bookmark" title="Remove Product Description and Reviews Tabs in Woocommerce Storefront Theme">Remove Product Description and Reviews Tabs in Woocommerce Storefront Theme</a></li>
<li><a href="https://blog.identitydesign.us/how-to-remove-copyright-text-in-wp-bootstrap-starter-theme/" rel="bookmark" title="How to Remove &#8220;Bootstrap WordPress Theme&#8221; on WP Bootstrap Starter Template">How to Remove &#8220;Bootstrap WordPress Theme&#8221; on WP Bootstrap Starter Template</a></li>
</ol>
</div>
]]></description>
										<content:encoded><![CDATA[<p><a href="https://woocommerce.com/" target="_blank">Woocommerce</a> offers one of a greatest E-Commerce template themes for free called, &#8220;<a href="https://themes.woocommerce.com/storefront/" target="_blank">Storefront</a>&#8220;. From the Nav to checkout process, all required functionality in order to run an E-Commerce are ready for you to download and activate. But, one little thing is bugging at the bottom of the page, &#8220;Built with Storefront &amp; WooCommerce.&#8221; line, however, it&#8217;s possible to get it out with a few lines of CSS.</p>
<p><a href="https://blog.identitydesign.us/wp-content/uploads/2019/11/storefront-copyright.jpg" rel="attachment wp-att-1201"><img loading="lazy" decoding="async" src="https://blog.identitydesign.us/wp-content/uploads/2019/11/storefront-copyright-300x81.jpg" alt="Store front copyright" width="300" height="81" class="alignnone size-medium wp-image-1201" srcset="https://blog.identitydesign.us/wp-content/uploads/2019/11/storefront-copyright-300x81.jpg 300w, https://blog.identitydesign.us/wp-content/uploads/2019/11/storefront-copyright-624x168.jpg 624w, https://blog.identitydesign.us/wp-content/uploads/2019/11/storefront-copyright.jpg 736w" sizes="auto, (max-width: 300px) 100vw, 300px" /></a></p>
<h2>Remove and replace copyright information on Storefront theme</h2>
<pre>footer .site-infos { display:none; } 				
footer .footer-widgets { border: 0 !important;	}	
footer .footer-widgets::after {  content: "© ADD THIS FOR YOUR COPYRIGHT INFO" }
</pre>

<div class="clear"></div><p>The post <a href="https://blog.identitydesign.us/remove-copyright-storefront/">Remove ‘Built with Storefront & WooCommerce’ with CSS lines on WordPress Storefront Theme</a> first appeared on <a href="https://blog.identitydesign.us">identity design</a>.</p><p>The post <a href="https://blog.identitydesign.us/remove-copyright-storefront/">Remove &#8216;Built with Storefront &#038; WooCommerce&#8217; with CSS lines on WordPress Storefront Theme</a> appeared first on <a href="https://blog.identitydesign.us">identity design</a>.</p>
<div class='yarpp yarpp-related yarpp-related-rss yarpp-template-list'>
<!-- YARPP List -->
<h3>Related posts:</h3><ol>
<li><a href="https://blog.identitydesign.us/woocommerce-storefront-theme-remove-storefront-woothemes-credits/" rel="bookmark" title="Remove &#8220;Storefront designed by WooThemes&#8221; on Woocommerce Storefront Theme">Remove &#8220;Storefront designed by WooThemes&#8221; on Woocommerce Storefront Theme</a></li>
<li><a href="https://blog.identitydesign.us/remove-product-description-and-reviews-tabs-woocommerce-storefront-theme/" rel="bookmark" title="Remove Product Description and Reviews Tabs in Woocommerce Storefront Theme">Remove Product Description and Reviews Tabs in Woocommerce Storefront Theme</a></li>
<li><a href="https://blog.identitydesign.us/how-to-remove-copyright-text-in-wp-bootstrap-starter-theme/" rel="bookmark" title="How to Remove &#8220;Bootstrap WordPress Theme&#8221; on WP Bootstrap Starter Template">How to Remove &#8220;Bootstrap WordPress Theme&#8221; on WP Bootstrap Starter Template</a></li>
</ol>
</div>
]]></content:encoded>
					
					<wfw:commentRss>https://blog.identitydesign.us/remove-copyright-storefront/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Add a Copyright Text / Info Using CSS on WordPress Websites</title>
		<link>https://blog.identitydesign.us/add-copyright-css-wordpress/</link>
					<comments>https://blog.identitydesign.us/add-copyright-css-wordpress/#respond</comments>
		
		<dc:creator><![CDATA[djemals]]></dc:creator>
		<pubDate>Thu, 19 Sep 2019 20:05:49 +0000</pubDate>
				<category><![CDATA[Bootstrap]]></category>
		<category><![CDATA[CSSonly]]></category>
		<category><![CDATA[How-To]]></category>
		<category><![CDATA[HTML/CSS/PHP/JavaScripts]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Website]]></category>
		<category><![CDATA[Wordpress]]></category>
		<guid isPermaLink="false">http://blog.identitydesign.us/?p=1144</guid>

					<description><![CDATA[<p>Let&#8217;s don&#8217;t bother spending hours to look for footer.php or widgets in WordPress to add your Copyright line on the footer of website. Here&#8217;s one easy method to add using CSS. Add copyright text / info with CSS for WordPress/Bootstrap websites footer > div:before { content: "© Copyright (YEAR). All rights reserved."; font-size: 14px; color: [&#8230;]</p>
<p>The post <a href="https://blog.identitydesign.us/add-copyright-css-wordpress/">Add a Copyright Text / Info Using CSS on WordPress Websites</a> first appeared on <a href="https://blog.identitydesign.us">identity design</a>.</p>
<p>The post <a href="https://blog.identitydesign.us/add-copyright-css-wordpress/">Add a Copyright Text / Info Using CSS on WordPress Websites</a> appeared first on <a href="https://blog.identitydesign.us">identity design</a>.</p>
<div class='yarpp yarpp-related yarpp-related-rss yarpp-template-list'>
<!-- YARPP List -->
<h3>Related posts:</h3><ol>
<li><a href="https://blog.identitydesign.us/remove-proudly-powered-by-wordpress-on-wordpress-twenty-sixteen-theme-replace-copyright/" rel="bookmark" title="Remove Proudly powered by WordPress Theme and Replace with Your Own &copy; Copyright Information">Remove Proudly powered by WordPress Theme and Replace with Your Own &copy; Copyright Information</a></li>
<li><a href="https://blog.identitydesign.us/html-css-ribbon-no-image/" rel="bookmark" title="How Create a HTML/CSS Ribbon. Simple and Light (None Jpg/Png Image)">How Create a HTML/CSS Ribbon. Simple and Light (None Jpg/Png Image)</a></li>
<li><a href="https://blog.identitydesign.us/css-only-easy-modal-lightbox-popup-animated/" rel="bookmark" title="CSS Only: Easy Modal Lightbox Pop-up (Animated)">CSS Only: Easy Modal Lightbox Pop-up (Animated)</a></li>
</ol>
</div>
]]></description>
										<content:encoded><![CDATA[<p>Let&#8217;s don&#8217;t bother spending hours to look for <code>footer.php</code> or widgets in WordPress to add your Copyright line on the footer of website. Here&#8217;s one easy method to add using CSS.<br />
<a href="https://blog.identitydesign.us/wp-content/uploads/2019/09/copyright.png" rel="attachment wp-att-1145"><img loading="lazy" decoding="async" src="https://blog.identitydesign.us/wp-content/uploads/2019/09/copyright-300x102.png" alt="copyright" width="300" height="102" class="alignnone size-medium wp-image-1145" srcset="https://blog.identitydesign.us/wp-content/uploads/2019/09/copyright-300x102.png 300w, https://blog.identitydesign.us/wp-content/uploads/2019/09/copyright.png 528w" sizes="auto, (max-width: 300px) 100vw, 300px" /></a></p>
<h2>Add copyright text / info with CSS for WordPress/Bootstrap websites</h2>
<pre>
footer > div:before {
    content: "© Copyright (YEAR). All rights reserved.";
    font-size: 14px;
    color: #777;
    text-align: center;
    display: block;
    margin: 20px auto;
}
</pre>

<div class="clear"></div><p>The post <a href="https://blog.identitydesign.us/add-copyright-css-wordpress/">Add a Copyright Text / Info Using CSS on WordPress Websites</a> first appeared on <a href="https://blog.identitydesign.us">identity design</a>.</p><p>The post <a href="https://blog.identitydesign.us/add-copyright-css-wordpress/">Add a Copyright Text / Info Using CSS on WordPress Websites</a> appeared first on <a href="https://blog.identitydesign.us">identity design</a>.</p>
<div class='yarpp yarpp-related yarpp-related-rss yarpp-template-list'>
<!-- YARPP List -->
<h3>Related posts:</h3><ol>
<li><a href="https://blog.identitydesign.us/remove-proudly-powered-by-wordpress-on-wordpress-twenty-sixteen-theme-replace-copyright/" rel="bookmark" title="Remove Proudly powered by WordPress Theme and Replace with Your Own &copy; Copyright Information">Remove Proudly powered by WordPress Theme and Replace with Your Own &copy; Copyright Information</a></li>
<li><a href="https://blog.identitydesign.us/html-css-ribbon-no-image/" rel="bookmark" title="How Create a HTML/CSS Ribbon. Simple and Light (None Jpg/Png Image)">How Create a HTML/CSS Ribbon. Simple and Light (None Jpg/Png Image)</a></li>
<li><a href="https://blog.identitydesign.us/css-only-easy-modal-lightbox-popup-animated/" rel="bookmark" title="CSS Only: Easy Modal Lightbox Pop-up (Animated)">CSS Only: Easy Modal Lightbox Pop-up (Animated)</a></li>
</ol>
</div>
]]></content:encoded>
					
					<wfw:commentRss>https://blog.identitydesign.us/add-copyright-css-wordpress/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>How to Remove &#8220;Bootstrap WordPress Theme&#8221; on WP Bootstrap Starter Template</title>
		<link>https://blog.identitydesign.us/how-to-remove-copyright-text-in-wp-bootstrap-starter-theme/</link>
					<comments>https://blog.identitydesign.us/how-to-remove-copyright-text-in-wp-bootstrap-starter-theme/#comments</comments>
		
		<dc:creator><![CDATA[djemals]]></dc:creator>
		<pubDate>Sat, 01 Jun 2019 00:30:06 +0000</pubDate>
				<category><![CDATA[Bootstrap]]></category>
		<category><![CDATA[CSSonly]]></category>
		<category><![CDATA[How-To]]></category>
		<category><![CDATA[HTML/CSS/PHP/JavaScripts]]></category>
		<category><![CDATA[Website]]></category>
		<category><![CDATA[Wordpress]]></category>
		<guid isPermaLink="false">http://blog.identitydesign.us/?p=1129</guid>

					<description><![CDATA[<p>WP Bootstrap Starter Theme is one of a popular templates you can get it for free in WordPress. It&#8217;s nice with light weighted built in Boostrap 4 framework so it&#8217;s ready to use just by having the theme itself. You can pretty much edit the entire website including the header and footer except for removing [&#8230;]</p>
<p>The post <a href="https://blog.identitydesign.us/how-to-remove-copyright-text-in-wp-bootstrap-starter-theme/">How to Remove “Bootstrap WordPress Theme” on WP Bootstrap Starter Template</a> first appeared on <a href="https://blog.identitydesign.us">identity design</a>.</p>
<p>The post <a href="https://blog.identitydesign.us/how-to-remove-copyright-text-in-wp-bootstrap-starter-theme/">How to Remove &#8220;Bootstrap WordPress Theme&#8221; on WP Bootstrap Starter Template</a> appeared first on <a href="https://blog.identitydesign.us">identity design</a>.</p>
<div class='yarpp yarpp-related yarpp-related-rss yarpp-template-list'>
<!-- YARPP List -->
<h3>Related posts:</h3><ol>
<li><a href="https://blog.identitydesign.us/remove-copyright-storefront/" rel="bookmark" title="Remove &#8216;Built with Storefront &#038; WooCommerce&#8217; with CSS lines on WordPress Storefront Theme">Remove &#8216;Built with Storefront &#038; WooCommerce&#8217; with CSS lines on WordPress Storefront Theme</a></li>
<li><a href="https://blog.identitydesign.us/remove-proudly-powered-by-wordpress-on-wordpress-twenty-sixteen-theme-replace-copyright/" rel="bookmark" title="Remove Proudly powered by WordPress Theme and Replace with Your Own &copy; Copyright Information">Remove Proudly powered by WordPress Theme and Replace with Your Own &copy; Copyright Information</a></li>
<li><a href="https://blog.identitydesign.us/no-programming-needed-use-javascript-to-load-header-and-footer-templates-works-just-like-php-include/" rel="bookmark" title="(No Programming) Use JavaScript to Load Header and Footer Templates. Works Just Like PHP Include">(No Programming) Use JavaScript to Load Header and Footer Templates. Works Just Like PHP Include</a></li>
</ol>
</div>
]]></description>
										<content:encoded><![CDATA[<p><a href="http://sleekycase.com/3d-custom-photo-design-matte-case/" rel="attachment wp-att-940" target="_blank"><img loading="lazy" decoding="async" src="https://blog.identitydesign.us/wp-content/uploads/2014/06/banner-web.jpg" alt="Get Custom Phone Case Now!" width="940" height="492" class="alignnone size-full wp-image-940" srcset="https://blog.identitydesign.us/wp-content/uploads/2014/06/banner-web.jpg 940w, https://blog.identitydesign.us/wp-content/uploads/2014/06/banner-web-300x157.jpg 300w, https://blog.identitydesign.us/wp-content/uploads/2014/06/banner-web-768x402.jpg 768w, https://blog.identitydesign.us/wp-content/uploads/2014/06/banner-web-624x327.jpg 624w" sizes="auto, (max-width: 940px) 100vw, 940px" /></a></p>
<p>WP Bootstrap Starter Theme is one of a popular templates you can get it for free in WordPress. It&#8217;s nice with light weighted built in Boostrap 4 framework so it&#8217;s ready to use just by having the theme itself.</p>
<p>You can pretty much edit the entire website including the header and footer except for removing the copyright text very bottom of the page saying,  &#8220;Bootstrap WordPress Theme&#8221;. </p>
<p><a href="https://blog.identitydesign.us/wp-content/uploads/2019/05/Screen-Shot-2019-05-31-at-4.59.42-PM.png" rel="attachment wp-att-1134"><img loading="lazy" decoding="async" src="https://blog.identitydesign.us/wp-content/uploads/2019/05/Screen-Shot-2019-05-31-at-4.59.42-PM.png" alt="Screen Shot 2019-05-31 at 4.59.42 PM" width="728" height="80" class="alignnone size-full wp-image-1134" srcset="https://blog.identitydesign.us/wp-content/uploads/2019/05/Screen-Shot-2019-05-31-at-4.59.42-PM.png 728w, https://blog.identitydesign.us/wp-content/uploads/2019/05/Screen-Shot-2019-05-31-at-4.59.42-PM-300x33.png 300w, https://blog.identitydesign.us/wp-content/uploads/2019/05/Screen-Shot-2019-05-31-at-4.59.42-PM-624x69.png 624w" sizes="auto, (max-width: 728px) 100vw, 728px" /></a></p>
<p>Here&#8217;s a way to make it disappear by adding a CSS line. Let me show you how to do this in a minute!</p>
<h2>Remove &#8220;Bootstrap WordPress Theme&#8221; text on the footer</h2>
<ol>
<li>Go to the Admin website -> Appearance -> Customize -> Additional CSS</li>
<li>Copy the CSS code below and paste on the CSS window.</li>
<li>Save!</li>
</ol>

<pre>
footer .sep, footer .credits {
    display:none;
}
</pre><p>The post <a href="https://blog.identitydesign.us/how-to-remove-copyright-text-in-wp-bootstrap-starter-theme/">How to Remove “Bootstrap WordPress Theme” on WP Bootstrap Starter Template</a> first appeared on <a href="https://blog.identitydesign.us">identity design</a>.</p><p>The post <a href="https://blog.identitydesign.us/how-to-remove-copyright-text-in-wp-bootstrap-starter-theme/">How to Remove &#8220;Bootstrap WordPress Theme&#8221; on WP Bootstrap Starter Template</a> appeared first on <a href="https://blog.identitydesign.us">identity design</a>.</p>
<div class='yarpp yarpp-related yarpp-related-rss yarpp-template-list'>
<!-- YARPP List -->
<h3>Related posts:</h3><ol>
<li><a href="https://blog.identitydesign.us/remove-copyright-storefront/" rel="bookmark" title="Remove &#8216;Built with Storefront &#038; WooCommerce&#8217; with CSS lines on WordPress Storefront Theme">Remove &#8216;Built with Storefront &#038; WooCommerce&#8217; with CSS lines on WordPress Storefront Theme</a></li>
<li><a href="https://blog.identitydesign.us/remove-proudly-powered-by-wordpress-on-wordpress-twenty-sixteen-theme-replace-copyright/" rel="bookmark" title="Remove Proudly powered by WordPress Theme and Replace with Your Own &copy; Copyright Information">Remove Proudly powered by WordPress Theme and Replace with Your Own &copy; Copyright Information</a></li>
<li><a href="https://blog.identitydesign.us/no-programming-needed-use-javascript-to-load-header-and-footer-templates-works-just-like-php-include/" rel="bookmark" title="(No Programming) Use JavaScript to Load Header and Footer Templates. Works Just Like PHP Include">(No Programming) Use JavaScript to Load Header and Footer Templates. Works Just Like PHP Include</a></li>
</ol>
</div>
]]></content:encoded>
					
					<wfw:commentRss>https://blog.identitydesign.us/how-to-remove-copyright-text-in-wp-bootstrap-starter-theme/feed/</wfw:commentRss>
			<slash:comments>3</slash:comments>
		
		
			</item>
		<item>
		<title>CSS / HTML: Make Absolute Center (Vertical &#038; Horizontal)</title>
		<link>https://blog.identitydesign.us/css-make-your-element-absolute-center-vertical-horizontal/</link>
					<comments>https://blog.identitydesign.us/css-make-your-element-absolute-center-vertical-horizontal/#respond</comments>
		
		<dc:creator><![CDATA[djemals]]></dc:creator>
		<pubDate>Sat, 09 Feb 2019 01:05:02 +0000</pubDate>
				<category><![CDATA[Bootstrap]]></category>
		<category><![CDATA[CSSonly]]></category>
		<category><![CDATA[HTML/CSS/PHP/JavaScripts]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Website]]></category>
		<category><![CDATA[Wordpress]]></category>
		<guid isPermaLink="false">http://blog.identitydesign.us/?p=1088</guid>

					<description><![CDATA[<p>For some reasons, making an article absolute center was pretty tricky with HTML. Horizontal centering is mostly done by text-align:center or margin:auto tags in css. Vertical alignment has to do with positions or vertical-align:middle, and many times an image or other elements are not centering correctly. Try this below, this is one easy way making [&#8230;]</p>
<p>The post <a href="https://blog.identitydesign.us/css-make-your-element-absolute-center-vertical-horizontal/">CSS / HTML: Make Absolute Center (Vertical & Horizontal)</a> first appeared on <a href="https://blog.identitydesign.us">identity design</a>.</p>
<p>The post <a href="https://blog.identitydesign.us/css-make-your-element-absolute-center-vertical-horizontal/">CSS / HTML: Make Absolute Center (Vertical &#038; Horizontal)</a> appeared first on <a href="https://blog.identitydesign.us">identity design</a>.</p>
<div class='yarpp yarpp-related yarpp-related-rss yarpp-template-list'>
<!-- YARPP List -->
<h3>Related posts:</h3><ol>
<li><a href="https://blog.identitydesign.us/css-vertical-align-center/" rel="bookmark" title="CSS Vertical Align Center">CSS Vertical Align Center</a></li>
<li><a href="https://blog.identitydesign.us/remove-proudly-powered-by-wordpress-on-wordpress-twenty-sixteen-theme-replace-copyright/" rel="bookmark" title="Remove Proudly powered by WordPress Theme and Replace with Your Own &copy; Copyright Information">Remove Proudly powered by WordPress Theme and Replace with Your Own &copy; Copyright Information</a></li>
<li><a href="https://blog.identitydesign.us/html-css-ribbon-no-image/" rel="bookmark" title="How Create a HTML/CSS Ribbon. Simple and Light (None Jpg/Png Image)">How Create a HTML/CSS Ribbon. Simple and Light (None Jpg/Png Image)</a></li>
</ol>
</div>
]]></description>
										<content:encoded><![CDATA[<p>For some reasons, making an article absolute center was pretty tricky with HTML. </p>
<p>Horizontal centering is mostly done by <code>text-align:center</code> or <code>margin:auto</code> tags in css. Vertical alignment has to do with <code>positions</code> or <code>vertical-align:middle</code>, and many times an image or other elements are not centering correctly. </p>
<p>Try this below, this is one easy way making your content elements absolute center in vertical and horizontal.</p>
<div class="board">
<h2 style="margin-top:0px;text-align:center;">DEMO: Vertical &#038; Horizontal Absolute Centering</h2>
<div class="body-center">
     <span>Hello.<br />Your centered content is here!</span>
   </div>
</div>

<div class="clear"></div>
<h2>CSS</h2>
<p>Copy the code below and paste into your CSS document. 		 	</p>
<pre>
body {
	display: flex;
	justify-content: center;
	align-items: center;
        text-align:center;
}
</pre>
<p>Easy and fantastic!</p>
<style>
div.body-center {
	display: flex;
	justify-content: center;
	align-items: center;
        min-height:300px;
        text-align:center;
}
div.body-center span { font-size:34px; font-weight:200; }
</style><p>The post <a href="https://blog.identitydesign.us/css-make-your-element-absolute-center-vertical-horizontal/">CSS / HTML: Make Absolute Center (Vertical & Horizontal)</a> first appeared on <a href="https://blog.identitydesign.us">identity design</a>.</p><p>The post <a href="https://blog.identitydesign.us/css-make-your-element-absolute-center-vertical-horizontal/">CSS / HTML: Make Absolute Center (Vertical &#038; Horizontal)</a> appeared first on <a href="https://blog.identitydesign.us">identity design</a>.</p>
<div class='yarpp yarpp-related yarpp-related-rss yarpp-template-list'>
<!-- YARPP List -->
<h3>Related posts:</h3><ol>
<li><a href="https://blog.identitydesign.us/css-vertical-align-center/" rel="bookmark" title="CSS Vertical Align Center">CSS Vertical Align Center</a></li>
<li><a href="https://blog.identitydesign.us/remove-proudly-powered-by-wordpress-on-wordpress-twenty-sixteen-theme-replace-copyright/" rel="bookmark" title="Remove Proudly powered by WordPress Theme and Replace with Your Own &copy; Copyright Information">Remove Proudly powered by WordPress Theme and Replace with Your Own &copy; Copyright Information</a></li>
<li><a href="https://blog.identitydesign.us/html-css-ribbon-no-image/" rel="bookmark" title="How Create a HTML/CSS Ribbon. Simple and Light (None Jpg/Png Image)">How Create a HTML/CSS Ribbon. Simple and Light (None Jpg/Png Image)</a></li>
</ol>
</div>
]]></content:encoded>
					
					<wfw:commentRss>https://blog.identitydesign.us/css-make-your-element-absolute-center-vertical-horizontal/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>CSS Only: Easy Modal Lightbox Pop-up (Animated)</title>
		<link>https://blog.identitydesign.us/css-only-easy-modal-lightbox-popup-animated/</link>
					<comments>https://blog.identitydesign.us/css-only-easy-modal-lightbox-popup-animated/#respond</comments>
		
		<dc:creator><![CDATA[djemals]]></dc:creator>
		<pubDate>Tue, 29 Jan 2019 19:50:57 +0000</pubDate>
				<category><![CDATA[Bootstrap]]></category>
		<category><![CDATA[CSSonly]]></category>
		<category><![CDATA[How-To]]></category>
		<category><![CDATA[HTML/CSS/PHP/JavaScripts]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Website]]></category>
		<category><![CDATA[Wordpress]]></category>
		<guid isPermaLink="false">http://blog.identitydesign.us/?p=1074</guid>

					<description><![CDATA[<p>Now you can add pop-ups or modal lightbox with CSS only (and really minor single line of JavaScript) on your html, wordpress or bootstrap website, so don&#8217;t be afraid. DEMO: CSS Modal Lightbox Click Here &#215; Modal Headline Modal description goes here. HTML Copy the code below and paste into your HTML document. &#60;button onclick=&#34;document.getElementById('modal-1').style.display='block'&#34;&#62;Click [&#8230;]</p>
<p>The post <a href="https://blog.identitydesign.us/css-only-easy-modal-lightbox-popup-animated/">CSS Only: Easy Modal Lightbox Pop-up (Animated)</a> first appeared on <a href="https://blog.identitydesign.us">identity design</a>.</p>
<p>The post <a href="https://blog.identitydesign.us/css-only-easy-modal-lightbox-popup-animated/">CSS Only: Easy Modal Lightbox Pop-up (Animated)</a> appeared first on <a href="https://blog.identitydesign.us">identity design</a>.</p>
<div class='yarpp yarpp-related yarpp-related-rss yarpp-template-list'>
<!-- YARPP List -->
<h3>Related posts:</h3><ol>
<li><a href="https://blog.identitydesign.us/css-only-modal-lightbox-pop-up-on-page-load/" rel="bookmark" title="CSS Only: Pop-up Modal Lightbox on Page Load">CSS Only: Pop-up Modal Lightbox on Page Load</a></li>
<li><a href="https://blog.identitydesign.us/remove-proudly-powered-by-wordpress-on-wordpress-twenty-sixteen-theme-replace-copyright/" rel="bookmark" title="Remove Proudly powered by WordPress Theme and Replace with Your Own &copy; Copyright Information">Remove Proudly powered by WordPress Theme and Replace with Your Own &copy; Copyright Information</a></li>
<li><a href="https://blog.identitydesign.us/add-copyright-css-wordpress/" rel="bookmark" title="Add a Copyright Text / Info Using CSS on WordPress Websites">Add a Copyright Text / Info Using CSS on WordPress Websites</a></li>
</ol>
</div>
]]></description>
										<content:encoded><![CDATA[<p>Now you can add pop-ups or modal lightbox with CSS only (and really minor single line of JavaScript) on your html, wordpress or bootstrap website, so don&#8217;t be afraid. </p>
<div class="board">
<h2 style="margin-top:0px;text-align:center;">DEMO: CSS Modal Lightbox</h2>
<p class="text-center"><button class="" onclick="document.getElementById('modal-1').style.display='block'">Click Here</button></p>
<div id="modal-1" class="modal animate-opacity">
<div class="modal-content">
<div class="modal-inner">
       <span onclick="document.getElementById('modal-1').style.display='none'" class="modal-close">&times;</span></p>
<h4>Modal Headline</h4>
<p>Modal description goes here.</p>
</p></div>
</p></div>
</div>
</div>

<div class="clear"></div>
<h2>HTML</h2>
<p>Copy the code below and paste into your HTML document. </p>
<pre>
&lt;button onclick=&quot;document.getElementById('modal-1').style.display='block'&quot;&gt;Click Here&lt;/button&gt;

&lt;div id=&quot;modal-1&quot; class=&quot;modal animate-opacity&quot;&gt;
   &lt;div class=&quot;modal-content&quot;&gt;
      &lt;div class=&quot;modal-inner&quot;&gt;
         &lt;span onclick=&quot;document.getElementById('modal-1').style.display='none'&quot; class=&quot;modal-close&quot;&gt;&amp;times;&lt;/span&gt;
         &lt;h4&gt;Modal Headline&lt;/h4&gt;
         &lt;p&gt;Modal description goes here.&lt;/p&gt;
      &lt;/div&gt; 
   &lt;/div&gt;
&lt;/div&gt;
</pre>
<p>You can add multiple modals. Copy the entire codes and replace all <code>modal-1</code> into <code>modal-2</code> and <code>modal-3</code> &#8230;<br />
	 	</p>
<div class="clear"></div>
<h2>CSS</h2>
<p>Copy the code below and paste into your CSS document. 		 	</p>
<pre>
.modal {
	z-index: 10;
	display: none;
	padding-top: 100px;
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: auto;
	background-color: rgb(0,0,0);
	background-color: rgba(0,0,0,0.5)
}
.modal-content {
	margin: auto;
	background-color: #fff;
	position: relative;
	padding: 0;
	outline: 0;
	max-width: 600px
}
.modal-inner { padding: 20px 30px; }
.modal-close {
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	position: absolute;
	right: 0;
	top: 0;
	background: #ccc;
	padding: 6px 10px;
}
.animate-opacity { animation: opac 0.8s }@keyframes opac{from{opacity:0} to{opacity:1}}
</pre>
<p>These 4 classes would do the job, and the last class, <code>.animate-opacity</code> is the animated effect when modal opens (so it&#8217;s optional). </p>
<p>You can tweak the animation time slower or faster by changing the speed time. It&#8217;s currently 0.8 seconds, <code>opac 0.8s</code>, but change it as you need it. Have fun!<br />
</p>
<div class="clear"></div>
<style>
.modal{z-index:10;display:none;padding-top:100px;position:fixed;left:0;top:0;width:100%;height:100%;overflow:auto;background-color:rgb(0,0,0);background-color:rgba(0,0,0,0.5);margin-left: 0px !important;}
.modal-content{margin:auto;background-color:#fff;position:relative;padding:0;outline:0;max-width:600px}
.modal-inner {padding: 20px 30px;} 
.modal-close{-webkit-touch-callout:none;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none; position:absolute;right:0;top:0;     background: #ccc;padding: 6px 10px;}  
.animate-opacity{animation:opac 0.8s}@keyframes opac{from{opacity:0} to{opacity:1}}
button{background:orange;border:none;}
button:hover{background:red;color:#fff;border:none;}
</style><p>The post <a href="https://blog.identitydesign.us/css-only-easy-modal-lightbox-popup-animated/">CSS Only: Easy Modal Lightbox Pop-up (Animated)</a> first appeared on <a href="https://blog.identitydesign.us">identity design</a>.</p><p>The post <a href="https://blog.identitydesign.us/css-only-easy-modal-lightbox-popup-animated/">CSS Only: Easy Modal Lightbox Pop-up (Animated)</a> appeared first on <a href="https://blog.identitydesign.us">identity design</a>.</p>
<div class='yarpp yarpp-related yarpp-related-rss yarpp-template-list'>
<!-- YARPP List -->
<h3>Related posts:</h3><ol>
<li><a href="https://blog.identitydesign.us/css-only-modal-lightbox-pop-up-on-page-load/" rel="bookmark" title="CSS Only: Pop-up Modal Lightbox on Page Load">CSS Only: Pop-up Modal Lightbox on Page Load</a></li>
<li><a href="https://blog.identitydesign.us/remove-proudly-powered-by-wordpress-on-wordpress-twenty-sixteen-theme-replace-copyright/" rel="bookmark" title="Remove Proudly powered by WordPress Theme and Replace with Your Own &copy; Copyright Information">Remove Proudly powered by WordPress Theme and Replace with Your Own &copy; Copyright Information</a></li>
<li><a href="https://blog.identitydesign.us/add-copyright-css-wordpress/" rel="bookmark" title="Add a Copyright Text / Info Using CSS on WordPress Websites">Add a Copyright Text / Info Using CSS on WordPress Websites</a></li>
</ol>
</div>
]]></content:encoded>
					
					<wfw:commentRss>https://blog.identitydesign.us/css-only-easy-modal-lightbox-popup-animated/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>How to Make Bootstrap Nav Top Level Menu Clickable With Dropdowns</title>
		<link>https://blog.identitydesign.us/how-to-make-bootstrap-nav-top-level-menu-clickable-with-dropdowns/</link>
					<comments>https://blog.identitydesign.us/how-to-make-bootstrap-nav-top-level-menu-clickable-with-dropdowns/#comments</comments>
		
		<dc:creator><![CDATA[djemals]]></dc:creator>
		<pubDate>Tue, 28 Aug 2018 08:01:17 +0000</pubDate>
				<category><![CDATA[backend]]></category>
		<category><![CDATA[Bootstrap]]></category>
		<category><![CDATA[How-To]]></category>
		<category><![CDATA[HTML/CSS/PHP/JavaScripts]]></category>
		<category><![CDATA[Website]]></category>
		<category><![CDATA[Wordpress]]></category>
		<guid isPermaLink="false">http://blog.identitydesign.us/?p=1035</guid>

					<description><![CDATA[<p>Your bootstrap top level menu will not be clickable when you add more menus under it like sub-navs or dropdowns. There are some How-Tos of adding a snippet of JavaScript or php online to make it work, but it seems to be risky and complicated. Here&#8217;s a simple solution changing 1 word from your Bootstrap [&#8230;]</p>
<p>The post <a href="https://blog.identitydesign.us/how-to-make-bootstrap-nav-top-level-menu-clickable-with-dropdowns/">How to Make Bootstrap Nav Top Level Menu Clickable With Dropdowns</a> first appeared on <a href="https://blog.identitydesign.us">identity design</a>.</p>
<p>The post <a href="https://blog.identitydesign.us/how-to-make-bootstrap-nav-top-level-menu-clickable-with-dropdowns/">How to Make Bootstrap Nav Top Level Menu Clickable With Dropdowns</a> appeared first on <a href="https://blog.identitydesign.us">identity design</a>.</p>
<div class='yarpp yarpp-related yarpp-related-rss yarpp-template-list'>
<!-- YARPP List -->
<h3>Related posts:</h3><ol>
<li><a href="https://blog.identitydesign.us/fix-php-upgrade-error-whm-cpanel/" rel="bookmark" title="(Resolved) Fix PHP / MultiPHP Version Upgrade Error in WHM/Cpanel">(Resolved) Fix PHP / MultiPHP Version Upgrade Error in WHM/Cpanel</a></li>
<li><a href="https://blog.identitydesign.us/bootstrap-carousel-slider-transition-speed-time-interval/" rel="bookmark" title="How to Change Bootstrap Carousel Slider Transition Speed Time Interval">How to Change Bootstrap Carousel Slider Transition Speed Time Interval</a></li>
<li><a href="https://blog.identitydesign.us/how-to-remove-copyright-text-in-wp-bootstrap-starter-theme/" rel="bookmark" title="How to Remove &#8220;Bootstrap WordPress Theme&#8221; on WP Bootstrap Starter Template">How to Remove &#8220;Bootstrap WordPress Theme&#8221; on WP Bootstrap Starter Template</a></li>
</ol>
</div>
]]></description>
										<content:encoded><![CDATA[<p>Your bootstrap top level menu will not be clickable when you add more menus under it like sub-navs or dropdowns. There are some How-Tos of adding a snippet of JavaScript or php online to make it work, but it seems to be risky and complicated.</p>
<p>Here&#8217;s a simple solution changing 1 word from your Bootstrap HTML file:</p>
<pre>&lt;li class=&quot;dropdown&quot; data-dropdown=&quot;dropdown&quot;&gt; 
   &lt;a href=&quot;URL&quot; class=&quot;dropdown-toggle&quot; data-hover=&quot;dropdown&quot;&gt;X&lt;/a&gt; 
   &lt;ul class=&quot;sub-menu dropdown-menu&quot;&gt; 
      &lt;li&gt;&lt;/li&gt; 
   &lt;/ul&gt; 
&lt;/li&gt;</pre>
<p>Change <code>data-toggle</code> to <code>data-hover</code>. Done!</p>
<p>If you use &#8220;Bootstrap-basic&#8221; theme on your WordPress, look for a file called, &#8220;BootstrapBasicMyWalkerNavMenu.php&#8221; under &#8220;inc&#8221; folder. Find the code &#8220;data-toggle&#8221; and replace with &#8220;<strong>data-hover</strong>&#8220;. Isn&#8217;t this super easy!?</p><p>The post <a href="https://blog.identitydesign.us/how-to-make-bootstrap-nav-top-level-menu-clickable-with-dropdowns/">How to Make Bootstrap Nav Top Level Menu Clickable With Dropdowns</a> first appeared on <a href="https://blog.identitydesign.us">identity design</a>.</p><p>The post <a href="https://blog.identitydesign.us/how-to-make-bootstrap-nav-top-level-menu-clickable-with-dropdowns/">How to Make Bootstrap Nav Top Level Menu Clickable With Dropdowns</a> appeared first on <a href="https://blog.identitydesign.us">identity design</a>.</p>
<div class='yarpp yarpp-related yarpp-related-rss yarpp-template-list'>
<!-- YARPP List -->
<h3>Related posts:</h3><ol>
<li><a href="https://blog.identitydesign.us/fix-php-upgrade-error-whm-cpanel/" rel="bookmark" title="(Resolved) Fix PHP / MultiPHP Version Upgrade Error in WHM/Cpanel">(Resolved) Fix PHP / MultiPHP Version Upgrade Error in WHM/Cpanel</a></li>
<li><a href="https://blog.identitydesign.us/bootstrap-carousel-slider-transition-speed-time-interval/" rel="bookmark" title="How to Change Bootstrap Carousel Slider Transition Speed Time Interval">How to Change Bootstrap Carousel Slider Transition Speed Time Interval</a></li>
<li><a href="https://blog.identitydesign.us/how-to-remove-copyright-text-in-wp-bootstrap-starter-theme/" rel="bookmark" title="How to Remove &#8220;Bootstrap WordPress Theme&#8221; on WP Bootstrap Starter Template">How to Remove &#8220;Bootstrap WordPress Theme&#8221; on WP Bootstrap Starter Template</a></li>
</ol>
</div>
]]></content:encoded>
					
					<wfw:commentRss>https://blog.identitydesign.us/how-to-make-bootstrap-nav-top-level-menu-clickable-with-dropdowns/feed/</wfw:commentRss>
			<slash:comments>1</slash:comments>
		
		
			</item>
		<item>
		<title>How Create a HTML/CSS Ribbon. Simple and Light (None Jpg/Png Image)</title>
		<link>https://blog.identitydesign.us/html-css-ribbon-no-image/</link>
					<comments>https://blog.identitydesign.us/html-css-ribbon-no-image/#respond</comments>
		
		<dc:creator><![CDATA[djemals]]></dc:creator>
		<pubDate>Sat, 28 Jul 2018 00:17:43 +0000</pubDate>
				<category><![CDATA[Bootstrap]]></category>
		<category><![CDATA[How-To]]></category>
		<category><![CDATA[HTML/CSS/PHP/JavaScripts]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Website]]></category>
		<category><![CDATA[Wordpress]]></category>
		<guid isPermaLink="false">http://blog.identitydesign.us/?p=1019</guid>

					<description><![CDATA[<p>Here&#8217;s a simple html/css line that could generate a ribbon background with text. DEMO: CSS Ribbon for Your Website My Ribbon HTML Copy the code below and paste into your HTML document. &#60;div class="ribbon"&#62; &#038;nbsp&#038;nbsp&#038;nbsp&#038;nbsp&#60;span class="ribbon-text"&#62;My Ribbon&#60;/span&#62; &#60;/div&#62; CSS Copy the code below and paste into your CSS document. .ribbon { position: relative; background: blue; [&#8230;]</p>
<p>The post <a href="https://blog.identitydesign.us/html-css-ribbon-no-image/">How Create a HTML/CSS Ribbon. Simple and Light (None Jpg/Png Image)</a> first appeared on <a href="https://blog.identitydesign.us">identity design</a>.</p>
<p>The post <a href="https://blog.identitydesign.us/html-css-ribbon-no-image/">How Create a HTML/CSS Ribbon. Simple and Light (None Jpg/Png Image)</a> appeared first on <a href="https://blog.identitydesign.us">identity design</a>.</p>
<div class='yarpp yarpp-related yarpp-related-rss yarpp-template-list'>
<!-- YARPP List -->
<h3>Related posts:</h3><ol>
<li><a href="https://blog.identitydesign.us/a-simple-way-to-hide-featured-image-inside-post-with-css/" rel="bookmark" title="A Simple Way to Hide Featured Image inside Post with CSS">A Simple Way to Hide Featured Image inside Post with CSS</a></li>
<li><a href="https://blog.identitydesign.us/simple-javascript-redirect-code/" rel="bookmark" title="Simple JavaScript Redirect Code for HTML">Simple JavaScript Redirect Code for HTML</a></li>
<li><a href="https://blog.identitydesign.us/css-make-your-element-absolute-center-vertical-horizontal/" rel="bookmark" title="CSS / HTML: Make Absolute Center (Vertical &#038; Horizontal)">CSS / HTML: Make Absolute Center (Vertical &#038; Horizontal)</a></li>
</ol>
</div>
]]></description>
										<content:encoded><![CDATA[<p>Here&#8217;s a simple html/css line that could generate a ribbon background with text.</p>
<div class="board">
<h2 style="margin-top:0px;text-align:center;">DEMO: CSS Ribbon for Your Website</h2>
<div class="ribbon">
<span class="ribbon-text">My Ribbon</span>
</div>
</div>

<div class="clear"></div>
<h2>HTML</h2>
<p>Copy the code below and paste into your HTML document.	 		 	</p>
<pre>
&lt;div class="ribbon"&gt;
&nbsp&nbsp&nbsp&nbsp&lt;span class="ribbon-text"&gt;My Ribbon&lt;/span&gt;
&lt;/div&gt;
</pre>

<div class="clear"></div>
<h2>CSS</h2>
<p>Copy the code below and paste into your CSS document.</p>
<pre>
.ribbon {
    position: relative;
    background: blue;
    text-align: center;
    z-index: 1;
    width: 240px;
    height: 52px;
    margin: 0 auto;
}
.ribbon-text {
    position: relative;
    display: block;
    font-size: 2em;
    color: white;
 }
.ribbon:before {
    content: '';
    border: 26px solid blue;
    border-left-color: transparent;
    border-left-width: 14px;
    position: absolute;
    top: 0;
    left: -20px;
}
.ribbon:after {
    content: '';
    border: 26px solid blue;
    border-right-color: transparent;
    border-right-width: 21px;
    position: absolute;
    top: 0;
    right: -27px;
}
</pre>
<p>You can tweak around with different colors and size of the ribbon. Have fun!<br />
</p>
<div class="clear"></div>
<style>
.ribbon {
    position: relative;
    background: blue;
    text-align: center;
    z-index: 1;
    width: 240px;
    height: 52px;
    margin: 0 auto;
}
.ribbon-text {
    position: relative;
    display: block;
    font-size: 2em;
    color: white;
 }
.ribbon:before {
    content: '';
    border: 26px solid blue;
    border-left-color: transparent;
    border-left-width: 14px;
    position: absolute;
    top: 0;
    left: -20px;
}
.ribbon:after {
    content: '';
    border: 26px solid blue;
    border-right-color: transparent;
    border-right-width: 21px;
    position: absolute;
    top: 0;
    right: -27px;
}
</style><p>The post <a href="https://blog.identitydesign.us/html-css-ribbon-no-image/">How Create a HTML/CSS Ribbon. Simple and Light (None Jpg/Png Image)</a> first appeared on <a href="https://blog.identitydesign.us">identity design</a>.</p><p>The post <a href="https://blog.identitydesign.us/html-css-ribbon-no-image/">How Create a HTML/CSS Ribbon. Simple and Light (None Jpg/Png Image)</a> appeared first on <a href="https://blog.identitydesign.us">identity design</a>.</p>
<div class='yarpp yarpp-related yarpp-related-rss yarpp-template-list'>
<!-- YARPP List -->
<h3>Related posts:</h3><ol>
<li><a href="https://blog.identitydesign.us/a-simple-way-to-hide-featured-image-inside-post-with-css/" rel="bookmark" title="A Simple Way to Hide Featured Image inside Post with CSS">A Simple Way to Hide Featured Image inside Post with CSS</a></li>
<li><a href="https://blog.identitydesign.us/simple-javascript-redirect-code/" rel="bookmark" title="Simple JavaScript Redirect Code for HTML">Simple JavaScript Redirect Code for HTML</a></li>
<li><a href="https://blog.identitydesign.us/css-make-your-element-absolute-center-vertical-horizontal/" rel="bookmark" title="CSS / HTML: Make Absolute Center (Vertical &#038; Horizontal)">CSS / HTML: Make Absolute Center (Vertical &#038; Horizontal)</a></li>
</ol>
</div>
]]></content:encoded>
					
					<wfw:commentRss>https://blog.identitydesign.us/html-css-ribbon-no-image/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>How to Change Bootstrap Carousel Slider Transition Speed Time Interval</title>
		<link>https://blog.identitydesign.us/bootstrap-carousel-slider-transition-speed-time-interval/</link>
					<comments>https://blog.identitydesign.us/bootstrap-carousel-slider-transition-speed-time-interval/#comments</comments>
		
		<dc:creator><![CDATA[djemals]]></dc:creator>
		<pubDate>Tue, 16 Aug 2016 20:49:05 +0000</pubDate>
				<category><![CDATA[Bootstrap]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<guid isPermaLink="false">http://blog.identitydesign.us/?p=856</guid>

					<description><![CDATA[<p>Bootstrap is one of the most popular, powerful and light HTML/CSS/JavaScript Responsive framework for developers, and it&#8217;s also available for WordPress as well. To use the Bootstrap carousel slider below is setting to change slider time interval (transition speed of slider images). Don&#8217;t get confused with changing the core JavaScript or CSS files. Bootstrap Carousel [&#8230;]</p>
<p>The post <a href="https://blog.identitydesign.us/bootstrap-carousel-slider-transition-speed-time-interval/">How to Change Bootstrap Carousel Slider Transition Speed Time Interval</a> first appeared on <a href="https://blog.identitydesign.us">identity design</a>.</p>
<p>The post <a href="https://blog.identitydesign.us/bootstrap-carousel-slider-transition-speed-time-interval/">How to Change Bootstrap Carousel Slider Transition Speed Time Interval</a> appeared first on <a href="https://blog.identitydesign.us">identity design</a>.</p>
<div class='yarpp yarpp-related yarpp-related-rss yarpp-template-list'>
<!-- YARPP List -->
<h3>Related posts:</h3><ol>
<li><a href="https://blog.identitydesign.us/how-to-remove-copyright-text-in-wp-bootstrap-starter-theme/" rel="bookmark" title="How to Remove &#8220;Bootstrap WordPress Theme&#8221; on WP Bootstrap Starter Template">How to Remove &#8220;Bootstrap WordPress Theme&#8221; on WP Bootstrap Starter Template</a></li>
<li><a href="https://blog.identitydesign.us/how-to-make-bootstrap-nav-top-level-menu-clickable-with-dropdowns/" rel="bookmark" title="How to Make Bootstrap Nav Top Level Menu Clickable With Dropdowns">How to Make Bootstrap Nav Top Level Menu Clickable With Dropdowns</a></li>
<li><a href="https://blog.identitydesign.us/all-in-one-bootstrap-html-template/" rel="bookmark" title="All-in-one Bootstrap 4 / Jquery Responsive HTML Template">All-in-one Bootstrap 4 / Jquery Responsive HTML Template</a></li>
</ol>
</div>
]]></description>
										<content:encoded><![CDATA[<p><a href="https://sleekycase.com/" rel="attachment wp-att-940 noopener noreferrer" target="_blank" onClick="_gaq.push(['_trackEvent', 'ad-body', 'click', 'http://sleekycase.com/']);"><img decoding="async" src="https://blog.identitydesign.us/wp-content/uploads/2020/08/brochure-01.jpg" alt="Commemorate an important event!" width="940" class="alignnone size-full wp-image-940" /></a></p>
<p>Bootstrap is one of the most popular, powerful and light HTML/CSS/JavaScript Responsive framework for developers, and it&#8217;s also available for WordPress as well. To use the Bootstrap carousel slider below is setting to change slider time interval (transition speed of slider images). Don&#8217;t get confused with changing the core JavaScript or CSS files.</p>
<h2>Bootstrap Carousel Slider Time Interval Setting</h2>
<p>Default Bootstrap Carousel Slider Snippet</p>
<pre>&lt;div id="myCarousel" class="carousel slide" data-ride="carousel"&gt; 
 &lt;!-- Indicators --&gt;
 &lt;ol class="carousel-indicators"&gt;
 &lt;li data-target="#myCarousel" data-slide-to="0" class="active"&gt;&lt;/li&gt;
 &lt;li data-target="#myCarousel" data-slide-to="1"&gt;&lt;/li&gt;
 &lt;li data-target="#myCarousel" data-slide-to="2"&gt;&lt;/li&gt;
 &lt;li data-target="#myCarousel" data-slide-to="3"&gt;&lt;/li&gt;
 &lt;/ol&gt;
 
 &lt;!-- Wrapper for slides --&gt;
 &lt;div class="carousel-inner" role="listbox"&gt;
 &lt;div class="item active"&gt; &lt;img src="img_chania.jpg" alt="Chania"&gt; &lt;/div&gt;
 &lt;div class="item"&gt; &lt;img src="img_chania2.jpg" alt="Chania"&gt; &lt;/div&gt;
 &lt;div class="item"&gt; &lt;img src="img_flower.jpg" alt="Flower"&gt; &lt;/div&gt;
 &lt;div class="item"&gt; &lt;img src="img_flower2.jpg" alt="Flower"&gt; &lt;/div&gt;
 &lt;/div&gt;
 
 &lt;!-- Left and right controls --&gt; 
 &lt;a class="left carousel-control" href="#myCarousel" role="button" data-slide="prev"&gt; 
 &lt;span class="glyphicon glyphicon-chevron-left" aria-hidden="true"&gt;&lt;/span&gt;
 &lt;span class="sr-only"&gt;Previous&lt;/span&gt;
 &lt;/a&gt;
 &lt;a class="right carousel-control" href="#myCarousel" role="button" data-slide="next"&gt;
 &lt;span class="glyphicon glyphicon-chevron-right" aria-hidden="true"&gt;&lt;/span&gt;
 &lt;span class="sr-only"&gt;Next&lt;/span&gt;
 &lt;/a&gt; 
&lt;/div&gt;
</pre>

<h3>Add the &#8216;data-interval&#8217; on the first line of code</h3>
<pre>&lt;div id="myCarousel" class="carousel slide" data-ride="carousel" data-interval="3000"&gt;&lt;/div&gt;</pre>
<p>1000 is 1 second, and 3000 is 3 seconds. You can replace &#8216;3000&#8217; with your desired slider speed.</p>
<h2>Change Slider Animation Time in CSS</h2>
<p>The default slider animation time, which is called &#8216;transition&#8217; property, is 0.6 seconds. You can also slow down or make the animation time faster in css.<br />
<img loading="lazy" decoding="async" src="https://blog.identitydesign.us/wp-content/uploads/2016/08/Screen-Shot-2018-09-12-at-11.47.45-AM.png" alt="Animation time" width="702" height="312" class="alignnone size-full wp-image-1058" srcset="https://blog.identitydesign.us/wp-content/uploads/2016/08/Screen-Shot-2018-09-12-at-11.47.45-AM.png 702w, https://blog.identitydesign.us/wp-content/uploads/2016/08/Screen-Shot-2018-09-12-at-11.47.45-AM-300x133.png 300w, https://blog.identitydesign.us/wp-content/uploads/2016/08/Screen-Shot-2018-09-12-at-11.47.45-AM-624x277.png 624w" sizes="auto, (max-width: 702px) 100vw, 702px" /></p>
<p>On you own css, add the followeing lines if you want to change the animation time. To make the animation slower, increase the time by 1.2 seconds for example:</p>
<pre>
.carousel-inner>.item {
    -webkit-transition: -webkit-transform 1.2s ease-in-out !important;
    -o-transition: -o-transform 1.2s ease-in-out !important;
    transition: transform 1.2s ease-in-out !important;
}
</pre>
<div class="display-posts-listing display-related">
<div class="listing-item">
		<a class="image" href="https://blog.identitydesign.us/all-in-one-bootstrap-html-template/"><img loading="lazy" decoding="async" width="300" height="200" src="https://blog.identitydesign.us/wp-content/uploads/2020/10/300x200-html.jpg" class="attachment-medium size-medium wp-post-image" alt="Bootstrap HTML all-in-one" scale="0"></a> <a class="title" href="https://blog.identitydesign.us/all-in-one-bootstrap-html-template/">All-in-one Bootstrap 4 / Jquery Responsive HTML Template</a></div>
<div class="listing-item">
		<a class="image" href="https://blog.identitydesign.us/bootstrap-uneven-column-heights/"><img loading="lazy" decoding="async" width="300" height="200" src="https://blog.identitydesign.us/wp-content/uploads/2016/08/banner-bs1-300x200.jpg" class="attachment-medium size-medium wp-post-image" alt="Bootstrap Column Height Solution" scale="0"></a> <a class="title" href="https://blog.identitydesign.us/bootstrap-uneven-column-heights/">Bootstrap Uneven Column Heights Issue in Layout Grid System</a></div>
<div class="listing-item">
		<a class="image" href="https://blog.identitydesign.us/how-to-remove-copyright-text-in-wp-bootstrap-starter-theme/"><img loading="lazy" decoding="async" width="300" height="200" src="https://blog.identitydesign.us/wp-content/uploads/2019/05/300x200-bootstrap4.jpg" class="attachment-medium size-medium wp-post-image" alt="Bootstrap Remove Copyright" scale="0"></a> <a class="title" href="https://blog.identitydesign.us/how-to-remove-copyright-text-in-wp-bootstrap-starter-theme/">How to Remove “Bootstrap WordPress Theme” on WP Bootstrap Starter Template</a></div>
<div class="listing-item"><a class="image" href="https://blog.identitydesign.us/how-to-make-bootstrap-nav-top-level-menu-clickable-with-dropdowns/"><img loading="lazy" decoding="async" width="300" height="200" src="https://blog.identitydesign.us/wp-content/uploads/2018/08/300x200-topnav-300x200.jpg" class="attachment-medium size-medium wp-post-image" alt="Bootstrap Top Level Menu Clickable" scale="0"></a> <a class="title" href="https://blog.identitydesign.us/how-to-make-bootstrap-nav-top-level-menu-clickable-with-dropdowns/">How to Make Bootstrap Nav Top Level Menu Clickable With Dropdowns</a></div>
<div class="listing-item"><a class="image" href="https://blog.identitydesign.us/free-stockphoto-sites-for-commercial-use/"><img loading="lazy" decoding="async" width="300" height="200" src="https://blog.identitydesign.us/wp-content/uploads/2014/09/stockphoto.jpg" class="attachment-medium size-medium wp-post-image" alt="Stock Photo" scale="0"></a> <a class="title" href="https://blog.identitydesign.us/free-stockphoto-sites-for-commercial-use/">Best Free Stock Photo Sites for Commercial Use</a></div>
<div class="listing-item"><a class="image" href="https://blog.identitydesign.us/freebies-foodie-website-design-mockup-template/"><img loading="lazy" decoding="async" width="300" height="200" src="https://blog.identitydesign.us/wp-content/uploads/2015/10/Foodie-thumb.jpg" class="attachment-medium size-medium wp-post-image" alt="Foodie Website thumb" scale="0"></a> <a class="title" href="https://blog.identitydesign.us/freebies-foodie-website-design-mockup-template/">Freebies: Foodie Website Mock Up Template (PSD)</a></div>
</div><p>The post <a href="https://blog.identitydesign.us/bootstrap-carousel-slider-transition-speed-time-interval/">How to Change Bootstrap Carousel Slider Transition Speed Time Interval</a> first appeared on <a href="https://blog.identitydesign.us">identity design</a>.</p><p>The post <a href="https://blog.identitydesign.us/bootstrap-carousel-slider-transition-speed-time-interval/">How to Change Bootstrap Carousel Slider Transition Speed Time Interval</a> appeared first on <a href="https://blog.identitydesign.us">identity design</a>.</p>
<div class='yarpp yarpp-related yarpp-related-rss yarpp-template-list'>
<!-- YARPP List -->
<h3>Related posts:</h3><ol>
<li><a href="https://blog.identitydesign.us/how-to-remove-copyright-text-in-wp-bootstrap-starter-theme/" rel="bookmark" title="How to Remove &#8220;Bootstrap WordPress Theme&#8221; on WP Bootstrap Starter Template">How to Remove &#8220;Bootstrap WordPress Theme&#8221; on WP Bootstrap Starter Template</a></li>
<li><a href="https://blog.identitydesign.us/how-to-make-bootstrap-nav-top-level-menu-clickable-with-dropdowns/" rel="bookmark" title="How to Make Bootstrap Nav Top Level Menu Clickable With Dropdowns">How to Make Bootstrap Nav Top Level Menu Clickable With Dropdowns</a></li>
<li><a href="https://blog.identitydesign.us/all-in-one-bootstrap-html-template/" rel="bookmark" title="All-in-one Bootstrap 4 / Jquery Responsive HTML Template">All-in-one Bootstrap 4 / Jquery Responsive HTML Template</a></li>
</ol>
</div>
]]></content:encoded>
					
					<wfw:commentRss>https://blog.identitydesign.us/bootstrap-carousel-slider-transition-speed-time-interval/feed/</wfw:commentRss>
			<slash:comments>6</slash:comments>
		
		
			</item>
	</channel>
</rss>
