<?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>HTML/CSS/PHP/JavaScripts - identity design</title>
	<atom:link href="https://blog.identitydesign.us/category/javascripts/feed/" rel="self" type="application/rss+xml" />
	<link>https://blog.identitydesign.us/category/javascripts/</link>
	<description>Web Tips &#38; Free Templates</description>
	<lastBuildDate>Mon, 14 Jul 2025 00:44:57 +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>HTML/CSS/PHP/JavaScripts - identity design</title>
	<link>https://blog.identitydesign.us/category/javascripts/</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>Stop Losing Your Code — Use an Astra Child Theme!</title>
		<link>https://blog.identitydesign.us/install-astra-child-theme-wordpress/</link>
					<comments>https://blog.identitydesign.us/install-astra-child-theme-wordpress/#respond</comments>
		
		<dc:creator><![CDATA[djemals]]></dc:creator>
		<pubDate>Mon, 14 Jul 2025 00:44:57 +0000</pubDate>
				<category><![CDATA[How-To]]></category>
		<category><![CDATA[HTML/CSS/PHP/JavaScripts]]></category>
		<category><![CDATA[plugins]]></category>
		<category><![CDATA[Theme]]></category>
		<category><![CDATA[Website]]></category>
		<category><![CDATA[Wordpress]]></category>
		<guid isPermaLink="false">https://blog.identitydesign.us/?p=1945</guid>

					<description><![CDATA[<p>If you&#8217;ve ever added custom functions to your functions.php file—only to find them gone after a few weeks—it’s likely because your parent theme (like Astra) was updated. WordPress themes often reset modified files during updates, which can cause your hard work to disappear. The solution? Use a Child Theme. Why Your Code Disappears When you [&#8230;]</p>
<p>The post <a href="https://blog.identitydesign.us/install-astra-child-theme-wordpress/">Stop Losing Your Code — Use an Astra Child Theme!</a> first appeared on <a href="https://blog.identitydesign.us">identity design</a>.</p>
<p>The post <a href="https://blog.identitydesign.us/install-astra-child-theme-wordpress/">Stop Losing Your Code — Use an Astra Child 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/fix-and-remove-wp-vcd-malware-virus-in-wordpress/" rel="bookmark" title="Malware/Virus: Fix and Remove &#8220;WP-VCD&#8221; from my WordPress">Malware/Virus: Fix and Remove &#8220;WP-VCD&#8221; from my WordPress</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/how-to-duplicate-migrate-wordpress-website/" rel="bookmark" title="How to Duplicate/Migrate WordPress Website &#8211; Duplicator">How to Duplicate/Migrate WordPress Website &#8211; Duplicator</a></li>
</ol>
</div>
]]></description>
										<content:encoded><![CDATA[<p>If you&#8217;ve ever added custom functions to your <strong>functions.php</strong> file—only to find them gone after a few weeks—it’s likely because your parent theme (like Astra) was updated. WordPress themes often reset modified files during updates, which can cause your hard work to disappear. The solution? Use a Child Theme.</p>
<h2>Why Your Code Disappears</h2>
<p>When you add code directly to the parent theme’s <code>functions.php</code>, that file gets overwritten whenever the theme is updated—whether automatically or manually. If your carefully built features suddenly vanish, it&#8217;s time to switch to a Child Theme setup.</p>
<h2>What is a Child Theme?</h2>
<p>A Child Theme is a safe way to extend or customize a WordPress theme without touching the original (parent) theme files. It inherits everything from the parent theme, but allows you to add or override specific functionality—like custom functions, styles, or templates.</p>
<h2>How to Install an Astra Child Theme in WordPress</h2>
<p>You have two easy options:</p>
<ol>
<li>
    <strong>Generate your own:</strong> Visit the official <a href="https://wpastra.com/child-theme-generator/" target="_blank">Astra Child Theme Generator</a> and download a ready-to-use child theme ZIP file.
  </li>
<li>
    <strong>Download ours directly:</strong> Use our pre-made version here:<br />
    <a href="https://blog.identitydesign.us/wp-content/uploads/2025/07/astra-child.zip" target="_blank">astra-child.zip</a>
  </li>
</ol>
<h2>How to Install the Child Theme (Step-by-Step)</h2>
<ol>
<li>Log in to your WordPress admin dashboard.</li>
<li>Go to <strong>Appearance → Themes</strong></li>
<li>Click the <strong>“Add New”</strong> button, then <strong>“Upload Theme”</strong></li>
<li>Upload the <code>astra-child.zip</code> file</li>
<li>Activate the theme: You&#8217;ll now see “Astra Child” as an option</li>
</ol>
<h2>Where to Add Your Custom Code</h2>
<p>Now that you’re using a child theme, open the <code>functions.php</code> file inside the child theme folder. This is where you can safely paste in your code snippets—such as custom shortcodes, script enqueueing, or other PHP-based logic—without fear of losing them after updates.</p>
<h2>Bonus Tip: Astra Pro Compatibility</h2>
<p>If you&#8217;re using Astra Pro, don’t worry—your Pro features are handled by the <strong>Astra Pro plugin</strong> and will continue to work regardless of whether you&#8217;re using the parent or child theme. Just make sure the plugin remains activated.</p>
<h2>Final Thoughts</h2>
<p>If you’ve ever experienced your <code>functions.php</code> customizations disappearing, it’s likely due to a theme update. The permanent fix is simple: switch to a Child Theme. It takes just a few minutes and protects your customizations for the long haul.</p>
<p><strong>Need help? Reach out via <a href="https://blog.identitydesign.us/contact" target="_blank">our contact page</a> and we’d be happy to assist.</strong></p><p>The post <a href="https://blog.identitydesign.us/install-astra-child-theme-wordpress/">Stop Losing Your Code — Use an Astra Child Theme!</a> first appeared on <a href="https://blog.identitydesign.us">identity design</a>.</p><p>The post <a href="https://blog.identitydesign.us/install-astra-child-theme-wordpress/">Stop Losing Your Code — Use an Astra Child 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/fix-and-remove-wp-vcd-malware-virus-in-wordpress/" rel="bookmark" title="Malware/Virus: Fix and Remove &#8220;WP-VCD&#8221; from my WordPress">Malware/Virus: Fix and Remove &#8220;WP-VCD&#8221; from my WordPress</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/how-to-duplicate-migrate-wordpress-website/" rel="bookmark" title="How to Duplicate/Migrate WordPress Website &#8211; Duplicator">How to Duplicate/Migrate WordPress Website &#8211; Duplicator</a></li>
</ol>
</div>
]]></content:encoded>
					
					<wfw:commentRss>https://blog.identitydesign.us/install-astra-child-theme-wordpress/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Safari Browser Phone Numbers Forcing Blue? Here&#8217;s How to Fix It</title>
		<link>https://blog.identitydesign.us/safari-phone-number-blue-fix/</link>
					<comments>https://blog.identitydesign.us/safari-phone-number-blue-fix/#respond</comments>
		
		<dc:creator><![CDATA[djemals]]></dc:creator>
		<pubDate>Sun, 11 May 2025 06:23:26 +0000</pubDate>
				<category><![CDATA[CSSonly]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[How-To]]></category>
		<category><![CDATA[HTML/CSS/PHP/JavaScripts]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Website]]></category>
		<guid isPermaLink="false">https://blog.identitydesign.us/?p=1931</guid>

					<description><![CDATA[<p>If you&#8217;re designing for mobile Safari and notice your phone numbers mysteriously turning blue and underlined, you&#8217;re not alone. By default, Safari automatically detects phone numbers and converts them into clickable links—often overriding your CSS styles in the process. The Problem Safari’s automatic phone number detection is helpful in some cases, but for designers and [&#8230;]</p>
<p>The post <a href="https://blog.identitydesign.us/safari-phone-number-blue-fix/">Safari Browser Phone Numbers Forcing Blue? Here’s How to Fix It</a> first appeared on <a href="https://blog.identitydesign.us">identity design</a>.</p>
<p>The post <a href="https://blog.identitydesign.us/safari-phone-number-blue-fix/">Safari Browser Phone Numbers Forcing Blue? Here&#8217;s How to Fix It</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/responsive-google-adsense/" rel="bookmark" title="Responsive Google Adsense is Easy!">Responsive Google Adsense is Easy!</a></li>
<li><a href="https://blog.identitydesign.us/force-the-anchor-tag-not-clickable-with-css/" rel="bookmark" title="Force an Anchor Tag Not Clickable with CSS">Force an Anchor Tag Not Clickable with CSS</a></li>
<li><a href="https://blog.identitydesign.us/how-to-make-an-anchor-not-clickable-in-html/" rel="bookmark" title="CSS: How to Make an Anchor Not Clickable in HTML">CSS: How to Make an Anchor Not Clickable in HTML</a></li>
</ol>
</div>
]]></description>
										<content:encoded><![CDATA[<p>If you&#8217;re designing for mobile Safari and notice your phone numbers mysteriously turning blue and underlined, you&#8217;re not alone. By default, Safari automatically detects phone numbers and converts them into clickable links—often overriding your CSS styles in the process.</p>
<h2>The Problem</h2>
<p>Safari’s automatic phone number detection is helpful in some cases, but for designers and developers, it can break the intended layout or brand consistency—especially when you&#8217;re working with custom fonts or color schemes.</p>
<h2>The Simple Fix</h2>
<p>The good news is that you can disable this behavior with just one line of code in your <strong>&lt;head&gt;</strong> tag:</p>
<pre>
&lt;meta name="format-detection" content="telephone=no"&gt;
</pre>
<p>This tells Safari not to automatically detect and format telephone numbers, allowing you full control over how numbers appear on your site.</p>
<h2>Pro Tip</h2>
<p>If you still want numbers to be clickable but styled your way, you can manually wrap them in <strong>&lt;a href=&#8221;tel:1234567890&#8243;&gt;</strong> tags and apply your own CSS:</p>
<pre>
<a href="tel:1234567890" class="phone">(123) 456-7890</a>
</pre>
<p>Then style it however you like:</p>
<pre>
.phone {
  color: inherit;
  text-decoration: none;
  font-weight: 600;
}
</pre>
<h2>Final Thoughts</h2>
<p>Safari’s auto-detection can be helpful for users, but problematic for designers. With a simple meta tag or some controlled styling, you can prevent unwanted design changes and keep your UI consistent across all browsers.</p>
<p>For more quick dev tips like this, check back at <a href="https://blog.identitydesign.us" target="_blank">blog.identitydesign.us</a></p><p>The post <a href="https://blog.identitydesign.us/safari-phone-number-blue-fix/">Safari Browser Phone Numbers Forcing Blue? Here’s How to Fix It</a> first appeared on <a href="https://blog.identitydesign.us">identity design</a>.</p><p>The post <a href="https://blog.identitydesign.us/safari-phone-number-blue-fix/">Safari Browser Phone Numbers Forcing Blue? Here&#8217;s How to Fix It</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/responsive-google-adsense/" rel="bookmark" title="Responsive Google Adsense is Easy!">Responsive Google Adsense is Easy!</a></li>
<li><a href="https://blog.identitydesign.us/force-the-anchor-tag-not-clickable-with-css/" rel="bookmark" title="Force an Anchor Tag Not Clickable with CSS">Force an Anchor Tag Not Clickable with CSS</a></li>
<li><a href="https://blog.identitydesign.us/how-to-make-an-anchor-not-clickable-in-html/" rel="bookmark" title="CSS: How to Make an Anchor Not Clickable in HTML">CSS: How to Make an Anchor Not Clickable in HTML</a></li>
</ol>
</div>
]]></content:encoded>
					
					<wfw:commentRss>https://blog.identitydesign.us/safari-phone-number-blue-fix/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>How to Fix Missing Google Fonts After Changing Your WordPress Elementor Website Domain</title>
		<link>https://blog.identitydesign.us/fix-missing-google-fonts-elementor-domain-change/</link>
					<comments>https://blog.identitydesign.us/fix-missing-google-fonts-elementor-domain-change/#respond</comments>
		
		<dc:creator><![CDATA[djemals]]></dc:creator>
		<pubDate>Tue, 06 May 2025 05:54:58 +0000</pubDate>
				<category><![CDATA[backend]]></category>
		<category><![CDATA[How-To]]></category>
		<category><![CDATA[HTML/CSS/PHP/JavaScripts]]></category>
		<category><![CDATA[plugins]]></category>
		<category><![CDATA[Website]]></category>
		<category><![CDATA[Wordpress]]></category>
		<guid isPermaLink="false">https://blog.identitydesign.us/?p=1925</guid>

					<description><![CDATA[<p>How to Fix Missing Google Fonts After Changing Your Elementor Website Domain If you&#8217;ve built your website using Elementor on a temporary domain and later connected it to your official domain, you might encounter an issue where Google Fonts are not loading or appearing broken. This is a common problem that usually stems from outdated [&#8230;]</p>
<p>The post <a href="https://blog.identitydesign.us/fix-missing-google-fonts-elementor-domain-change/">How to Fix Missing Google Fonts After Changing Your WordPress Elementor Website Domain</a> first appeared on <a href="https://blog.identitydesign.us">identity design</a>.</p>
<p>The post <a href="https://blog.identitydesign.us/fix-missing-google-fonts-elementor-domain-change/">How to Fix Missing Google Fonts After Changing Your WordPress Elementor Website Domain</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/loading-webfonts-https-ssl/" rel="bookmark" title="Resolved! Loading Your Google Fonts Over https (SSL) Sites">Resolved! Loading Your Google Fonts Over https (SSL) Sites</a></li>
<li><a href="https://blog.identitydesign.us/how-to-duplicate-migrate-wordpress-website/" rel="bookmark" title="How to Duplicate/Migrate WordPress Website &#8211; Duplicator">How to Duplicate/Migrate WordPress Website &#8211; Duplicator</a></li>
<li><a href="https://blog.identitydesign.us/get-a-free-ssl-certificate-secure-socket-layer-change-http-to-https-for-your-website-domain/" rel="bookmark" title="Get a free SSL Certificate (Secure Socket Layer) &#8211; Change HTTP to HTTPS for your website domain">Get a free SSL Certificate (Secure Socket Layer) &#8211; Change HTTP to HTTPS for your website domain</a></li>
</ol>
</div>
]]></description>
										<content:encoded><![CDATA[<h1>How to Fix Missing Google Fonts After Changing Your Elementor Website Domain</h1>
<p>If you&#8217;ve built your website using Elementor on a temporary domain and later connected it to your official domain, you might encounter an issue where <strong>Google Fonts are not loading or appearing broken</strong>. This is a common problem that usually stems from outdated internal URLs or cached files. Here’s a step-by-step guide to fix it.</p>
<h2>Step 1: Update Elementor URLs</h2>
<p>When changing domains, Elementor may still be referencing the old domain path for fonts and styles.</p>
<ul>
<li>Go to <strong>WordPress Dashboard &gt; Elementor &gt; Tools &gt; Replace URL</strong></li>
<li>Enter your <strong>old URL</strong> (e.g., https://sitename.hostinger.com)</li>
<li>Enter your <strong>new URL</strong> (e.g., https://yourdomain.com)</li>
<li>Click the <strong>Replace URL</strong> button</li>
</ul>
<h2>Step 2: Regenerate Elementor CSS Files</h2>
<p>Elementor stores styles in cached CSS files, which need to be regenerated after a domain change.</p>
<ul>
<li>Go to <strong>Elementor &gt; Tools &gt; General</strong></li>
<li>Click <strong>Regenerate CSS</strong></li>
<li>Click <strong>Sync Library</strong> if necessary</li>
</ul>
<h2>Step 3: Clear Browser and Plugin Cache</h2>
<p>Even after updating URLs, cached files from your browser or caching plugins might still cause issues.</p>
<ul>
<li>Clear your browser cache (Chrome, Safari, Firefox, etc.)</li>
<li>Clear cache from plugins like LiteSpeed Cache, WP Rocket, or Autoptimize</li>
</ul>
<h2>Step 4: Check Font Load Status in Developer Tools</h2>
<p>Use Chrome DevTools (F12) to inspect if Google Fonts are loading properly in the <code>&lt;head&gt;</code> section.</p>
<ul>
<li>Look for a tag like <code>&lt;link href="https://fonts.googleapis.com/..."&gt;</code></li>
<li>Check the Console tab for any CORS or Mixed Content errors</li>
</ul>
<h2>Step 5: Ensure SSL and Mixed Content Are Correct</h2>
<p>If your new domain lacks a proper SSL certificate or is loading resources over HTTP, Google Fonts may be blocked.</p>
<ul>
<li>Ensure your domain has a valid SSL certificate installed</li>
<li>Use the <strong>Really Simple SSL</strong> plugin to force HTTPS for all content</li>
</ul>
<h2>Final Thoughts</h2>
<p>By following these 5 steps, you can resolve most font loading issues after migrating your Elementor site to a new domain. The most critical action is using Elementor’s <strong>Replace URL</strong> tool to correct outdated paths in your styles and settings.</p><p>The post <a href="https://blog.identitydesign.us/fix-missing-google-fonts-elementor-domain-change/">How to Fix Missing Google Fonts After Changing Your WordPress Elementor Website Domain</a> first appeared on <a href="https://blog.identitydesign.us">identity design</a>.</p><p>The post <a href="https://blog.identitydesign.us/fix-missing-google-fonts-elementor-domain-change/">How to Fix Missing Google Fonts After Changing Your WordPress Elementor Website Domain</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/loading-webfonts-https-ssl/" rel="bookmark" title="Resolved! Loading Your Google Fonts Over https (SSL) Sites">Resolved! Loading Your Google Fonts Over https (SSL) Sites</a></li>
<li><a href="https://blog.identitydesign.us/how-to-duplicate-migrate-wordpress-website/" rel="bookmark" title="How to Duplicate/Migrate WordPress Website &#8211; Duplicator">How to Duplicate/Migrate WordPress Website &#8211; Duplicator</a></li>
<li><a href="https://blog.identitydesign.us/get-a-free-ssl-certificate-secure-socket-layer-change-http-to-https-for-your-website-domain/" rel="bookmark" title="Get a free SSL Certificate (Secure Socket Layer) &#8211; Change HTTP to HTTPS for your website domain">Get a free SSL Certificate (Secure Socket Layer) &#8211; Change HTTP to HTTPS for your website domain</a></li>
</ol>
</div>
]]></content:encoded>
					
					<wfw:commentRss>https://blog.identitydesign.us/fix-missing-google-fonts-elementor-domain-change/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>How to Suppress Errors and Warnings in WordPress for Emergencies</title>
		<link>https://blog.identitydesign.us/how-to-suppress-errors-wordpress/</link>
					<comments>https://blog.identitydesign.us/how-to-suppress-errors-wordpress/#respond</comments>
		
		<dc:creator><![CDATA[djemals]]></dc:creator>
		<pubDate>Wed, 06 Nov 2024 22:58:07 +0000</pubDate>
				<category><![CDATA[backend]]></category>
		<category><![CDATA[How-To]]></category>
		<category><![CDATA[HTML/CSS/PHP/JavaScripts]]></category>
		<category><![CDATA[Website]]></category>
		<category><![CDATA[Wordpress]]></category>
		<guid isPermaLink="false">https://blog.identitydesign.us/?p=1912</guid>

					<description><![CDATA[<p>How to Suppress Errors and Warnings in WordPress for Emergencies There are times in website development when errors or warnings start displaying on your WordPress site, sometimes affecting its look and functionality. If you’re facing a critical issue on your live site and need a quick way to hide these errors temporarily, WordPress allows you [&#8230;]</p>
<p>The post <a href="https://blog.identitydesign.us/how-to-suppress-errors-wordpress/">How to Suppress Errors and Warnings in WordPress for Emergencies</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-suppress-errors-wordpress/">How to Suppress Errors and Warnings in WordPress for Emergencies</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-disable-your-website-wordpress/" rel="bookmark" title="How to Disable / Maintenance Mode Your Website on WordPress">How to Disable / Maintenance Mode Your Website on WordPress</a></li>
<li><a href="https://blog.identitydesign.us/contact-form-7-submit-not-working/" rel="bookmark" title="WordPress Contact Form 7 Submit Button Not Working (Nonstop Wheel Spinning)">WordPress Contact Form 7 Submit Button Not Working (Nonstop Wheel Spinning)</a></li>
<li><a href="https://blog.identitydesign.us/wordpress-multisite/" rel="bookmark" title="Make Your WordPress into a Multisite (Create a Network)">Make Your WordPress into a Multisite (Create a Network)</a></li>
</ol>
</div>
]]></description>
										<content:encoded><![CDATA[<article>
<h2>How to Suppress Errors and Warnings in WordPress for Emergencies</h2>
<p>There are times in website development when errors or warnings start displaying on your WordPress site, sometimes affecting its look and functionality. If you’re facing a critical issue on your live site and need a quick way to hide these errors temporarily, WordPress allows you to suppress them in emergencies by adding a couple of lines of code.</p>
<h3>Suppressing Errors and Warnings in WordPress</h3>
<p>WordPress has a built-in debugging mode that developers use to catch issues. However, on a live website, you typically want this debugging turned off to prevent visitors from seeing backend issues. Here’s how to do it:</p>
<h4>1. Locate <code>wp-config.php</code></h4>
<p>First, connect to your website using an FTP client or access your hosting control panel, then find and open the <code>wp-config.php</code> file, which is in the root directory of your WordPress installation.</p>
<h4>2. Set WP_DEBUG to False</h4>
<p>Make sure the debugging mode is off by setting <code>WP_DEBUG</code> to <code>false</code>. Look for the following line in your <code>wp-config.php</code> file:</p>
<pre>define( 'WP_DEBUG', false );</pre>
<h4>3. Add the Suppression Code</h4>
<p>Right after the <code>WP_DEBUG</code> line, add the following code to suppress any errors or warnings:</p>
<pre>define( 'WP_DEBUG', false );
/*Suppress any errors or warnings*/
error_reporting(0);
@ini_set('display_errors', 0);</pre>
<p>Here’s what each line does:</p>
<ul>
<li><strong><code>error_reporting(0);</code></strong> – This tells the server not to report any errors, effectively silencing warnings, notices, and error messages.</li>
<li><strong><code>@ini_set('display_errors', 0);</code></strong> – This setting prevents errors from being displayed to users by setting <code>display_errors</code> to <code>0</code>.</li>
</ul>
<h3>Why Use This Code?</h3>
<p>When you’re in an emergency situation—such as if your site is displaying unsightly errors or breaking the layout due to warnings—this code can provide a quick solution. Keep in mind that it’s best to suppress errors only as a temporary measure. Long-term, you should address the underlying issues causing the warnings or errors to keep your website stable and secure.</p>
<h3>Important Note</h3>
<p>While suppressing errors can help in an emergency, it’s crucial to track down the source of any issues afterward. Hidden errors can make debugging more difficult and may affect website performance or functionality over time. For a better long-term approach, consider using a staging environment where you can fix issues without affecting your live site.</p>
<h3>Conclusion</h3>
<p>In emergencies, suppressing errors and warnings in WordPress is a helpful, quick solution to keep your site looking professional and functional. Just add the code above to your <code>wp-config.php</code> file after <code>WP_DEBUG</code> is set to <code>false</code>, and your visitors won’t see any backend issues on the front end. However, always remember to investigate and resolve any issues afterward for a stable, error-free site.</p>
</article><p>The post <a href="https://blog.identitydesign.us/how-to-suppress-errors-wordpress/">How to Suppress Errors and Warnings in WordPress for Emergencies</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-suppress-errors-wordpress/">How to Suppress Errors and Warnings in WordPress for Emergencies</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-disable-your-website-wordpress/" rel="bookmark" title="How to Disable / Maintenance Mode Your Website on WordPress">How to Disable / Maintenance Mode Your Website on WordPress</a></li>
<li><a href="https://blog.identitydesign.us/contact-form-7-submit-not-working/" rel="bookmark" title="WordPress Contact Form 7 Submit Button Not Working (Nonstop Wheel Spinning)">WordPress Contact Form 7 Submit Button Not Working (Nonstop Wheel Spinning)</a></li>
<li><a href="https://blog.identitydesign.us/wordpress-multisite/" rel="bookmark" title="Make Your WordPress into a Multisite (Create a Network)">Make Your WordPress into a Multisite (Create a Network)</a></li>
</ol>
</div>
]]></content:encoded>
					
					<wfw:commentRss>https://blog.identitydesign.us/how-to-suppress-errors-wordpress/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>CSS: How to Make an Anchor Not Clickable in HTML</title>
		<link>https://blog.identitydesign.us/how-to-make-an-anchor-not-clickable-in-html/</link>
					<comments>https://blog.identitydesign.us/how-to-make-an-anchor-not-clickable-in-html/#respond</comments>
		
		<dc:creator><![CDATA[djemals]]></dc:creator>
		<pubDate>Tue, 01 Oct 2024 18:43:52 +0000</pubDate>
				<category><![CDATA[CSSonly]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[HTML/CSS/PHP/JavaScripts]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Website]]></category>
		<guid isPermaLink="false">https://blog.identitydesign.us/?p=1889</guid>

					<description><![CDATA[<p>When building web pages, there are times you might want an anchor link (&#60;a&#62;) to be visible but non-functional. Perhaps you&#8217;re still working on that section of your website, or the link is for decorative purposes only. Whatever the reason, making an anchor not clickable is simple with a few CSS rules. The Code Snippet [&#8230;]</p>
<p>The post <a href="https://blog.identitydesign.us/how-to-make-an-anchor-not-clickable-in-html/">CSS: How to Make an Anchor Not Clickable in HTML</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-an-anchor-not-clickable-in-html/">CSS: How to Make an Anchor Not Clickable in HTML</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/force-the-anchor-tag-not-clickable-with-css/" rel="bookmark" title="Force an Anchor Tag Not Clickable with CSS">Force an Anchor Tag Not Clickable with CSS</a></li>
<li><a href="https://blog.identitydesign.us/css-only-animation-zoom-on-hover/" rel="bookmark" title="CSS Only Animation: Zoom on Hover">CSS Only Animation: Zoom on Hover</a></li>
</ol>
</div>
]]></description>
										<content:encoded><![CDATA[<p>When building web pages, there are times you might want an anchor link (<code>&lt;a&gt;</code>) to be visible but non-functional. Perhaps you&#8217;re still working on that section of your website, or the link is for decorative purposes only. Whatever the reason, making an anchor not clickable is simple with a few CSS rules.</p>
<h3>The Code Snippet</h3>
<p>Let’s start with a quick code snippet that makes an anchor tag unclickable:</p>
<pre>&lt;a href="#" class="inactive-link"&gt;Unclickable Link&lt;/a&gt;</pre>
<p>Then, in your CSS, add the following styles:</p>
<pre>.inactive-link {
    pointer-events: none;
    cursor: default;
}
</pre>
<h3>A Use Case for This Approach</h3>
<p>Let’s say you have a navigation menu, but one of the pages is under construction. You still want the link to be visible for design consistency, but don’t want users to interact with it. Here’s an example:</p>
<pre>&lt;nav&gt;
  &lt;ul&gt;
    &lt;li&gt;&lt;a href="/home"&gt;Home&lt;/a&gt;&lt;/li&gt;
    &lt;li&gt;&lt;a href="/about"&gt;About&lt;/a&gt;&lt;/li&gt;
    &lt;li&gt;&lt;a href="#" class="inactive-link"&gt;Contact (Coming Soon)&lt;/a&gt;&lt;/li&gt;
  &lt;/ul&gt;
&lt;/nav&gt;
</pre>
<h3>Conclusion</h3>
<p>With just a couple of lines of CSS, you can make any anchor tag unclickable. It’s a quick and effective way to manage inactive or placeholder links on your website. Try this technique next time you need a link to be visible but non-functional!</p><p>The post <a href="https://blog.identitydesign.us/how-to-make-an-anchor-not-clickable-in-html/">CSS: How to Make an Anchor Not Clickable in HTML</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-an-anchor-not-clickable-in-html/">CSS: How to Make an Anchor Not Clickable in HTML</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/force-the-anchor-tag-not-clickable-with-css/" rel="bookmark" title="Force an Anchor Tag Not Clickable with CSS">Force an Anchor Tag Not Clickable with CSS</a></li>
<li><a href="https://blog.identitydesign.us/css-only-animation-zoom-on-hover/" rel="bookmark" title="CSS Only Animation: Zoom on Hover">CSS Only Animation: Zoom on Hover</a></li>
</ol>
</div>
]]></content:encoded>
					
					<wfw:commentRss>https://blog.identitydesign.us/how-to-make-an-anchor-not-clickable-in-html/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>CSS Only Animation: Zoom on Hover</title>
		<link>https://blog.identitydesign.us/css-only-animation-zoom-on-hover/</link>
					<comments>https://blog.identitydesign.us/css-only-animation-zoom-on-hover/#respond</comments>
		
		<dc:creator><![CDATA[djemals]]></dc:creator>
		<pubDate>Thu, 11 Apr 2024 08:31:49 +0000</pubDate>
				<category><![CDATA[CSSonly]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[HTML/CSS/PHP/JavaScripts]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Website]]></category>
		<guid isPermaLink="false">http://blog.identitydesign.us/?p=1874</guid>

					<description><![CDATA[<p>In today&#8217;s quick tip, we&#8217;ll dive into creating a dynamic &#8216;zoom on hover&#8217; effect that adds an interactive touch to images on your web pages. By incorporating the provided CSS, your images will elegantly scale up when hovered over. This effect, achieved with minimal code, is a fantastic way to enhance your website&#8217;s visual appeal [&#8230;]</p>
<p>The post <a href="https://blog.identitydesign.us/css-only-animation-zoom-on-hover/">CSS Only Animation: Zoom on Hover</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-animation-zoom-on-hover/">CSS Only Animation: Zoom on Hover</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-animation-image-swapping-on-hover/" rel="bookmark" title="CSS Only Animation: Image Swapping on Hover (Logo Swap)">CSS Only Animation: Image Swapping on Hover (Logo Swap)</a></li>
<li><a href="https://blog.identitydesign.us/css-animation-image-scrolling-on-hover/" rel="bookmark" title="CSS Animation: Image Scrolling on Hover">CSS Animation: Image Scrolling on Hover</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>In today&#8217;s quick tip, we&#8217;ll dive into creating a dynamic &#8216;zoom on hover&#8217; effect that adds an interactive touch to images on your web pages. By incorporating the provided CSS, your images will elegantly scale up when hovered over. This effect, achieved with minimal code, is a fantastic way to enhance your website&#8217;s visual appeal and engage your visitors.</p>
<h2>DEMO: Zoom on Hover</h2>
<div class="board"><img decoding="async" class="zoom-in" src="https://blog.identitydesign.us/wp-content/uploads/2024/04/dog.jpg"/></div>
<h2>HTML</h2>
<pre>
&lt;img class=&quot;zoom-in&quot; src=&quot;YOUR-IMAGE-PATH&quot;/&gt;
</pre>
<h2>CSS</h2>
<pre>
.zoom-in { transition:transform .2s; }
.zoom-in:hover { transform: scale(1.2); }
</pre>
<div class="clear"></div>
<style>
.board { display: flex;
    justify-content: center;
    padding: 120px;;
}
.single .entry-content img {
    border: 0px dotted #ccc;
}
.entry-content img { margin: AUTO; }
.board .zoom-in {
        max-width: 360px !important;
	transition:transform .2s;
}
.board .zoom-in:hover {
	transform: scale(1.2);</p>
<p>}
</style><p>The post <a href="https://blog.identitydesign.us/css-only-animation-zoom-on-hover/">CSS Only Animation: Zoom on Hover</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-animation-zoom-on-hover/">CSS Only Animation: Zoom on Hover</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-animation-image-swapping-on-hover/" rel="bookmark" title="CSS Only Animation: Image Swapping on Hover (Logo Swap)">CSS Only Animation: Image Swapping on Hover (Logo Swap)</a></li>
<li><a href="https://blog.identitydesign.us/css-animation-image-scrolling-on-hover/" rel="bookmark" title="CSS Animation: Image Scrolling on Hover">CSS Animation: Image Scrolling on Hover</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/css-only-animation-zoom-on-hover/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>CSS Only Animation: Image Swapping on Hover (Logo Swap)</title>
		<link>https://blog.identitydesign.us/css-only-animation-image-swapping-on-hover/</link>
					<comments>https://blog.identitydesign.us/css-only-animation-image-swapping-on-hover/#respond</comments>
		
		<dc:creator><![CDATA[djemals]]></dc:creator>
		<pubDate>Sat, 09 Mar 2024 00:27:13 +0000</pubDate>
				<category><![CDATA[CSSonly]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[HTML/CSS/PHP/JavaScripts]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Website]]></category>
		<guid isPermaLink="false">http://blog.identitydesign.us/?p=1861</guid>

					<description><![CDATA[<p>Explore how to enhance your website&#8217;s interactivity with this simple guide on implementing a logo or image swap effect upon mouse hover. Ideal for web designers and developers, this tutorial includes step-by-step instructions, complete with HTML and CSS code snippets, to seamlessly integrate this dynamic visual cue into your web project. Perfect for adding that [&#8230;]</p>
<p>The post <a href="https://blog.identitydesign.us/css-only-animation-image-swapping-on-hover/">CSS Only Animation: Image Swapping on Hover (Logo Swap)</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-animation-image-swapping-on-hover/">CSS Only Animation: Image Swapping on Hover (Logo Swap)</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-animation-image-scrolling-on-hover/" rel="bookmark" title="CSS Animation: Image Scrolling on Hover">CSS Animation: Image Scrolling on Hover</a></li>
<li><a href="https://blog.identitydesign.us/css-crop-image/" rel="bookmark" title="CSS: Crop Image Width or Height with CSS Only">CSS: Crop Image Width or Height with CSS Only</a></li>
<li><a href="https://blog.identitydesign.us/css-button-pop-up-effect/" rel="bookmark" title="CSS: Button Push Shadow Effect on Hover">CSS: Button Push Shadow Effect on Hover</a></li>
</ol>
</div>
]]></description>
										<content:encoded><![CDATA[<p>Explore how to enhance your website&#8217;s interactivity with this simple guide on implementing a logo or image swap effect upon mouse hover. Ideal for web designers and developers, this tutorial includes step-by-step instructions, complete with HTML and CSS code snippets, to seamlessly integrate this dynamic visual cue into your web project. Perfect for adding that extra flair to logos or images on your site, learn how to create a more engaging user experience with ease.</p>
<h2>DEMO: Swapping Logo/Image on Hover of Mouse</h2>
<div class="board">
<div class="swap"><a href="https://wedesignorange.com"><img decoding="async" class="main" src="https://blog.identitydesign.us/wp-content/uploads/2024/03/idwdo.png" alt="my-first-logo" /><img decoding="async" class="hover" src="https://blog.identitydesign.us/wp-content/uploads/2024/03/idwdo-smile.png" alt="my-second-logo" /></a>
</div>
</div>
<h2>HTML</h2>
<pre>
&lt;div class=&quot;swap&quot;&gt;
	&lt;a href=&quot;https://wedesignorange.com&quot;&gt;
		&lt;img class=&quot;main&quot; src=&quot;YOUR-MAIN-IMAGE&quot; /&gt;
		&lt;img class=&quot;hover&quot; src=&quot;YOUR-SWAPPING-IMAGE&quot; /&gt;
	&lt;/a&gt;
&lt;/div&gt;
</pre>
<h2>CSS</h2>
<pre>
.swap { height: 200px; width: 200px; position: relative; }
.swap img {
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	transition: opacity .9s;
	width: 100%;
	height: 100%;
	object-fit: contain;
}
.swap img.hover, .swap:hover img.main { opacity:0; }
.swap img.hover:hover { opacity:1; }
</pre>
<div class="clear"></div>
<style>
.board { display: flex;
    justify-content: center;
}
.single .entry-content img {
    border: 0px dotted #ccc;
}
.entry-content img { margin: AUTO; }
.swap { height: 150px; width: 150px; }
.swap { position: relative; }
.swap img {
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	transition: opacity .9s;
	width: 100%;
	height: 100%;
	object-fit: contain;
}
.swap img.hover { opacity:0; }
.swap:hover img.main { opacity:0; }
.swap img.hover:hover { opacity:1; }
</style><p>The post <a href="https://blog.identitydesign.us/css-only-animation-image-swapping-on-hover/">CSS Only Animation: Image Swapping on Hover (Logo Swap)</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-animation-image-swapping-on-hover/">CSS Only Animation: Image Swapping on Hover (Logo Swap)</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-animation-image-scrolling-on-hover/" rel="bookmark" title="CSS Animation: Image Scrolling on Hover">CSS Animation: Image Scrolling on Hover</a></li>
<li><a href="https://blog.identitydesign.us/css-crop-image/" rel="bookmark" title="CSS: Crop Image Width or Height with CSS Only">CSS: Crop Image Width or Height with CSS Only</a></li>
<li><a href="https://blog.identitydesign.us/css-button-pop-up-effect/" rel="bookmark" title="CSS: Button Push Shadow Effect on Hover">CSS: Button Push Shadow Effect on Hover</a></li>
</ol>
</div>
]]></content:encoded>
					
					<wfw:commentRss>https://blog.identitydesign.us/css-only-animation-image-swapping-on-hover/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>CSS Animation: Image Scrolling on Hover</title>
		<link>https://blog.identitydesign.us/css-animation-image-scrolling-on-hover/</link>
					<comments>https://blog.identitydesign.us/css-animation-image-scrolling-on-hover/#respond</comments>
		
		<dc:creator><![CDATA[djemals]]></dc:creator>
		<pubDate>Wed, 11 Oct 2023 00:50:39 +0000</pubDate>
				<category><![CDATA[CSSonly]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[HTML/CSS/PHP/JavaScripts]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Website]]></category>
		<guid isPermaLink="false">http://blog.identitydesign.us/?p=1850</guid>

					<description><![CDATA[<p>In the ever-evolving world of web design, adding interactive and visually appealing elements to your website can greatly enhance the user experience. One exciting way to achieve this is by learning how to create an image scrolling effect on hover with CSS animation. With just a few lines of code, you can transform a static [&#8230;]</p>
<p>The post <a href="https://blog.identitydesign.us/css-animation-image-scrolling-on-hover/">CSS Animation: Image Scrolling on Hover</a> first appeared on <a href="https://blog.identitydesign.us">identity design</a>.</p>
<p>The post <a href="https://blog.identitydesign.us/css-animation-image-scrolling-on-hover/">CSS Animation: Image Scrolling on Hover</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-crop-image/" rel="bookmark" title="CSS: Crop Image Width or Height with CSS Only">CSS: Crop Image Width or Height with CSS Only</a></li>
<li><a href="https://blog.identitydesign.us/css-button-pop-up-effect/" rel="bookmark" title="CSS: Button Push Shadow Effect on Hover">CSS: Button Push Shadow Effect on Hover</a></li>
<li><a href="https://blog.identitydesign.us/simple-hamburger-menu/" rel="bookmark" title="HTML-CSS-JS: Simple Hamburger Menu Expandable">HTML-CSS-JS: Simple Hamburger Menu Expandable</a></li>
</ol>
</div>
]]></description>
										<content:encoded><![CDATA[<p>In the ever-evolving world of web design, adding interactive and visually appealing elements to your website can greatly enhance the user experience. One exciting way to achieve this is by learning how to create an image scrolling effect on hover with CSS animation. With just a few lines of code, you can transform a static image into an engaging and dynamic component that draws the viewer&#8217;s attention. So, let&#8217;s dive in and discover how to make your website come to life with CSS image scrolling on hover!</p>
<h2>DEMO: Mouse over to see the scrolling animation</h2>
<div class="board">
    <img decoding="async" src="https://wedesignorange.com/wp-content/uploads/sleekycase.jpg" alt="sleekycase.com website">
</div>
<h2>HTML</h2>
<pre>
&lt;div class=&quot;container&quot;&gt; 
	&lt;img src=&quot;YOUR-IMAGE&quot;&gt; 
&lt;/div&gt;</pre>
<h2>CSS</h2>
<pre>
img { 
	object-fit: cover;
	object-position: top;
	transition: ease-in-out 4s;
	width: 450px;
	height: 300px;
}
img:hover {
	object-position: bottom;
}
</pre>
<div class="clear"></div>
<style>
.board { background-color:#eee; }
img { 
	object-fit: cover;
	object-position: top;
	transition: ease-in-out 4s;
	width: 450px;
	height: 300px;
}
img:hover {
	object-position: bottom;
}
</style><p>The post <a href="https://blog.identitydesign.us/css-animation-image-scrolling-on-hover/">CSS Animation: Image Scrolling on Hover</a> first appeared on <a href="https://blog.identitydesign.us">identity design</a>.</p><p>The post <a href="https://blog.identitydesign.us/css-animation-image-scrolling-on-hover/">CSS Animation: Image Scrolling on Hover</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-crop-image/" rel="bookmark" title="CSS: Crop Image Width or Height with CSS Only">CSS: Crop Image Width or Height with CSS Only</a></li>
<li><a href="https://blog.identitydesign.us/css-button-pop-up-effect/" rel="bookmark" title="CSS: Button Push Shadow Effect on Hover">CSS: Button Push Shadow Effect on Hover</a></li>
<li><a href="https://blog.identitydesign.us/simple-hamburger-menu/" rel="bookmark" title="HTML-CSS-JS: Simple Hamburger Menu Expandable">HTML-CSS-JS: Simple Hamburger Menu Expandable</a></li>
</ol>
</div>
]]></content:encoded>
					
					<wfw:commentRss>https://blog.identitydesign.us/css-animation-image-scrolling-on-hover/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>How to Add Deny Access to the .htaccess File</title>
		<link>https://blog.identitydesign.us/deny-access-to-htaccess-file/</link>
					<comments>https://blog.identitydesign.us/deny-access-to-htaccess-file/#respond</comments>
		
		<dc:creator><![CDATA[djemals]]></dc:creator>
		<pubDate>Mon, 08 May 2023 23:03:49 +0000</pubDate>
				<category><![CDATA[CSSonly]]></category>
		<category><![CDATA[How-To]]></category>
		<category><![CDATA[HTML/CSS/PHP/JavaScripts]]></category>
		<category><![CDATA[plugins]]></category>
		<category><![CDATA[Website]]></category>
		<category><![CDATA[Wordpress]]></category>
		<guid isPermaLink="false">http://blog.identitydesign.us/?p=1840</guid>

					<description><![CDATA[<p>The .htaccess file is an important configuration file for websites that use the Apache web server. It allows you to control various aspects of your website, such as redirections, password protection, and caching. However, because the .htaccess file is so powerful, it is also a target for hackers and other malicious actors who may try [&#8230;]</p>
<p>The post <a href="https://blog.identitydesign.us/deny-access-to-htaccess-file/">How to Add Deny Access to the .htaccess File</a> first appeared on <a href="https://blog.identitydesign.us">identity design</a>.</p>
<p>The post <a href="https://blog.identitydesign.us/deny-access-to-htaccess-file/">How to Add Deny Access to the .htaccess File</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/redirect-http-website-to-secure-https-website-using-simple-htaccess/" rel="bookmark" title="Redirect HTTP Website to Secure HTTPS Website Using Simple .htaccess in cPane/Hosting">Redirect HTTP Website to Secure HTTPS Website Using Simple .htaccess in cPane/Hosting</a></li>
<li><a href="https://blog.identitydesign.us/how-to-duplicate-migrate-wordpress-website/" rel="bookmark" title="How to Duplicate/Migrate WordPress Website &#8211; Duplicator">How to Duplicate/Migrate WordPress Website &#8211; Duplicator</a></li>
<li><a href="https://blog.identitydesign.us/why-filezilla-upload-files-repeatly-and-saying-file-transfer-failed-after-transferring/" rel="bookmark" title="Why FileZilla Upload Files Repeatedly Saying &#8220;File Transfer failed after transferring&#8221;?">Why FileZilla Upload Files Repeatedly Saying &#8220;File Transfer failed after transferring&#8221;?</a></li>
</ol>
</div>
]]></description>
										<content:encoded><![CDATA[<p>The .htaccess file is an important configuration file for websites that use the Apache web server. It allows you to control various aspects of your website, such as redirections, password protection, and caching. However, because the .htaccess file is so powerful, it is also a target for hackers and other malicious actors who may try to exploit it to gain access to your website or server.</p>
<p>One way to protect your .htaccess file is to add a &#8220;deny from all&#8221; rule to it. This will prevent anyone from accessing the file directly, including hackers who may be trying to modify it.</p>
<p>Here&#8217;s how to add a deny access rule to your .htaccess file:</p>
<h2>1. Access your website&#8217;s .htaccess file </h2>
<p>First, you&#8217;ll need to access your website&#8217;s .htaccess file. You can do this by connecting to your website&#8217;s server via FTP or SSH, and navigating to the directory where your website&#8217;s files are stored. The .htaccess file should be located in the root directory of your website.</p>
<h2>2. Add the deny access rule</h2>
<p>Next, open the .htaccess file in a text editor and add the following line at the top of the file:</p>
<pre>
#deny access to .htaccess
&lt;Files .htaccess&gt;
Order allow,deny
Deny from all
&lt;/Files&gt;
</pre>
<p>This rule specifies that access to the .htaccess file should be denied for all users.</p>
<h2>3. Save the changes</h2>
<p>Save the changes to your .htaccess file and upload it back to your website&#8217;s server.</p>
<p>By adding a deny access rule to your .htaccess file, you can help protect your website from malicious attacks and unauthorized access. However, it&#8217;s important to remember that this is just one of many security measures that you should take to protect your website. Be sure to keep your software and plugins up-to-date, use strong passwords, and implement other security best practices to keep your website secure.</p><p>The post <a href="https://blog.identitydesign.us/deny-access-to-htaccess-file/">How to Add Deny Access to the .htaccess File</a> first appeared on <a href="https://blog.identitydesign.us">identity design</a>.</p><p>The post <a href="https://blog.identitydesign.us/deny-access-to-htaccess-file/">How to Add Deny Access to the .htaccess File</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/redirect-http-website-to-secure-https-website-using-simple-htaccess/" rel="bookmark" title="Redirect HTTP Website to Secure HTTPS Website Using Simple .htaccess in cPane/Hosting">Redirect HTTP Website to Secure HTTPS Website Using Simple .htaccess in cPane/Hosting</a></li>
<li><a href="https://blog.identitydesign.us/how-to-duplicate-migrate-wordpress-website/" rel="bookmark" title="How to Duplicate/Migrate WordPress Website &#8211; Duplicator">How to Duplicate/Migrate WordPress Website &#8211; Duplicator</a></li>
<li><a href="https://blog.identitydesign.us/why-filezilla-upload-files-repeatly-and-saying-file-transfer-failed-after-transferring/" rel="bookmark" title="Why FileZilla Upload Files Repeatedly Saying &#8220;File Transfer failed after transferring&#8221;?">Why FileZilla Upload Files Repeatedly Saying &#8220;File Transfer failed after transferring&#8221;?</a></li>
</ol>
</div>
]]></content:encoded>
					
					<wfw:commentRss>https://blog.identitydesign.us/deny-access-to-htaccess-file/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>HTML-CSS-JS: Simple Hamburger Menu Expandable</title>
		<link>https://blog.identitydesign.us/simple-hamburger-menu/</link>
					<comments>https://blog.identitydesign.us/simple-hamburger-menu/#respond</comments>
		
		<dc:creator><![CDATA[djemals]]></dc:creator>
		<pubDate>Sat, 10 Dec 2022 01:16:30 +0000</pubDate>
				<category><![CDATA[CSSonly]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[HTML/CSS/PHP/JavaScripts]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Website]]></category>
		<guid isPermaLink="false">http://blog.identitydesign.us/?p=1812</guid>

					<description><![CDATA[<p>&#8220;How to create an expandable hamburger menu?&#8221; DEMO: How It Looks Home Section 1 Section 2 Section 3 HTML &#60;header class=&#34;header&#34;&#62; &#60;div class=&#34;header__menu menu&#34;&#62; &#60;div class=&#34;menu__icon&#34;&#62; &#60;span&#62;&#60;/span&#62; &#60;/div&#62; &#60;nav class=&#34;menu__body&#34;&#62; &#60;ul class=&#34;menu__list&#34;&#62; &#60;li&#62; &#60;a data-goto=&#34;#home&#34; href=&#34;&#34; class=&#34;menu__link&#34;&#62;Home&#60;/a&#62;&#60;/li&#62; &#60;li&#62; &#60;a data-goto=&#34;#section-1&#34; href=&#34;&#34; class=&#34;menu__link&#34;&#62;Section 1&#60;/a&#62;&#60;/li&#62; &#60;li&#62; &#60;a data-goto=&#34;#section-2&#34; href=&#34;&#34; class=&#34;menu__link&#34;&#62;Section 2&#60;/a&#62;&#60;/li&#62; &#60;li&#62; &#60;a data-goto=&#34;#section-3&#34; href=&#34;&#34; class=&#34;menu__link&#34;&#62;Section 3&#60;/a&#62;&#60;/li&#62; [&#8230;]</p>
<p>The post <a href="https://blog.identitydesign.us/simple-hamburger-menu/">HTML-CSS-JS: Simple Hamburger Menu Expandable</a> first appeared on <a href="https://blog.identitydesign.us">identity design</a>.</p>
<p>The post <a href="https://blog.identitydesign.us/simple-hamburger-menu/">HTML-CSS-JS: Simple Hamburger Menu Expandable</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/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-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/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[<blockquote><p> &#8220;How to create an expandable hamburger menu?&#8221; </p></blockquote>
<h2>DEMO: How It Looks</h2>
<div class="board">
<header class="header">
<div class="header__menu menu">
<div class="menu__icon"> <span></span> </div>
<nav class="menu__body">
<ul class="menu__list">
<li> <a data-goto="#home" href="" class="menu__link">Home</a></li>
<li> <a data-goto="#section-1" href="" class="menu__link">Section 1</a></li>
<li> <a data-goto="#section-2" href="" class="menu__link">Section 2</a></li>
<li> <a data-goto="#section-3" href="" class="menu__link">Section 3</a></li>
</ul>
</nav></div>
</header>
<p><script type="text/javascript" src="https://blog.identitydesign.us/js/hamburger.js"></script>
</div>
<h2>HTML</h2>
<pre>
&lt;header class=&quot;header&quot;&gt;
  &lt;div class=&quot;header__menu menu&quot;&gt;
    &lt;div class=&quot;menu__icon&quot;&gt; &lt;span&gt;&lt;/span&gt; &lt;/div&gt;
    &lt;nav class=&quot;menu__body&quot;&gt;
      &lt;ul class=&quot;menu__list&quot;&gt;
        &lt;li&gt; &lt;a data-goto=&quot;#home&quot; href=&quot;&quot; class=&quot;menu__link&quot;&gt;Home&lt;/a&gt;&lt;/li&gt;
        &lt;li&gt; &lt;a data-goto=&quot;#section-1&quot; href=&quot;&quot; class=&quot;menu__link&quot;&gt;Section 1&lt;/a&gt;&lt;/li&gt;
        &lt;li&gt; &lt;a data-goto=&quot;#section-2&quot; href=&quot;&quot; class=&quot;menu__link&quot;&gt;Section 2&lt;/a&gt;&lt;/li&gt;
        &lt;li&gt; &lt;a data-goto=&quot;#section-3&quot; href=&quot;&quot; class=&quot;menu__link&quot;&gt;Section 3&lt;/a&gt;&lt;/li&gt;
      &lt;/ul&gt;
    &lt;/nav&gt;
  &lt;/div&gt;
&lt;/header&gt;
</pre>
<h2>CSS</h2>
<pre>
body {
	background-color: black; font-family:sans-serif; 
}
header a {
	color: #111 !important;
	text-decoration: none!important;
	font-weight: 200;
	font-size: 2.2rem;
	line-height: 1.2;
	display: block;
}
.header__menu {
	position: fixed;
	top: 34px;
	right: 30px;
	z-index: 10;
}
.menu__icon {
	z-index: 5;
	display: block;
	position: relative;
	width: 50px;
	height: 22px;
	cursor: pointer;
}
.menu__icon span, .menu__icon::before, .menu__icon::after {
	left: 0;
	position: absolute;
	height: 20%;
	width: 100%;
	transition: all 0.3s ease 0s;
	background-color: white;
}
.menu__icon::before, .menu__icon::after {
	content: '';
}
.menu__icon::before {
	top: 0;
}
.menu__icon::after {
	bottom: 0;
}
.menu__icon span {
	top: 50%;
	transform: scale(1) translate(0, -50%);
}
.menu__icon._active span {
	transform: scale(0) translate(0, -50%);
}
.menu__icon._active::before {
	top: 50%;
	transform: rotate(-45deg) translate(0, -50%);
}
.menu__icon._active::after {
	bottom: 50%;
	transform: rotate(45deg) translate(0, 50%);
}
.menu__body {
	position: fixed;
	top: 0;
	right: -99%;
	width: 34%;
	height: 100%;
	background-color: rgba(255, 255, 255, 0.8);
	padding: 100px 30px 30px 30px;
	transition: right 0.3s ease 0s;
	overflow: auto;
}
.menu__body._active {
	right: 0;
}
.menu__list > li {
	flex-wrap: wrap;
	margin-bottom: 30px;
}
.menu__body ul {
	padding-left: 1rem;
	list-style: none;
}
</pre>
<h2>JavaScript</h2>
<p>Link the below external Javascript into the bottom of your HTML.</p>
<pre>
&lt;script type=&quot;text/javascript&quot; src=&quot;https://blog.identitydesign.us/js/hamburger.js&quot;&gt;&lt;/script&gt;
</pre>
<p>With having the hamburger menu on your navigation, your website could look more sophisticated and clean.</p>
<div class="clear"></div>
<style>
body {
	background-color: black; font-family:sans-serif; 
}
.board { background: white; }
header a {
	color: #fff !important;
	text-decoration: none!important;
	font-weight: 200;
	font-size: 2.2rem;
	line-height: 1.2;
	display: block;
}
.header__menu {
	position: static;
	top: 34px;
	right: 30px;
	z-index: 10;
}
.menu__icon {
	z-index: 5;
	display: block;
	position: relative;
	width: 50px;
	height: 22px;
	cursor: pointer;
text-align: center;
    margin: auto;
}
.menu__icon span, .menu__icon::before, .menu__icon::after {
	left: 0;
	position: absolute;
	height: 20%;
	width: 100%;
	transition: all 0.3s ease 0s;
	background-color: black;
}
.menu__icon::before, .menu__icon::after {
	content: '';
}
.menu__icon::before {
	top: 0;
}
.menu__icon::after {
	bottom: 0;
}
.menu__icon span {
	top: 50%;
	transform: scale(1) translate(0, -50%);
}
.menu__icon._active span {
	transform: scale(0) translate(0, -50%);
}
.menu__icon._active::before {
	top: 50%;
	transform: rotate(-45deg) translate(0, -50%);
}
.menu__icon._active::after {
	bottom: 50%;
	transform: rotate(45deg) translate(0, 50%);
}
.menu__body {
	position: fixed;
	top: 0;
	right: -99%;
	width: 34%;
	height: 100%;
	background-color: rgba(60, 60, 60, 1);
        background-color: blueviolet;
	padding: 100px 30px 30px 30px;
	transition: right 0.3s ease 0s;
	overflow: auto;
        z-index: 1;
}
.menu__body._active {
	right: 0;
}
.menu__list > li {
	flex-wrap: wrap;
	margin-bottom: 30px;
}
.menu__body ul {
	padding-left: 1rem;
	list-style: none;
}
</style><p>The post <a href="https://blog.identitydesign.us/simple-hamburger-menu/">HTML-CSS-JS: Simple Hamburger Menu Expandable</a> first appeared on <a href="https://blog.identitydesign.us">identity design</a>.</p><p>The post <a href="https://blog.identitydesign.us/simple-hamburger-menu/">HTML-CSS-JS: Simple Hamburger Menu Expandable</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/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-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/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/simple-hamburger-menu/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Customize Animations on AOS (Animated On Scroll) Library</title>
		<link>https://blog.identitydesign.us/customize-animations-aos/</link>
					<comments>https://blog.identitydesign.us/customize-animations-aos/#respond</comments>
		
		<dc:creator><![CDATA[djemals]]></dc:creator>
		<pubDate>Tue, 15 Nov 2022 20:35:12 +0000</pubDate>
				<category><![CDATA[backend]]></category>
		<category><![CDATA[HTML/CSS/PHP/JavaScripts]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Website]]></category>
		<guid isPermaLink="false">http://blog.identitydesign.us/?p=1801</guid>

					<description><![CDATA[<p>&#8220;How to customize animations on AOS Library?&#8221; AOS Library (by michalsnik) is a great way to trigger animation while scroll for your website design. Here&#8217;s how to customize animations using AOS library. Add CSS to your website header &#60;link rel=&#34;stylesheet&#34; href=&#34;https://unpkg.com/aos@next/dist/aos.css&#34; /&#62; Add JS at the end of body tag &#60;script src=&#34;https://unpkg.com/aos@next/dist/aos.js&#34;&#62;&#60;/script&#62; &#60;script type=&#34;text/javascript&#34;&#62; AOS.init({ [&#8230;]</p>
<p>The post <a href="https://blog.identitydesign.us/customize-animations-aos/">Customize Animations on AOS (Animated On Scroll) Library</a> first appeared on <a href="https://blog.identitydesign.us">identity design</a>.</p>
<p>The post <a href="https://blog.identitydesign.us/customize-animations-aos/">Customize Animations on AOS (Animated On Scroll) Library</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/simple-hamburger-menu/" rel="bookmark" title="HTML-CSS-JS: Simple Hamburger Menu Expandable">HTML-CSS-JS: Simple Hamburger Menu Expandable</a></li>
<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>
</ol>
</div>
]]></description>
										<content:encoded><![CDATA[<blockquote><p> &#8220;How to customize animations on AOS Library?&#8221; </p></blockquote>
<p>AOS Library (<a href="https://michalsnik.github.io/aos/" rel="noopener" target="_blank">by michalsnik</a>) is a great way to trigger animation while scroll for your website design. Here&#8217;s how to customize animations using AOS library.</p>
<h2>Add CSS to your website <code>header</code></h2>
<pre>
&lt;link rel=&quot;stylesheet&quot; href=&quot;https://unpkg.com/aos@next/dist/aos.css&quot; /&gt;
</pre>
<h2>Add JS at the end of <code>body</code> tag </h2>
<pre>
&lt;script src=&quot;https://unpkg.com/aos@next/dist/aos.js&quot;&gt;&lt;/script&gt;  
&lt;script type=&quot;text/javascript&quot;&gt;
AOS.init({   
});
&lt;/script&gt; 
</pre>
<h2>HTML</h2>
<pre>
&lt;div class=&quot;box&quot; data-aos=&quot;my-animation-1&quot;&gt;1&lt;/div&gt;
&lt;div class=&quot;box&quot; data-aos=&quot;my-animation-2&quot;&gt;2&lt;/div&gt;
&lt;div class=&quot;box&quot; data-aos=&quot;my-animation-3&quot;&gt;3&lt;/div&gt;
&lt;div class=&quot;box&quot; data-aos=&quot;my-animation-1&quot;&gt;4&lt;/div&gt;
&lt;div class=&quot;box&quot; data-aos=&quot;my-animation-2&quot;&gt;5&lt;/div&gt;
&lt;div class=&quot;box&quot; data-aos=&quot;my-animation-3&quot;&gt;6&lt;/div&gt;
&lt;div class=&quot;box&quot; data-aos=&quot;my-animation-1&quot;&gt;7&lt;/div&gt;
&lt;div class=&quot;box&quot; data-aos=&quot;my-animation-2&quot;&gt;8&lt;/div&gt;
&lt;div class=&quot;box&quot; data-aos=&quot;my-animation-3&quot;&gt;9&lt;/div&gt; 
</pre>
<h2>CSS</h2>
<pre>
/* Default Style of Boxes */
.box {
  width: 250px;
  height: 250px;
  margin: 2rem auto; 
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family:sans-serif;
  font-size: 5rem;
  color: #FFF;
}
 
/* Before of Animation 1 */
[data-aos="my-animation-1"] {
  transform: rotate(0deg);
  background: black;
  opacity: 0; 
}
/* After of Animation 1 */ 
[data-aos="my-animation-1"].aos-animate {
  transform: rotate(360deg); 
  opacity: 1; 
}
	
/* Before of Animation 2 */
[data-aos="my-animation-2"] {
  background: black;
  transition-property: background; 
}
/* After of Animation 2 */
[data-aos="my-animation-2"].aos-animate {
  background: cyan; 
}
	
/* Before of Animation 3 */
[data-aos="my-animation-3"] {
  transform: translateX(-100%);
  opacity: 0; 
}
/* After of Animation 3 */
[data-aos="my-animation-3"].aos-animate {
  transform: translateX(0%); 
  background: purple;
  opacity: 1; 
}
</pre>
<h2>DEMO: How It Looks</h2>
<div class="board">
<div class="box" data-aos="my-animation-1">1</div>
<div class="box" data-aos="my-animation-2">2</div>
<div class="box" data-aos="my-animation-3">3</div>
<div class="box" data-aos="my-animation-1">4</div>
<div class="box" data-aos="my-animation-2">5</div>
<div class="box" data-aos="my-animation-3">6</div>
<div class="box" data-aos="my-animation-1">7</div>
<div class="box" data-aos="my-animation-2">8</div>
<div class="box" data-aos="my-animation-3">9</div>
</div>

<div class="clear"></div>
<div class="btn-group"><a class="btn" onclick="_gaq.push(['_trackEvent', 'Freebies', 'AOS-Custom-Animation', 'https://blog.identitydesign.us/wp-content/uploads/2022/11/aos-custom-animation.html.zip']);" href="https://blog.identitydesign.us/wp-content/uploads/2022/11/aos-custom-animation.html.zip">Download HTML</a></div>
<link rel="stylesheet" href="https://unpkg.com/aos@next/dist/aos.css" />
<style>
.box {
  width: 250px;
  height: 250px;
  margin: 2rem auto; 
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family:sans-serif;
  font-size: 5rem;
  color: #FFF;
}
[data-aos="my-animation-1"] {
  transform: rotate(0deg);
  background: black;
  opacity: 0; 
}
[data-aos="my-animation-1"].aos-animate {
  transform: rotate(360deg); 
  opacity: 1; 
}</p>
<p>[data-aos="my-animation-2"] {
  background: black;
  transition-property: background; 
}
[data-aos="my-animation-2"].aos-animate {
  background: cyan; 
}</p>
<p>[data-aos="my-animation-3"] {
  transform: translateX(-100%);
  opacity: 0; 
}
[data-aos="my-animation-3"].aos-animate {
  transform: translateX(0%); 
  background: purple;
  opacity: 1; 
}
</style>
<p><script src="https://unpkg.com/aos@next/dist/aos.js"></script><br />
<script type="text/javascript">
AOS.init({   
});
</script> </p><p>The post <a href="https://blog.identitydesign.us/customize-animations-aos/">Customize Animations on AOS (Animated On Scroll) Library</a> first appeared on <a href="https://blog.identitydesign.us">identity design</a>.</p><p>The post <a href="https://blog.identitydesign.us/customize-animations-aos/">Customize Animations on AOS (Animated On Scroll) Library</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/simple-hamburger-menu/" rel="bookmark" title="HTML-CSS-JS: Simple Hamburger Menu Expandable">HTML-CSS-JS: Simple Hamburger Menu Expandable</a></li>
<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>
</ol>
</div>
]]></content:encoded>
					
					<wfw:commentRss>https://blog.identitydesign.us/customize-animations-aos/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>CSS: Button Push Shadow Effect on Hover</title>
		<link>https://blog.identitydesign.us/css-button-pop-up-effect/</link>
					<comments>https://blog.identitydesign.us/css-button-pop-up-effect/#respond</comments>
		
		<dc:creator><![CDATA[djemals]]></dc:creator>
		<pubDate>Tue, 08 Nov 2022 22:43:08 +0000</pubDate>
				<category><![CDATA[CSSonly]]></category>
		<category><![CDATA[HTML/CSS/PHP/JavaScripts]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Website]]></category>
		<guid isPermaLink="false">http://blog.identitydesign.us/?p=1786</guid>

					<description><![CDATA[<p>&#8220;How to create a shadow effect when hovering on a box?&#8221; DEMO: How It Looks TRY HOVERING OVER THE BOX! HTML &#60;div class=&#34;&#34;&#62;TRY HOVERING OVER THE BOX!&#60;/div&#62; CSS .button-pop { border: 2px solid black; padding: 1rem; width:200px; height:200px; } .button-pop:hover { position: relative; right: 5px; bottom: 5px; box-shadow: 7px 7px #111; } It&#8217;s pretty simple. [&#8230;]</p>
<p>The post <a href="https://blog.identitydesign.us/css-button-pop-up-effect/">CSS: Button Push Shadow Effect on Hover</a> first appeared on <a href="https://blog.identitydesign.us">identity design</a>.</p>
<p>The post <a href="https://blog.identitydesign.us/css-button-pop-up-effect/">CSS: Button Push Shadow Effect on Hover</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/css-vertical-align-center/" rel="bookmark" title="CSS Vertical Align Center">CSS Vertical Align Center</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[<blockquote><p> &#8220;How to create a shadow effect when hovering on a box?&#8221; </p></blockquote>
<h2>DEMO: How It Looks</h2>
<div class="board">
<div class="button-pop">TRY HOVERING OVER THE BOX!</div>
</div>
<h2>HTML</h2>
<pre>
&lt;div class=&quot;&quot;&gt;TRY HOVERING OVER THE BOX!&lt;/div&gt; 
</pre>
<h2>CSS</h2>
<pre>
.button-pop {
    border: 2px solid black;
    padding: 1rem; 
    width:200px;
    height:200px;
}
.button-pop:hover {
    position: relative;
    right: 5px;
    bottom: 5px;
    box-shadow: 7px 7px #111;
}
</pre>
<p>It&#8217;s pretty simple. Enjoy coding!</p>
<div class="clear"></div>
<style>
.button-pop {
    border: 2px solid black;
    padding: 1rem; 
    width:200px;
    height:200px;
    margin: auto;
    font-size: 2rem;
}
.button-pop:hover {
    position: relative;
    right: 5px;
    bottom: 5px;
    box-shadow: 7px 7px #111;
}
</style><p>The post <a href="https://blog.identitydesign.us/css-button-pop-up-effect/">CSS: Button Push Shadow Effect on Hover</a> first appeared on <a href="https://blog.identitydesign.us">identity design</a>.</p><p>The post <a href="https://blog.identitydesign.us/css-button-pop-up-effect/">CSS: Button Push Shadow Effect on Hover</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/css-vertical-align-center/" rel="bookmark" title="CSS Vertical Align Center">CSS Vertical Align Center</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/css-button-pop-up-effect/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>CSS: Use your desktop fonts to your website</title>
		<link>https://blog.identitydesign.us/desktop-fonts-to-website/</link>
					<comments>https://blog.identitydesign.us/desktop-fonts-to-website/#respond</comments>
		
		<dc:creator><![CDATA[djemals]]></dc:creator>
		<pubDate>Tue, 01 Nov 2022 19:51:15 +0000</pubDate>
				<category><![CDATA[CSSonly]]></category>
		<category><![CDATA[HTML/CSS/PHP/JavaScripts]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Website]]></category>
		<guid isPermaLink="false">http://blog.identitydesign.us/?p=1781</guid>

					<description><![CDATA[<p>&#8220;How to use .OTF (or other desktop) fonts to your website?&#8221; If you would like to use your desktop fonts to your website, do this! CSS Select and place fonts to the server. Copy and paste codes below to your stylesheet. Replace font-family: &#8216;FONT1&#8216; on both @font-face and p with your own font name. You [&#8230;]</p>
<p>The post <a href="https://blog.identitydesign.us/desktop-fonts-to-website/">CSS: Use your desktop fonts to your website</a> first appeared on <a href="https://blog.identitydesign.us">identity design</a>.</p>
<p>The post <a href="https://blog.identitydesign.us/desktop-fonts-to-website/">CSS: Use your desktop fonts to your website</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/loading-webfonts-https-ssl/" rel="bookmark" title="Resolved! Loading Your Google Fonts Over https (SSL) Sites">Resolved! Loading Your Google Fonts Over https (SSL) Sites</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>
<li><a href="https://blog.identitydesign.us/fonts-collection-best-for-web-and-print-design/" rel="bookmark" title="Fonts Collection &#8211; Best for Web and Print Design">Fonts Collection &#8211; Best for Web and Print Design</a></li>
</ol>
</div>
]]></description>
										<content:encoded><![CDATA[<blockquote><p> &#8220;How to use .OTF (or other desktop) fonts to your website?&#8221; </p></blockquote>
<p>If you would like to use your desktop fonts to your website, do this!</p>
<h2>CSS</h2>
<ol>
<li>Select and place fonts to the server.</li>
<li>Copy and paste codes below to your stylesheet.</li>
<li>Replace font-family: &#8216;<code>FONT1</code>&#8216; on both <code>@font-face</code> and <code>p</code> with your own font name.</li>
<li>You may change <code>normal</code> to <code>bold</code> if necessary.</li>
</ol>
<pre>
@font-face {
	font-family: 'FONT1';
	src: url("../fonts/YOUR-FONT-LOCATION.otf") format("opentype");
	font-weight: normal;
	font-style: normal;
}
p { 
	font-family: 'FONT1', sans-serif; 
}
</pre>
<div class="clear"></div><p>The post <a href="https://blog.identitydesign.us/desktop-fonts-to-website/">CSS: Use your desktop fonts to your website</a> first appeared on <a href="https://blog.identitydesign.us">identity design</a>.</p><p>The post <a href="https://blog.identitydesign.us/desktop-fonts-to-website/">CSS: Use your desktop fonts to your website</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/loading-webfonts-https-ssl/" rel="bookmark" title="Resolved! Loading Your Google Fonts Over https (SSL) Sites">Resolved! Loading Your Google Fonts Over https (SSL) Sites</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>
<li><a href="https://blog.identitydesign.us/fonts-collection-best-for-web-and-print-design/" rel="bookmark" title="Fonts Collection &#8211; Best for Web and Print Design">Fonts Collection &#8211; Best for Web and Print Design</a></li>
</ol>
</div>
]]></content:encoded>
					
					<wfw:commentRss>https://blog.identitydesign.us/desktop-fonts-to-website/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>YARPP for WordPress: How to remove the &#8220;You May Also Like&#8221; header on the sidebar widget area</title>
		<link>https://blog.identitydesign.us/how-to-remove-the-you-may-also-like-on-yarpp-wordpress/</link>
					<comments>https://blog.identitydesign.us/how-to-remove-the-you-may-also-like-on-yarpp-wordpress/#respond</comments>
		
		<dc:creator><![CDATA[djemals]]></dc:creator>
		<pubDate>Fri, 08 Jul 2022 22:20:07 +0000</pubDate>
				<category><![CDATA[CSSonly]]></category>
		<category><![CDATA[How-To]]></category>
		<category><![CDATA[HTML/CSS/PHP/JavaScripts]]></category>
		<category><![CDATA[plugins]]></category>
		<category><![CDATA[Website]]></category>
		<category><![CDATA[Wordpress]]></category>
		<guid isPermaLink="false">http://blog.identitydesign.us/?p=1758</guid>

					<description><![CDATA[<p>YARPP (Yet Another Related Posts Plugin) is one of the greatest plugins in WordPress that provides related posts automatically using an algorithm, but there are a few things that can’t be easily fixed through its settings. How to remove the &#8220;You May Also Like&#8221; header on the sidebar widget YARPP Plugin for WordPress? I’ve tried [&#8230;]</p>
<p>The post <a href="https://blog.identitydesign.us/how-to-remove-the-you-may-also-like-on-yarpp-wordpress/">YARPP for WordPress: How to remove the “You May Also Like” header on the sidebar widget area</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-the-you-may-also-like-on-yarpp-wordpress/">YARPP for WordPress: How to remove the &#8220;You May Also Like&#8221; header on the sidebar widget area</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-related-posts-on-yarpp/" rel="bookmark" title="How to remove the &#8220;Related Posts&#8221; on YARPP Plugin for WordPress">How to remove the &#8220;Related Posts&#8221; on YARPP Plugin for WordPress</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/remove-empty-p-tags-in-wordpress/" rel="bookmark" title="Use CSS to remove auto-generated empty &lt;p&gt; tags in WordPress">Use CSS to remove auto-generated empty &lt;p&gt; tags in WordPress</a></li>
</ol>
</div>
]]></description>
										<content:encoded><![CDATA[<p>YARPP (Yet Another Related Posts Plugin) is one of the greatest plugins in WordPress that provides related posts automatically using an algorithm, but there are a few things that can’t be easily fixed through its settings.</p>
<h2>How to remove the &#8220;You May Also Like&#8221; header on the sidebar widget YARPP Plugin for WordPress?</h2>
<p>I’ve tried many options in the settings, but they didn&#8217;t seem to work. Try using the CSS code below to remove it easily.</p>
<h3>CSS</h3>
<p>Copy the code below and paste it into your CSS document. 	</p>
<pre>
.yarpp-related-widget h3 { display:none; }
</pre>
<p>Tada!</p><p>The post <a href="https://blog.identitydesign.us/how-to-remove-the-you-may-also-like-on-yarpp-wordpress/">YARPP for WordPress: How to remove the “You May Also Like” header on the sidebar widget area</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-the-you-may-also-like-on-yarpp-wordpress/">YARPP for WordPress: How to remove the &#8220;You May Also Like&#8221; header on the sidebar widget area</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-related-posts-on-yarpp/" rel="bookmark" title="How to remove the &#8220;Related Posts&#8221; on YARPP Plugin for WordPress">How to remove the &#8220;Related Posts&#8221; on YARPP Plugin for WordPress</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/remove-empty-p-tags-in-wordpress/" rel="bookmark" title="Use CSS to remove auto-generated empty &lt;p&gt; tags in WordPress">Use CSS to remove auto-generated empty &lt;p&gt; tags in WordPress</a></li>
</ol>
</div>
]]></content:encoded>
					
					<wfw:commentRss>https://blog.identitydesign.us/how-to-remove-the-you-may-also-like-on-yarpp-wordpress/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>How to remove the &#8220;Related Posts&#8221; on YARPP Plugin for WordPress</title>
		<link>https://blog.identitydesign.us/remove-related-posts-on-yarpp/</link>
					<comments>https://blog.identitydesign.us/remove-related-posts-on-yarpp/#respond</comments>
		
		<dc:creator><![CDATA[djemals]]></dc:creator>
		<pubDate>Fri, 08 Jul 2022 22:12:20 +0000</pubDate>
				<category><![CDATA[CSSonly]]></category>
		<category><![CDATA[How-To]]></category>
		<category><![CDATA[HTML/CSS/PHP/JavaScripts]]></category>
		<category><![CDATA[plugins]]></category>
		<category><![CDATA[Website]]></category>
		<category><![CDATA[Wordpress]]></category>
		<guid isPermaLink="false">http://blog.identitydesign.us/?p=1755</guid>

					<description><![CDATA[<p>YARPP(Yet Another Related Posts Plugin) is a one of the greatest plugins in WordPress that provides related posts automatically with algorithm, but there are a few things can&#8217;t be easily fixable on its setting. How to remove the &#8220;Related Posts&#8221; on YARPP? I&#8217;ve tried many options on their settings to remove the Related Posts on [&#8230;]</p>
<p>The post <a href="https://blog.identitydesign.us/remove-related-posts-on-yarpp/">How to remove the “Related Posts” on YARPP Plugin for WordPress</a> first appeared on <a href="https://blog.identitydesign.us">identity design</a>.</p>
<p>The post <a href="https://blog.identitydesign.us/remove-related-posts-on-yarpp/">How to remove the &#8220;Related Posts&#8221; on YARPP Plugin for 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/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/remove-empty-p-tags-in-wordpress/" rel="bookmark" title="Use CSS to remove auto-generated empty &lt;p&gt; tags in WordPress">Use CSS to remove auto-generated empty &lt;p&gt; tags in WordPress</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>YARPP(Yet Another Related Posts Plugin) is a one of the greatest plugins in WordPress that provides related posts automatically with algorithm, but there are a few things can&#8217;t be easily fixable on its setting.</p>
<h2>How to remove the &#8220;Related Posts&#8221; on YARPP?</h2>
<p>I&#8217;ve tried many options on their settings to remove the Related Posts on the bottom of a page, but it seems not working. Try below CSS line to remove it with ease.</p>
<h3>CSS</h3>
<p>Copy the code below and paste into your CSS document. 	</p>
<pre>
.yarpp-related-website { display:none; }
</pre>
<p>Tada!</p><p>The post <a href="https://blog.identitydesign.us/remove-related-posts-on-yarpp/">How to remove the “Related Posts” on YARPP Plugin for WordPress</a> first appeared on <a href="https://blog.identitydesign.us">identity design</a>.</p><p>The post <a href="https://blog.identitydesign.us/remove-related-posts-on-yarpp/">How to remove the &#8220;Related Posts&#8221; on YARPP Plugin for 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/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/remove-empty-p-tags-in-wordpress/" rel="bookmark" title="Use CSS to remove auto-generated empty &lt;p&gt; tags in WordPress">Use CSS to remove auto-generated empty &lt;p&gt; tags in WordPress</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-related-posts-on-yarpp/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>How to Duplicate/Migrate WordPress Website &#8211; Duplicator</title>
		<link>https://blog.identitydesign.us/how-to-duplicate-migrate-wordpress-website/</link>
					<comments>https://blog.identitydesign.us/how-to-duplicate-migrate-wordpress-website/#respond</comments>
		
		<dc:creator><![CDATA[djemals]]></dc:creator>
		<pubDate>Tue, 10 May 2022 00:37:55 +0000</pubDate>
				<category><![CDATA[backend]]></category>
		<category><![CDATA[Cpanel]]></category>
		<category><![CDATA[How-To]]></category>
		<category><![CDATA[HTML/CSS/PHP/JavaScripts]]></category>
		<category><![CDATA[plugins]]></category>
		<category><![CDATA[Website]]></category>
		<category><![CDATA[Wordpress]]></category>
		<guid isPermaLink="false">http://blog.identitydesign.us/?p=1745</guid>

					<description><![CDATA[<p>Work effective and save time if you are a web developer using WordPress. Duplicate your existing work and use as a template. Get Duplicator and install/active the plugin and follow the instruction below. We have 3 main steps to get all duplicate/migration process done. 1. BACKUP FILES &#38; DOWNLOAD Get Duplicator plugin Duplicator -&#62; Create [&#8230;]</p>
<p>The post <a href="https://blog.identitydesign.us/how-to-duplicate-migrate-wordpress-website/">How to Duplicate/Migrate WordPress Website – Duplicator</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-duplicate-migrate-wordpress-website/">How to Duplicate/Migrate WordPress Website &#8211; Duplicator</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/cpanel-change-increase-maximum-upload-file-size/" rel="bookmark" title="cPanel: Change / Increase Maximum Upload File Size">cPanel: Change / Increase Maximum Upload File Size</a></li>
<li><a href="https://blog.identitydesign.us/wordpress-multisite/" rel="bookmark" title="Make Your WordPress into a Multisite (Create a Network)">Make Your WordPress into a Multisite (Create a Network)</a></li>
<li><a href="https://blog.identitydesign.us/redirect-http-website-to-secure-https-website-using-simple-htaccess/" rel="bookmark" title="Redirect HTTP Website to Secure HTTPS Website Using Simple .htaccess in cPane/Hosting">Redirect HTTP Website to Secure HTTPS Website Using Simple .htaccess in cPane/Hosting</a></li>
</ol>
</div>
]]></description>
										<content:encoded><![CDATA[<p>Work effective and save time if you are a web developer using WordPress. Duplicate your existing work and use as a template. Get <a href="https://wordpress.org/plugins/duplicator/" target="_blank" rel="noopener">Duplicator</a> and install/active the plugin and follow the instruction below. We have 3 main steps to get all duplicate/migration process done.  </p>
<h2>1. BACKUP FILES &amp; DOWNLOAD</h2>
<ol>
<li>Get <code>Duplicator</code> plugin</li>
<li>Duplicator -&gt; <code>Create new</code></li>
<li><code>Next</code> -&gt; <code>Build</code></li>
<li>Download <code>Installer.php</code> and <code>...Archive.zip</code> file</li>
</ol>
<h2>2. DATABASE CREATION ON NEW SERVER</h2>
<ol>
<li>Create Database from MySQL® Databases in cPanel.</li>
<li>Name your database. Add <code>_wp</code> at the end of the database name</li>
<li>Add a user, <code>_user</code> at the end of the database name</li>
<li>Add the user to the database you created. Finally add <code>All Privileges</code> to the user.</li>
</ol>
<h2>3. UPLOAD BACKED UP FILES TO NEW SERVER</h2>
<ol>
<li>Access cPanel on new hosting server. Go to <strong>cPanel</strong> -&gt; <strong>File Manager</strong>. Select <code>public_html</code> or very root folder of your WordPress files -&gt; upload your saved <code>Installer</code> and <code>Archive</code> files. (*You can also use FTP (Filezilla) to upload these files. )</li>
<li>Open a web browser -&gt; <em>http://YOUR-DOMAIN.com/installer.php</em></li>
<li>Select the checkbox, &#8220;I have read and accept all terms &amp; notices*&#8221;</li>
<li>Select <code>Remove all data</code> and input your <code>Database</code>, <code>User</code> and <code>Password</code> and hit <code>Test Database</code>. If looks good, hit <code>Next</code>.</li>
<li>Click <code>Next</code> for step 4, Login the site with <code>Site Login</code>.</li>
</ol><p>The post <a href="https://blog.identitydesign.us/how-to-duplicate-migrate-wordpress-website/">How to Duplicate/Migrate WordPress Website – Duplicator</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-duplicate-migrate-wordpress-website/">How to Duplicate/Migrate WordPress Website &#8211; Duplicator</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/cpanel-change-increase-maximum-upload-file-size/" rel="bookmark" title="cPanel: Change / Increase Maximum Upload File Size">cPanel: Change / Increase Maximum Upload File Size</a></li>
<li><a href="https://blog.identitydesign.us/wordpress-multisite/" rel="bookmark" title="Make Your WordPress into a Multisite (Create a Network)">Make Your WordPress into a Multisite (Create a Network)</a></li>
<li><a href="https://blog.identitydesign.us/redirect-http-website-to-secure-https-website-using-simple-htaccess/" rel="bookmark" title="Redirect HTTP Website to Secure HTTPS Website Using Simple .htaccess in cPane/Hosting">Redirect HTTP Website to Secure HTTPS Website Using Simple .htaccess in cPane/Hosting</a></li>
</ol>
</div>
]]></content:encoded>
					
					<wfw:commentRss>https://blog.identitydesign.us/how-to-duplicate-migrate-wordpress-website/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>WordPress Contact Form 7 Submit Button Not Working (Nonstop Wheel Spinning)</title>
		<link>https://blog.identitydesign.us/contact-form-7-submit-not-working/</link>
					<comments>https://blog.identitydesign.us/contact-form-7-submit-not-working/#respond</comments>
		
		<dc:creator><![CDATA[djemals]]></dc:creator>
		<pubDate>Mon, 21 Feb 2022 09:14:04 +0000</pubDate>
				<category><![CDATA[backend]]></category>
		<category><![CDATA[How-To]]></category>
		<category><![CDATA[HTML/CSS/PHP/JavaScripts]]></category>
		<category><![CDATA[plugins]]></category>
		<category><![CDATA[Website]]></category>
		<category><![CDATA[Wordpress]]></category>
		<guid isPermaLink="false">http://blog.identitydesign.us/?p=1732</guid>

					<description><![CDATA[<p>Despite the popularity of its name, &#8220;Contact form 7&#8221; with millions of active installations, numerous plugin users have called out the error when hitting the submit button on the form. The error seems to be occurred by change of environment such as migration of the website. Here&#8217;s the solution how this can be resolved. Go [&#8230;]</p>
<p>The post <a href="https://blog.identitydesign.us/contact-form-7-submit-not-working/">WordPress Contact Form 7 Submit Button Not Working (Nonstop Wheel Spinning)</a> first appeared on <a href="https://blog.identitydesign.us">identity design</a>.</p>
<p>The post <a href="https://blog.identitydesign.us/contact-form-7-submit-not-working/">WordPress Contact Form 7 Submit Button Not Working (Nonstop Wheel Spinning)</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-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/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/wordpress-multisite/" rel="bookmark" title="Make Your WordPress into a Multisite (Create a Network)">Make Your WordPress into a Multisite (Create a Network)</a></li>
</ol>
</div>
]]></description>
										<content:encoded><![CDATA[<p>Despite the popularity of its name, &#8220;Contact form 7&#8221; with millions of active installations, numerous plugin users have called out the error when hitting the submit button on the form. The error seems to be occurred by change of environment such as migration of the website. Here&#8217;s the solution how this can be resolved.</p>
<ul>
<li>Go to the WP Admin (Backend) -> Plugins -> Plugin File Editor. </li>
<li>Select plugin to edit dropdown to select <code>Contact Form 7</code> and select the file, <code>wp-contact-form-7.php</code></li>
<li>On line 30 (the number can be different) after &#8216;WPCF7_LOAD_JS&#8217;, change <code>true</code> to <code>false</code></li>
</ul>
<h2>Change of code in &#8220;Contact form 7&#8221; plugin</h2>
<pre>if ( ! defined( 'WPCF7_LOAD_JS' ) ) {
	define( 'WPCF7_LOAD_JS', false );
}</pre><p>The post <a href="https://blog.identitydesign.us/contact-form-7-submit-not-working/">WordPress Contact Form 7 Submit Button Not Working (Nonstop Wheel Spinning)</a> first appeared on <a href="https://blog.identitydesign.us">identity design</a>.</p><p>The post <a href="https://blog.identitydesign.us/contact-form-7-submit-not-working/">WordPress Contact Form 7 Submit Button Not Working (Nonstop Wheel Spinning)</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-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/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/wordpress-multisite/" rel="bookmark" title="Make Your WordPress into a Multisite (Create a Network)">Make Your WordPress into a Multisite (Create a Network)</a></li>
</ol>
</div>
]]></content:encoded>
					
					<wfw:commentRss>https://blog.identitydesign.us/contact-form-7-submit-not-working/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Display Product Description On Shopify Cart Page</title>
		<link>https://blog.identitydesign.us/display-product-description-on-shopify-cart-page/</link>
					<comments>https://blog.identitydesign.us/display-product-description-on-shopify-cart-page/#respond</comments>
		
		<dc:creator><![CDATA[djemals]]></dc:creator>
		<pubDate>Fri, 18 Feb 2022 21:13:22 +0000</pubDate>
				<category><![CDATA[How-To]]></category>
		<category><![CDATA[HTML/CSS/PHP/JavaScripts]]></category>
		<category><![CDATA[shopify]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Website]]></category>
		<guid isPermaLink="false">http://blog.identitydesign.us/?p=1722</guid>

					<description><![CDATA[<p>Shopify cart page won&#8217;t have description blurb in default. Below is how to add the description blurb on the cart page. Display Product Description on Shopify Cart Page Tested on &#8220;Dawn Theme&#8221; &#60;div class=&#34;cart-item__product__description&#34;&#62;{{ item.product.description }}&#60;/div&#62; Add the code to the main-cart-items.liquid file.</p>
<p>The post <a href="https://blog.identitydesign.us/display-product-description-on-shopify-cart-page/">Display Product Description On Shopify Cart Page</a> first appeared on <a href="https://blog.identitydesign.us">identity design</a>.</p>
<p>The post <a href="https://blog.identitydesign.us/display-product-description-on-shopify-cart-page/">Display Product Description On Shopify Cart Page</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/display-inventory-quantity-shopify/" rel="bookmark" title="Display Inventory Quantity &#8220;X items available in stock&#8221; On Shopify Product Page">Display Inventory Quantity &#8220;X items available in stock&#8221; On Shopify Product Page</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/woocommerce-astra-disable-cart-bubble/" rel="bookmark" title="WooCommerce Astra: How to Disable Cart Bubble on Hover of the Cart Menu">WooCommerce Astra: How to Disable Cart Bubble on Hover of the Cart Menu</a></li>
</ol>
</div>
]]></description>
										<content:encoded><![CDATA[<p>Shopify cart page won&#8217;t have description blurb in default. Below is how to add the description blurb on the cart page.</p>
<h3>Display Product Description on Shopify Cart Page</h3>
<h4>Tested on &#8220;Dawn Theme&#8221;</h4>
<pre>&lt;div class=&quot;cart-item__product__description&quot;&gt;{{ item.product.description }}&lt;/div&gt;
</pre>
<p>Add the code to the <code>main-cart-items.liquid</code> file.</p><p>The post <a href="https://blog.identitydesign.us/display-product-description-on-shopify-cart-page/">Display Product Description On Shopify Cart Page</a> first appeared on <a href="https://blog.identitydesign.us">identity design</a>.</p><p>The post <a href="https://blog.identitydesign.us/display-product-description-on-shopify-cart-page/">Display Product Description On Shopify Cart Page</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/display-inventory-quantity-shopify/" rel="bookmark" title="Display Inventory Quantity &#8220;X items available in stock&#8221; On Shopify Product Page">Display Inventory Quantity &#8220;X items available in stock&#8221; On Shopify Product Page</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/woocommerce-astra-disable-cart-bubble/" rel="bookmark" title="WooCommerce Astra: How to Disable Cart Bubble on Hover of the Cart Menu">WooCommerce Astra: How to Disable Cart Bubble on Hover of the Cart Menu</a></li>
</ol>
</div>
]]></content:encoded>
					
					<wfw:commentRss>https://blog.identitydesign.us/display-product-description-on-shopify-cart-page/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Display Inventory Quantity &#8220;X items available in stock&#8221; On Shopify Product Page</title>
		<link>https://blog.identitydesign.us/display-inventory-quantity-shopify/</link>
					<comments>https://blog.identitydesign.us/display-inventory-quantity-shopify/#respond</comments>
		
		<dc:creator><![CDATA[djemals]]></dc:creator>
		<pubDate>Mon, 07 Feb 2022 21:58:03 +0000</pubDate>
				<category><![CDATA[How-To]]></category>
		<category><![CDATA[HTML/CSS/PHP/JavaScripts]]></category>
		<category><![CDATA[shopify]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Website]]></category>
		<guid isPermaLink="false">http://blog.identitydesign.us/?p=1712</guid>

					<description><![CDATA[<p>Shopify product page is not so friendly about exceeding the number of quantity in stock. The notification pops up, but users won&#8217;t know how much they can actually add more. Display Inventory Quantity on Shopify Product Page Tested on &#8220;Dawn Theme&#8221; &#60;div class=&#34;quantity_available&#34;&#62;{% if product.variants.first.inventory_management == &#34;shopify&#34; and product.variants.first.inventory_quantity &#62; 0 %} {{ product.variants.first.inventory_quantity }} [&#8230;]</p>
<p>The post <a href="https://blog.identitydesign.us/display-inventory-quantity-shopify/">Display Inventory Quantity “X items available in stock” On Shopify Product Page</a> first appeared on <a href="https://blog.identitydesign.us">identity design</a>.</p>
<p>The post <a href="https://blog.identitydesign.us/display-inventory-quantity-shopify/">Display Inventory Quantity &#8220;X items available in stock&#8221; On Shopify Product Page</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-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/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/woocommerce-astra-disable-cart-bubble/" rel="bookmark" title="WooCommerce Astra: How to Disable Cart Bubble on Hover of the Cart Menu">WooCommerce Astra: How to Disable Cart Bubble on Hover of the Cart Menu</a></li>
</ol>
</div>
]]></description>
										<content:encoded><![CDATA[<p>Shopify product page is not so friendly about exceeding the number of quantity in stock. The notification pops up, but users won&#8217;t know how much they can actually add more. <a href="https://blog.identitydesign.us/wp-content/uploads/2022/02/you-cant-add-more.png"><img decoding="async" src="https://blog.identitydesign.us/wp-content/uploads/2022/02/you-cant-add-more-300x60.png" alt="you-cant-add-more" width="300" height="60" class="aligncenter size-medium wp-image-1713" srcset="https://blog.identitydesign.us/wp-content/uploads/2022/02/you-cant-add-more-300x60.png 300w, https://blog.identitydesign.us/wp-content/uploads/2022/02/you-cant-add-more.png 310w" sizes="(max-width: 300px) 100vw, 300px" /></a></p>
<h3>Display Inventory Quantity on Shopify Product Page</h3>
<h4>Tested on &#8220;Dawn Theme&#8221;</h4>
<pre>&lt;div class=&quot;quantity_available&quot;&gt;{% if product.variants.first.inventory_management == &quot;shopify&quot; and product.variants.first.inventory_quantity &gt; 0 %}
{{ product.variants.first.inventory_quantity }} items available in stock.
{% endif %}&lt;/div&gt;
</pre>
<p>Add this code right above this code from <code>main-product.liquid</code> file.</p>
<pre>{%- when 'popup' -%}
</pre>
<p><img fetchpriority="high" decoding="async" width="924" height="390" src="https://blog.identitydesign.us/wp-content/uploads/2022/02/items-available.png" alt="items-available" class="aligncenter size-medium wp-image-1714" srcset="https://blog.identitydesign.us/wp-content/uploads/2022/02/items-available.png 924w, https://blog.identitydesign.us/wp-content/uploads/2022/02/items-available-300x127.png 300w, https://blog.identitydesign.us/wp-content/uploads/2022/02/items-available-768x324.png 768w, https://blog.identitydesign.us/wp-content/uploads/2022/02/items-available-624x263.png 624w" sizes="(max-width: 924px) 100vw, 924px" /> </p>
<p>The &#8220;8 items available in stock.&#8221; is now displayed above the <code>Add to cart</code> button.<br />
</p><p>The post <a href="https://blog.identitydesign.us/display-inventory-quantity-shopify/">Display Inventory Quantity “X items available in stock” On Shopify Product Page</a> first appeared on <a href="https://blog.identitydesign.us">identity design</a>.</p><p>The post <a href="https://blog.identitydesign.us/display-inventory-quantity-shopify/">Display Inventory Quantity &#8220;X items available in stock&#8221; On Shopify Product Page</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-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/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/woocommerce-astra-disable-cart-bubble/" rel="bookmark" title="WooCommerce Astra: How to Disable Cart Bubble on Hover of the Cart Menu">WooCommerce Astra: How to Disable Cart Bubble on Hover of the Cart Menu</a></li>
</ol>
</div>
]]></content:encoded>
					
					<wfw:commentRss>https://blog.identitydesign.us/display-inventory-quantity-shopify/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Web Developer / Designer Bookmarks</title>
		<link>https://blog.identitydesign.us/bookmarks/</link>
					<comments>https://blog.identitydesign.us/bookmarks/#respond</comments>
		
		<dc:creator><![CDATA[djemals]]></dc:creator>
		<pubDate>Wed, 05 Jan 2022 01:32:31 +0000</pubDate>
				<category><![CDATA[design]]></category>
		<category><![CDATA[HTML/CSS/PHP/JavaScripts]]></category>
		<category><![CDATA[Resources]]></category>
		<category><![CDATA[Scrap]]></category>
		<category><![CDATA[Top10]]></category>
		<category><![CDATA[Website]]></category>
		<category><![CDATA[Great-Stuff]]></category>
		<category><![CDATA[Photography]]></category>
		<category><![CDATA[Resource]]></category>
		<category><![CDATA[Stock Photo]]></category>
		<guid isPermaLink="false">http://blog.identitydesign.us/?p=1597</guid>

					<description><![CDATA[<p>Get Inspired! Behance Trendy portfolios. Showcase. Adobe. dribbble World designers. Top creatives. awwwards Awards of design. Cyrillic Design Awards of design. Qode Interactive High quality WordPress Templates. Pinterest Image sharing. Social Media. Design Resources Unsplash Freely-usable photo library. Freepik Powerful vector library. Creative Market 6 free goods. Every week. Pixelbuddha Free &#038; premium resources. Google [&#8230;]</p>
<p>The post <a href="https://blog.identitydesign.us/bookmarks/">Web Developer / Designer Bookmarks</a> first appeared on <a href="https://blog.identitydesign.us">identity design</a>.</p>
<p>The post <a href="https://blog.identitydesign.us/bookmarks/">Web Developer / Designer Bookmarks</a> appeared first on <a href="https://blog.identitydesign.us">identity design</a>.</p>
]]></description>
										<content:encoded><![CDATA[<style>
#secondary, #menu-example-pages, .site-description { display:none !important; } 
#primary { width: 100%; }</p>
<p>body { font-family: Helvetica, sans-serif; }
.site-title a { font-family: 'Bebas Neue', cursive; color:#222; }
.site-description { color: #555; }
.wrap-header { background: transparent; }
.yarpp-related { display:none; }
h3, .entry-content h3 { font-size: 11pt; }
.entry-content .page-item p { font-size: 9pt !important; margin-bottom: 2%; margin-top: 1%; }
.page-item {
    width: unset;
    display: unset; 
    float: none; 
    border: 0px solid #ccc;
}
.page-item a {
    overflow: auto;
    display: unset;</p>
<p>}
.display-posts-listing img {
    float: none;
    margin: 0 0 10px 0;
    width: 100%; 
    border: 1px solid #ccc !important;
    margin: 0px auto 0px;
    display: unset;
    height: 202px;
    object-fit: cover;
}
</style>
<p><!--p>For graphic / web designers and development industry about 15 years. I've been collecting designer related bookmarks for years, but a lot of things have been changed including tools, interests and style.</p-->
<h2>Get Inspired!</h2>
<div class="display-posts-listing">
<div class="page-item">
<h3> Behance </h3>
<p> <a href="https://www.behance.net/" target="blank" rel="noopener"><img decoding="async" width="536" height="294" src="https://blog.identitydesign.us/wp-content/uploads/2021/10/behance.png" alt="behance" class="aligncenter size-medium wp-image-1611" srcset="https://blog.identitydesign.us/wp-content/uploads/2021/10/behance.png 536w, https://blog.identitydesign.us/wp-content/uploads/2021/10/behance-300x165.png 300w" sizes="(max-width: 536px) 100vw, 536px" /></a></p>
<p>Trendy portfolios. Showcase. Adobe. </p>
</div>
<div class="page-item">
<h3>dribbble</h3>
<p><a href="https://dribbble.com/" target="blank" rel="noopener"><img loading="lazy" decoding="async" width="536" height="294" src="https://blog.identitydesign.us/wp-content/uploads/2021/10/dribbble.png" alt="dribbble" class="aligncenter size-medium wp-image-1603" srcset="https://blog.identitydesign.us/wp-content/uploads/2021/10/dribbble.png 536w, https://blog.identitydesign.us/wp-content/uploads/2021/10/dribbble-300x165.png 300w" sizes="auto, (max-width: 536px) 100vw, 536px" /></a></p>
<p>World designers. Top creatives.</p>
</div>
<div class="page-item">
<h3>awwwards</h3>
<p><a href="https://www.awwwards.com/" target="blank" rel="noopener"> <img loading="lazy" decoding="async" width="536" height="294" src="https://blog.identitydesign.us/wp-content/uploads/2022/01/awwards.png" alt="awwards" class="aligncenter size-full wp-image-1668" srcset="https://blog.identitydesign.us/wp-content/uploads/2022/01/awwards.png 536w, https://blog.identitydesign.us/wp-content/uploads/2022/01/awwards-300x165.png 300w" sizes="auto, (max-width: 536px) 100vw, 536px" /></a></p>
<p>Awards of design.</p>
</div>
<div class="page-item">
<h3>Cyrillic Design</h3>
<p><a href="https://cyrillic.design/" target="blank" rel="noopener"> <img loading="lazy" decoding="async" width="536" height="294" src="https://blog.identitydesign.us/wp-content/uploads/2022/01/cyrillic.png" alt="cyrillic" class="aligncenter size-full wp-image-1667" srcset="https://blog.identitydesign.us/wp-content/uploads/2022/01/cyrillic.png 536w, https://blog.identitydesign.us/wp-content/uploads/2022/01/cyrillic-300x165.png 300w" sizes="auto, (max-width: 536px) 100vw, 536px" /> </a></p>
<p>Awards of design.</p>
</div>
<div class="page-item">
<h3>Qode Interactive</h3>
<p> <a href="https://qodeinteractive.com/" target="blank" rel="noopener"><img loading="lazy" decoding="async" src="https://blog.identitydesign.us/wp-content/uploads/2022/01/qode.png" alt="qode interactive" width="536" height="294" class="aligncenter size-full wp-image-1719" srcset="https://blog.identitydesign.us/wp-content/uploads/2022/01/qode.png 536w, https://blog.identitydesign.us/wp-content/uploads/2022/01/qode-300x165.png 300w" sizes="auto, (max-width: 536px) 100vw, 536px" /></a></p>
<p>High quality WordPress Templates.</p>
</div>
<div class="page-item">
<h3>Pinterest</h3>
<p> <a href="https://www.pinterest.com/" target="blank" rel="noopener"><img loading="lazy" decoding="async" width="536" height="294" src="https://blog.identitydesign.us/wp-content/uploads/2021/10/pinterest.png" alt="pinterest" class="aligncenter size-medium wp-image-1613" srcset="https://blog.identitydesign.us/wp-content/uploads/2021/10/pinterest.png 536w, https://blog.identitydesign.us/wp-content/uploads/2021/10/pinterest-300x165.png 300w" sizes="auto, (max-width: 536px) 100vw, 536px" /></a></p>
<p>Image sharing. Social Media.</p>
</div>
</div>
<h2>Design Resources</h2>
<div class="display-posts-listing">
<div class="page-item">
<h3> Unsplash </h3>
<p> <a href="https://unsplash.com/" target="blank" rel="noopener"><img loading="lazy" decoding="async" width="536" height="294" src="https://blog.identitydesign.us/wp-content/uploads/2021/10/unsplash.png" alt="unsplash" class="aligncenter size-medium wp-image-1637" srcset="https://blog.identitydesign.us/wp-content/uploads/2021/10/unsplash.png 536w, https://blog.identitydesign.us/wp-content/uploads/2021/10/unsplash-300x165.png 300w" sizes="auto, (max-width: 536px) 100vw, 536px" /></a> </p>
<p>Freely-usable photo library. </p>
</div>
<div class="page-item">
<h3> Freepik </h3>
<p> <a href="https://www.freepik.com/" target="blank" rel="noopener"><img loading="lazy" decoding="async" width="536" height="294" src="https://blog.identitydesign.us/wp-content/uploads/2021/10/freepik.png" alt="freepik" class="aligncenter size-medium wp-image-1641" srcset="https://blog.identitydesign.us/wp-content/uploads/2021/10/freepik.png 536w, https://blog.identitydesign.us/wp-content/uploads/2021/10/freepik-300x165.png 300w" sizes="auto, (max-width: 536px) 100vw, 536px" /></a> </p>
<p>Powerful vector library.</p>
</div>
<div class="page-item">
<h3> Creative Market </h3>
<p> <a href="https://creativemarket.com/free-goods" target="blank" rel="noopener"><img loading="lazy" decoding="async" width="536" height="294" src="https://blog.identitydesign.us/wp-content/uploads/2021/10/creativemarket.png" alt="Creative Market" class="aligncenter size-medium wp-image-1639" srcset="https://blog.identitydesign.us/wp-content/uploads/2021/10/creativemarket.png 536w, https://blog.identitydesign.us/wp-content/uploads/2021/10/creativemarket-300x165.png 300w" sizes="auto, (max-width: 536px) 100vw, 536px" /></a> </p>
<p>6 free goods. Every week. </p>
</div>
<div class="page-item">
<h3> Pixelbuddha </h3>
<p> <a href="https://pixelbuddha.net/" target="blank" rel="noopener"><img loading="lazy" decoding="async" width="536" height="294" src="https://blog.identitydesign.us/wp-content/uploads/2021/10/pixelbuddha.png" alt="pixelbuddha" class="aligncenter size-medium wp-image-1636" srcset="https://blog.identitydesign.us/wp-content/uploads/2021/10/pixelbuddha.png 536w, https://blog.identitydesign.us/wp-content/uploads/2021/10/pixelbuddha-300x165.png 300w" sizes="auto, (max-width: 536px) 100vw, 536px" /></a> </p>
<p>Free &#038; premium resources. </p>
</div>
<div class="page-item">
<h3> Google Fonts </h3>
<p> <a href="https://fonts.google.com/" target="blank" rel="noopener"><img decoding="async" src="https://blog.identitydesign.us/wp-content/uploads/2022/01/web-fontgoogle.png" alt="Google Fonts" class="aligncenter size-medium" /></a> </p>
<p>Free web fonts. Downloadable. </p>
</div>
<div class="page-item">
<h3> Material Icons </h3>
<p> <a href="https://fonts.google.com/icons?selected=Material+Icons" target="blank" rel="noopener"><img decoding="async" src="https://blog.identitydesign.us/wp-content/uploads/2022/01/web-material-icons.jpg" alt="Material Icons" class="aligncenter size-medium" /></a> </p>
<p>Free web icons from Google. </p>
</div>
<div class="page-item">
<h3> Bensound </h3>
<p> <a href="https://www.bensound.com/" target="blank" rel="noopener"><img loading="lazy" decoding="async" src="https://blog.identitydesign.us/wp-content/uploads/2022/01/bensound.png" alt="bensound" width="536" height="294" class="aligncenter size-full wp-image-1739" srcset="https://blog.identitydesign.us/wp-content/uploads/2022/01/bensound.png 536w, https://blog.identitydesign.us/wp-content/uploads/2022/01/bensound-300x165.png 300w" sizes="auto, (max-width: 536px) 100vw, 536px" /></a> </p>
<p>Royalty free music. </p>
</div>
</div>
<h2>Tools</h2>
<div class="display-posts-listing">
<div class="page-item">
<h3>Pingdom Website Speed Test</h3>
<p><a href="https://tools.pingdom.com/"> <img loading="lazy" decoding="async" width="1024" height="768" src="https://blog.identitydesign.us/wp-content/uploads/2021/07/pingdom.png" alt="pingdom" class="aligncenter size-medium wp-image-1454" srcset="https://blog.identitydesign.us/wp-content/uploads/2021/07/pingdom.png 1024w, https://blog.identitydesign.us/wp-content/uploads/2021/07/pingdom-300x225.png 300w, https://blog.identitydesign.us/wp-content/uploads/2021/07/pingdom-768x576.png 768w, https://blog.identitydesign.us/wp-content/uploads/2021/07/pingdom-624x468.png 624w" sizes="auto, (max-width: 1024px) 100vw, 1024px" /></a></p>
<p>Analyze web. Speed test.</p>
</div>
<div class="page-item">
<h3>Whois Lookup</h3>
<p><a href="https://whois.domaintools.com/"> <img loading="lazy" decoding="async" width="1024" height="768" src="https://blog.identitydesign.us/wp-content/uploads/2021/07/whois.jpeg" alt="Whois Lookup" class="aligncenter size-medium wp-image-1460" srcset="https://blog.identitydesign.us/wp-content/uploads/2021/07/whois.jpeg 1024w, https://blog.identitydesign.us/wp-content/uploads/2021/07/whois-300x225.jpeg 300w, https://blog.identitydesign.us/wp-content/uploads/2021/07/whois-768x576.jpeg 768w, https://blog.identitydesign.us/wp-content/uploads/2021/07/whois-624x468.jpeg 624w" sizes="auto, (max-width: 1024px) 100vw, 1024px" /></a></p>
<p>Find IP. DNS</p>
</div>
<div class="page-item">
<h3>Custom Shape Dividers</h3>
<p><a href="https://www.shapedivider.app/" target="blank" rel="noopener"><img loading="lazy" decoding="async" width="536" height="294" src="https://blog.identitydesign.us/wp-content/uploads/2021/10/customshape.png" alt="customshape" class="aligncenter size-medium wp-image-1599" srcset="https://blog.identitydesign.us/wp-content/uploads/2021/10/customshape.png 536w, https://blog.identitydesign.us/wp-content/uploads/2021/10/customshape-300x165.png 300w" sizes="auto, (max-width: 536px) 100vw, 536px" /></a></p>
<p>Custom dividers for web. SVG</p>
</div>
<div class="page-item">
<h3>Cool Backgrounds</h3>
<p><a href="https://coolbackgrounds.io/" target="blank" rel="noopener"><img loading="lazy" decoding="async" width="536" height="294" src="https://blog.identitydesign.us/wp-content/uploads/2021/10/coolbackgrounds.png" alt="coolbackgrounds" class="aligncenter size-medium wp-image-1602" srcset="https://blog.identitydesign.us/wp-content/uploads/2021/10/coolbackgrounds.png 536w, https://blog.identitydesign.us/wp-content/uploads/2021/10/coolbackgrounds-300x165.png 300w" sizes="auto, (max-width: 536px) 100vw, 536px" /></a></p>
<p>Customize backgrounds in PNG. Abstract. Lines. Gradient.</p>
</div>
<div class="page-item">
<h3>themer</h3>
<p><a href="https://themer.dev/" target="blank" rel="noopener"><img loading="lazy" decoding="async" width="536" height="294" src="https://blog.identitydesign.us/wp-content/uploads/2021/10/themer.png" alt="themer" class="aligncenter size-medium wp-image-1609" srcset="https://blog.identitydesign.us/wp-content/uploads/2021/10/themer.png 536w, https://blog.identitydesign.us/wp-content/uploads/2021/10/themer-300x165.png 300w" sizes="auto, (max-width: 536px) 100vw, 536px" /></a></p>
<p>Generates colors </p>
</div>
<div class="page-item">
<h3>Web Fundamentals</h3>
<p><a href="https://andreasbm.github.io/web-skills/" target="blank" rel="noopener"><img decoding="async" src="https://blog.identitydesign.us/wp-content/uploads/2022/01/web-fundamentals.png" alt="Web Fundamentals" class="aligncenter size-medium" /></a></p>
<p>Web skills learning. HTML, CSS, JavaScript and browser </p>
</div>
</div><p>The post <a href="https://blog.identitydesign.us/bookmarks/">Web Developer / Designer Bookmarks</a> first appeared on <a href="https://blog.identitydesign.us">identity design</a>.</p><p>The post <a href="https://blog.identitydesign.us/bookmarks/">Web Developer / Designer Bookmarks</a> appeared first on <a href="https://blog.identitydesign.us">identity design</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://blog.identitydesign.us/bookmarks/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>WooCommerce Astra: How to Disable Cart Bubble on Hover of the Cart Menu</title>
		<link>https://blog.identitydesign.us/woocommerce-astra-disable-cart-bubble/</link>
					<comments>https://blog.identitydesign.us/woocommerce-astra-disable-cart-bubble/#respond</comments>
		
		<dc:creator><![CDATA[djemals]]></dc:creator>
		<pubDate>Mon, 11 Oct 2021 07:12:59 +0000</pubDate>
				<category><![CDATA[backend]]></category>
		<category><![CDATA[CSSonly]]></category>
		<category><![CDATA[How-To]]></category>
		<category><![CDATA[HTML/CSS/PHP/JavaScripts]]></category>
		<category><![CDATA[Wordpress]]></category>
		<guid isPermaLink="false">http://blog.identitydesign.us/?p=1588</guid>

					<description><![CDATA[<p>I&#8217;ve been searching how to remove/hide the cart bubble on hover of the cart icon on header in Astra / WooCommerce combination. This can&#8217;t be modified via Appearance -> Customize setting. Instead, I was able to hide the element with a simple CSS line as below: .ast-site-header-cart:hover .widget_shopping_cart, .woocommerce .ast-site-header-cart:hover .widget_shopping_cart{ display:none; } Feel free [&#8230;]</p>
<p>The post <a href="https://blog.identitydesign.us/woocommerce-astra-disable-cart-bubble/">WooCommerce Astra: How to Disable Cart Bubble on Hover of the Cart Menu</a> first appeared on <a href="https://blog.identitydesign.us">identity design</a>.</p>
<p>The post <a href="https://blog.identitydesign.us/woocommerce-astra-disable-cart-bubble/">WooCommerce Astra: How to Disable Cart Bubble on Hover of the Cart Menu</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/star-symbol-broken-woocommerce-review/" rel="bookmark" title="Star Rating Symbol Icons Show Broken or Square Boxes on Woocommerce Review">Star Rating Symbol Icons Show Broken or Square Boxes on Woocommerce Review</a></li>
<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-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 been searching how to remove/hide the cart bubble on hover of the cart icon on header in Astra / WooCommerce combination. </p>
<p> <img loading="lazy" decoding="async" src="https://blog.identitydesign.us/wp-content/uploads/2021/10/cart-menu-hover-177x300.png" alt="" width="177" height="300" class="aligncenter size-medium wp-image-1589" srcset="https://blog.identitydesign.us/wp-content/uploads/2021/10/cart-menu-hover-177x300.png 177w, https://blog.identitydesign.us/wp-content/uploads/2021/10/cart-menu-hover.png 306w" sizes="auto, (max-width: 177px) 100vw, 177px" /> </p>
<p>This can&#8217;t be modified via <code>Appearance</code> -> <code>Customize</code> setting. Instead, I was able to hide the element with a simple CSS line as below:</p>
<pre>
.ast-site-header-cart:hover .widget_shopping_cart, .woocommerce .ast-site-header-cart:hover .widget_shopping_cart{ display:none; }
</pre>
<p>Feel free to comment me if this doesn&#8217;t work for you.<br />
</p><p>The post <a href="https://blog.identitydesign.us/woocommerce-astra-disable-cart-bubble/">WooCommerce Astra: How to Disable Cart Bubble on Hover of the Cart Menu</a> first appeared on <a href="https://blog.identitydesign.us">identity design</a>.</p><p>The post <a href="https://blog.identitydesign.us/woocommerce-astra-disable-cart-bubble/">WooCommerce Astra: How to Disable Cart Bubble on Hover of the Cart Menu</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/star-symbol-broken-woocommerce-review/" rel="bookmark" title="Star Rating Symbol Icons Show Broken or Square Boxes on Woocommerce Review">Star Rating Symbol Icons Show Broken or Square Boxes on Woocommerce Review</a></li>
<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-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/woocommerce-astra-disable-cart-bubble/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<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>Make Your WordPress into a Multisite (Create a Network)</title>
		<link>https://blog.identitydesign.us/wordpress-multisite/</link>
					<comments>https://blog.identitydesign.us/wordpress-multisite/#respond</comments>
		
		<dc:creator><![CDATA[djemals]]></dc:creator>
		<pubDate>Fri, 03 Sep 2021 23:09:27 +0000</pubDate>
				<category><![CDATA[backend]]></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=1511</guid>

					<description><![CDATA[<p>WordPress website can be turned into a Multisite which a feature that enables you to manage a network of websites from one place. This feature is really useful for creating numbers of sub-sites like in franchise business where you share the basic information in one place but needs multiple WooCommerce sites to collect payments and [&#8230;]</p>
<p>The post <a href="https://blog.identitydesign.us/wordpress-multisite/">Make Your WordPress into a Multisite (Create a Network)</a> first appeared on <a href="https://blog.identitydesign.us">identity design</a>.</p>
<p>The post <a href="https://blog.identitydesign.us/wordpress-multisite/">Make Your WordPress into a Multisite (Create a Network)</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/redirect-http-website-to-secure-https-website-using-simple-htaccess/" rel="bookmark" title="Redirect HTTP Website to Secure HTTPS Website Using Simple .htaccess in cPane/Hosting">Redirect HTTP Website to Secure HTTPS Website Using Simple .htaccess in cPane/Hosting</a></li>
<li><a href="https://blog.identitydesign.us/fix-and-remove-wp-vcd-malware-virus-in-wordpress/" rel="bookmark" title="Malware/Virus: Fix and Remove &#8220;WP-VCD&#8221; from my WordPress">Malware/Virus: Fix and Remove &#8220;WP-VCD&#8221; from my WordPress</a></li>
</ol>
</div>
]]></description>
										<content:encoded><![CDATA[<p>WordPress website can be turned into a Multisite which a feature that enables you to manage a network of websites from one place. This feature is really useful for creating numbers of sub-sites like in franchise business where you share the basic information in one place but needs multiple WooCommerce sites to collect payments and get notification separately.</p>
<h2>1. Deactivate all plugins</h2>
<p><img loading="lazy" decoding="async" src="https://blog.identitydesign.us/wp-content/uploads/2021/09/WPM-1-300x203.jpg" alt="Wordpress deactivate plugins" width="300" height="203" class="aligncenter size-medium wp-image-1516" srcset="https://blog.identitydesign.us/wp-content/uploads/2021/09/WPM-1-300x203.jpg 300w, https://blog.identitydesign.us/wp-content/uploads/2021/09/WPM-1-1024x694.jpg 1024w, https://blog.identitydesign.us/wp-content/uploads/2021/09/WPM-1-768x520.jpg 768w, https://blog.identitydesign.us/wp-content/uploads/2021/09/WPM-1-624x423.jpg 624w, https://blog.identitydesign.us/wp-content/uploads/2021/09/WPM-1.jpg 1308w" sizes="auto, (max-width: 300px) 100vw, 300px" /></p>
<p>This is first thing you would have to do. Go to the WP Admin (Backend) -> Pluggins -> deactivate all your active plugins.</p>
<h2>2. Edit WP-CONFIG.PHP </h2>
<p><img loading="lazy" decoding="async" src="https://blog.identitydesign.us/wp-content/uploads/2021/09/WPM-3-300x68.jpg" alt="Add define code" width="300" height="68" class="aligncenter size-medium wp-image-1518" srcset="https://blog.identitydesign.us/wp-content/uploads/2021/09/WPM-3-300x68.jpg 300w, https://blog.identitydesign.us/wp-content/uploads/2021/09/WPM-3-768x173.jpg 768w, https://blog.identitydesign.us/wp-content/uploads/2021/09/WPM-3-624x141.jpg 624w, https://blog.identitydesign.us/wp-content/uploads/2021/09/WPM-3.jpg 930w" sizes="auto, (max-width: 300px) 100vw, 300px" /></p>
<p>Open <strong>wp-config.php</strong> file using FTP or cPanel -> File Manager.</p>
<p>Find <code>/* That's all, stop editing! Happy blogging. */</code> line in <strong>wp-config.php</strong> file (it&#8217;s on very end of the file)</p>
<pre>
/* Multisite */
define( 'WP_ALLOW_MULTISITE', true );
</pre>
<p>Copy the code and paste above, &#8220;That&#8217;s all&#8230;&#8221; in <strong>wp-config.php</strong>.</p>
<h2>3. Create a Network on Your WordPress</h2>
<p><img loading="lazy" decoding="async" src="https://blog.identitydesign.us/wp-content/uploads/2021/09/WPM-4-300x198.jpg" alt="network setup" width="300" height="198" class="aligncenter size-medium wp-image-1520" srcset="https://blog.identitydesign.us/wp-content/uploads/2021/09/WPM-4-300x198.jpg 300w, https://blog.identitydesign.us/wp-content/uploads/2021/09/WPM-4-624x413.jpg 624w, https://blog.identitydesign.us/wp-content/uploads/2021/09/WPM-4.jpg 644w" sizes="auto, (max-width: 300px) 100vw, 300px" /> </p>
<p>Once you are done with the process #1 and #2, the Network Setup menu should appear on your WordPress Admin page -> Settings -> Network Setup.</p>
<p>Very careful on either choosing <strong>Sub-domains</strong> or <strong>Sub-directories</strong> method in your WordPress network as you can&#8217;t go back once selected. I prefer the <strong>Sub-directories</strong> method as it&#8217;s much easier, and I like my sub-sites URL go after the slash <code>/</code>.</p>
<p><img loading="lazy" decoding="async" src="https://blog.identitydesign.us/wp-content/uploads/2021/09/WPM-7-1024x621.jpg" alt="addresses site in your wordpress" width="625" height="379" class="aligncenter size-large wp-image-1522" srcset="https://blog.identitydesign.us/wp-content/uploads/2021/09/WPM-7-1024x621.jpg 1024w, https://blog.identitydesign.us/wp-content/uploads/2021/09/WPM-7-300x182.jpg 300w, https://blog.identitydesign.us/wp-content/uploads/2021/09/WPM-7-768x465.jpg 768w, https://blog.identitydesign.us/wp-content/uploads/2021/09/WPM-7-1536x931.jpg 1536w, https://blog.identitydesign.us/wp-content/uploads/2021/09/WPM-7-624x378.jpg 624w, https://blog.identitydesign.us/wp-content/uploads/2021/09/WPM-7.jpg 1904w" sizes="auto, (max-width: 625px) 100vw, 625px" /></p>
<h3>What if the Sub-directory installation is not available? </h3>
<p><img loading="lazy" decoding="async" src="https://blog.identitydesign.us/wp-content/uploads/2021/09/WPM-5-1024x498.jpg" alt="subdomain installation" width="625" height="304" class="aligncenter size-large wp-image-1523" srcset="https://blog.identitydesign.us/wp-content/uploads/2021/09/WPM-5-1024x498.jpg 1024w, https://blog.identitydesign.us/wp-content/uploads/2021/09/WPM-5-300x146.jpg 300w, https://blog.identitydesign.us/wp-content/uploads/2021/09/WPM-5-768x373.jpg 768w, https://blog.identitydesign.us/wp-content/uploads/2021/09/WPM-5-1536x747.jpg 1536w, https://blog.identitydesign.us/wp-content/uploads/2021/09/WPM-5-2048x996.jpg 2048w, https://blog.identitydesign.us/wp-content/uploads/2021/09/WPM-5-624x303.jpg 624w" sizes="auto, (max-width: 625px) 100vw, 625px" /></p>
<p>I once had a hard time couldn&#8217;t figure out why sub-directory installation can&#8217;t be selected. But, it&#8217;s very simple as deleting some files. Once you see this message, just remove all your existing <strong>posts</strong> and <strong>pages</strong> from WP Admin. Empty <strong>upload</strong> folder if necessary, and come back to this page again. You&#8217;ll now able to select the Sub-directory installation.</p>
<h2>4. Add Additional Codes to your WP-CONFIG.PHP</h2>
<p>After you hit the <code>Install</code> button, WordPress will guide you what to add on your <code>wp-config.php</code> file with some additional lines. In my case, I had to add the following.</p>
<p><img loading="lazy" decoding="async" src="https://blog.identitydesign.us/wp-content/uploads/2021/09/WPM-6-300x96.jpg" alt="additional codes to wp-config" width="300" height="96" class="aligncenter size-medium wp-image-1525" srcset="https://blog.identitydesign.us/wp-content/uploads/2021/09/WPM-6-300x96.jpg 300w, https://blog.identitydesign.us/wp-content/uploads/2021/09/WPM-6-768x245.jpg 768w, https://blog.identitydesign.us/wp-content/uploads/2021/09/WPM-6-624x199.jpg 624w, https://blog.identitydesign.us/wp-content/uploads/2021/09/WPM-6.jpg 986w" sizes="auto, (max-width: 300px) 100vw, 300px" /></p>
<h2>5. Add Additional Codes to your .HTACCESS</h2>
<p>This step should also kindly described with #4. Open up the <strong>.htaccess</strong> file using FTP or cPanel -> File Manager. If you use cPanel&#8217;s File Manager, there is a chance .htaccess file be hidden. Go to the <code>Settings</code> menu and make &#8220;Show Hidden Files&#8221; active.</p>
<p><img loading="lazy" decoding="async" src="https://blog.identitydesign.us/wp-content/uploads/2021/09/WPM-10-300x80.jpg" alt="show hidden files" width="300" height="80" class="aligncenter size-medium wp-image-1526" srcset="https://blog.identitydesign.us/wp-content/uploads/2021/09/WPM-10-300x80.jpg 300w, https://blog.identitydesign.us/wp-content/uploads/2021/09/WPM-10-768x204.jpg 768w, https://blog.identitydesign.us/wp-content/uploads/2021/09/WPM-10-624x166.jpg 624w, https://blog.identitydesign.us/wp-content/uploads/2021/09/WPM-10.jpg 980w" sizes="auto, (max-width: 300px) 100vw, 300px" /></p>
<p>Paste the code you received from the WordPress Network Setup page. I only removed and replaced the highlighted lines as below.</p>
<p><img loading="lazy" decoding="async" src="https://blog.identitydesign.us/wp-content/uploads/2021/09/WPM-9.jpg" alt="htaccess replacement" width="1336" height="644" class="aligncenter size-full wp-image-1532" srcset="https://blog.identitydesign.us/wp-content/uploads/2021/09/WPM-9.jpg 1336w, https://blog.identitydesign.us/wp-content/uploads/2021/09/WPM-9-300x145.jpg 300w, https://blog.identitydesign.us/wp-content/uploads/2021/09/WPM-9-1024x494.jpg 1024w, https://blog.identitydesign.us/wp-content/uploads/2021/09/WPM-9-768x370.jpg 768w, https://blog.identitydesign.us/wp-content/uploads/2021/09/WPM-9-624x301.jpg 624w" sizes="auto, (max-width: 1336px) 100vw, 1336px" /></p>
<p>Now, your WordPress site turned into a Multisite. Enjoy! </p><p>The post <a href="https://blog.identitydesign.us/wordpress-multisite/">Make Your WordPress into a Multisite (Create a Network)</a> first appeared on <a href="https://blog.identitydesign.us">identity design</a>.</p><p>The post <a href="https://blog.identitydesign.us/wordpress-multisite/">Make Your WordPress into a Multisite (Create a Network)</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/redirect-http-website-to-secure-https-website-using-simple-htaccess/" rel="bookmark" title="Redirect HTTP Website to Secure HTTPS Website Using Simple .htaccess in cPane/Hosting">Redirect HTTP Website to Secure HTTPS Website Using Simple .htaccess in cPane/Hosting</a></li>
<li><a href="https://blog.identitydesign.us/fix-and-remove-wp-vcd-malware-virus-in-wordpress/" rel="bookmark" title="Malware/Virus: Fix and Remove &#8220;WP-VCD&#8221; from my WordPress">Malware/Virus: Fix and Remove &#8220;WP-VCD&#8221; from my WordPress</a></li>
</ol>
</div>
]]></content:encoded>
					
					<wfw:commentRss>https://blog.identitydesign.us/wordpress-multisite/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>CSS: Make Perfect Responsive YouTube Embedded Iframed Videos</title>
		<link>https://blog.identitydesign.us/css-make-perfect-responsive-youtube-embedded-iframed-videos/</link>
					<comments>https://blog.identitydesign.us/css-make-perfect-responsive-youtube-embedded-iframed-videos/#respond</comments>
		
		<dc:creator><![CDATA[djemals]]></dc:creator>
		<pubDate>Mon, 16 Aug 2021 20:19:19 +0000</pubDate>
				<category><![CDATA[CSSonly]]></category>
		<category><![CDATA[How-To]]></category>
		<category><![CDATA[HTML/CSS/PHP/JavaScripts]]></category>
		<category><![CDATA[Website]]></category>
		<guid isPermaLink="false">http://blog.identitydesign.us/?p=1481</guid>

					<description><![CDATA[<p>YouTubes are great way to embed videos for websites, and it&#8217;s really easy to get code to place on your website. Right-click on the video you wish to embed, select &#8220;Copy embed code&#8221; from the drop-down menus. Paste the code into the HTML fields and BAM! your video just added to the page. The video [&#8230;]</p>
<p>The post <a href="https://blog.identitydesign.us/css-make-perfect-responsive-youtube-embedded-iframed-videos/">CSS: Make Perfect Responsive YouTube Embedded Iframed Videos</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-perfect-responsive-youtube-embedded-iframed-videos/">CSS: Make Perfect Responsive YouTube Embedded Iframed Videos</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-crop-image/" rel="bookmark" title="CSS: Crop Image Width or Height with CSS Only">CSS: Crop Image Width or Height with CSS Only</a></li>
<li><a href="https://blog.identitydesign.us/css-add-gradient-dark-shade-on-background-images-to-make-the-text-visible/" rel="bookmark" title="CSS: Add Gradient (Dark Shade) Layer on Background Images to Make the Text Visible">CSS: Add Gradient (Dark Shade) Layer on Background Images to Make the Text Visible</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>YouTubes are great way to embed videos for websites, and it&#8217;s really easy to get code to place on your website. Right-click on the video you wish to embed, select &#8220;Copy embed code&#8221; from the drop-down menus. Paste the code into the HTML fields and BAM! your video just added to the page. </p>
<p><a href="https://blog.identitydesign.us/wp-content/uploads/2021/08/youtube-embed.jpg"><img loading="lazy" decoding="async" src="https://blog.identitydesign.us/wp-content/uploads/2021/08/youtube-embed.jpg" alt="" width="1520" height="854" class="aligncenter size-full wp-image-1482" srcset="https://blog.identitydesign.us/wp-content/uploads/2021/08/youtube-embed.jpg 1520w, https://blog.identitydesign.us/wp-content/uploads/2021/08/youtube-embed-300x169.jpg 300w, https://blog.identitydesign.us/wp-content/uploads/2021/08/youtube-embed-1024x575.jpg 1024w, https://blog.identitydesign.us/wp-content/uploads/2021/08/youtube-embed-768x431.jpg 768w, https://blog.identitydesign.us/wp-content/uploads/2021/08/youtube-embed-624x351.jpg 624w" sizes="auto, (max-width: 1520px) 100vw, 1520px" /></a> </p>
<p>The video might look great with your desktop screen, but depends on your device screens sizes with dimensions, the video might have black empty spaces on top and bottom of the videos. How do I fix this?</p>
<h2>Make Youtube Video Responsive for All Screen Sizes without Leaving Black Areas</h2>
<p>Add a wrap <code>.iframe-wrap</code> around the iframe code you embedded.</p>
<h3>HTML</h3>
<pre>
&lt;div class=&quot;iframe-wrap&quot;&gt;
  &lt;iframe width=&quot;708&quot; height=&quot;398&quot; src=&quot;https://www.youtube.com/embed/c9RzZpV460k&quot; title=&quot;YouTube video player&quot; frameborder=&quot;0&quot; allow=&quot;accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture&quot; allowfullscreen&gt;&lt;/iframe&gt;
&lt;/div&gt;
</pre>
<h3>CSS</h3>
<p>Copy the code below and paste into your CSS document. 	</p>
<pre>
.iframe-wrap {
    position: relative;
    padding-bottom: 50%; /**YOU MIGHT HAVE TO ADJUST TO FIT PERFECTLY**/
}
iframe {
    position: absolute;
    width: 100%
    height: 100%;
}
</pre>
<p>As commented in the <code>.iframe-wrap</code>, you might have to adjust to fit perfectly. It normally fits well between 50% to 60%. Enjoy coding!</p><p>The post <a href="https://blog.identitydesign.us/css-make-perfect-responsive-youtube-embedded-iframed-videos/">CSS: Make Perfect Responsive YouTube Embedded Iframed Videos</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-perfect-responsive-youtube-embedded-iframed-videos/">CSS: Make Perfect Responsive YouTube Embedded Iframed Videos</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-crop-image/" rel="bookmark" title="CSS: Crop Image Width or Height with CSS Only">CSS: Crop Image Width or Height with CSS Only</a></li>
<li><a href="https://blog.identitydesign.us/css-add-gradient-dark-shade-on-background-images-to-make-the-text-visible/" rel="bookmark" title="CSS: Add Gradient (Dark Shade) Layer on Background Images to Make the Text Visible">CSS: Add Gradient (Dark Shade) Layer on Background Images to Make the Text Visible</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/css-make-perfect-responsive-youtube-embedded-iframed-videos/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>CSS: Crop Image Width or Height with CSS Only</title>
		<link>https://blog.identitydesign.us/css-crop-image/</link>
					<comments>https://blog.identitydesign.us/css-crop-image/#respond</comments>
		
		<dc:creator><![CDATA[djemals]]></dc:creator>
		<pubDate>Fri, 06 Aug 2021 00:04:12 +0000</pubDate>
				<category><![CDATA[CSSonly]]></category>
		<category><![CDATA[How-To]]></category>
		<category><![CDATA[HTML/CSS/PHP/JavaScripts]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Website]]></category>
		<guid isPermaLink="false">http://blog.identitydesign.us/?p=1471</guid>

					<description><![CDATA[<p>Images can be cropped with a couple of CSS lines without using Photoshop or any image editing tools. This is useful when your multiple column thumbnail image height is different like below. BEFORE Because of the uneven height of the thumbnails the entire structure could be easily broken. CSS Copy the code below and paste [&#8230;]</p>
<p>The post <a href="https://blog.identitydesign.us/css-crop-image/">CSS: Crop Image Width or Height with CSS Only</a> first appeared on <a href="https://blog.identitydesign.us">identity design</a>.</p>
<p>The post <a href="https://blog.identitydesign.us/css-crop-image/">CSS: Crop Image Width or Height with CSS Only</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/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-add-gradient-dark-shade-on-background-images-to-make-the-text-visible/" rel="bookmark" title="CSS: Add Gradient (Dark Shade) Layer on Background Images to Make the Text Visible">CSS: Add Gradient (Dark Shade) Layer on Background Images to Make the Text Visible</a></li>
<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>
</ol>
</div>
]]></description>
										<content:encoded><![CDATA[<p>Images can be cropped with a couple of CSS lines without using Photoshop or any image editing tools. This is useful when your multiple column thumbnail image height is different like below. </p>
<h2>BEFORE</h2>
<p><a href="https://blog.identitydesign.us/wp-content/uploads/2021/08/before.jpg"><img loading="lazy" decoding="async" src="https://blog.identitydesign.us/wp-content/uploads/2021/08/before.jpg" alt="thumbnail image before" width="2404" height="784" class="aligncenter size-full wp-image-1473" srcset="https://blog.identitydesign.us/wp-content/uploads/2021/08/before.jpg 2404w, https://blog.identitydesign.us/wp-content/uploads/2021/08/before-300x98.jpg 300w, https://blog.identitydesign.us/wp-content/uploads/2021/08/before-1024x334.jpg 1024w, https://blog.identitydesign.us/wp-content/uploads/2021/08/before-768x250.jpg 768w, https://blog.identitydesign.us/wp-content/uploads/2021/08/before-1536x501.jpg 1536w, https://blog.identitydesign.us/wp-content/uploads/2021/08/before-2048x668.jpg 2048w, https://blog.identitydesign.us/wp-content/uploads/2021/08/before-624x204.jpg 624w" sizes="auto, (max-width: 2404px) 100vw, 2404px" /></a></p>
<p>Because of the uneven height of the thumbnails the entire structure could be easily broken.<br />
</p>
<div class="clear"></div>
<h2>CSS</h2>
<p>Copy the code below and paste into your CSS document. 		 	</p>
<pre>
img {
    height: 200px;
    object-fit: cover;
}
</pre>
<p>Try <code>object-position: 10% 10%;</code> if you want to move around the position of the image within the area.</p>
<h2>AFTER</h2>
<p><a href="https://blog.identitydesign.us/wp-content/uploads/2021/08/after.jpg"><img loading="lazy" decoding="async" src="https://blog.identitydesign.us/wp-content/uploads/2021/08/after.jpg" alt="thumbnail image after" width="2390" height="720" class="aligncenter size-full wp-image-1472" srcset="https://blog.identitydesign.us/wp-content/uploads/2021/08/after.jpg 2390w, https://blog.identitydesign.us/wp-content/uploads/2021/08/after-300x90.jpg 300w, https://blog.identitydesign.us/wp-content/uploads/2021/08/after-1024x308.jpg 1024w, https://blog.identitydesign.us/wp-content/uploads/2021/08/after-768x231.jpg 768w, https://blog.identitydesign.us/wp-content/uploads/2021/08/after-1536x463.jpg 1536w, https://blog.identitydesign.us/wp-content/uploads/2021/08/after-2048x617.jpg 2048w, https://blog.identitydesign.us/wp-content/uploads/2021/08/after-624x188.jpg 624w" sizes="auto, (max-width: 2390px) 100vw, 2390px" /></a></p>
<p>All 20-30 of your thumbnails will fit perfectly, and your layout won&#8217;t look wonky again. This method could be used on any single image on your webpage.</p>

<div class="clear"></div><p>The post <a href="https://blog.identitydesign.us/css-crop-image/">CSS: Crop Image Width or Height with CSS Only</a> first appeared on <a href="https://blog.identitydesign.us">identity design</a>.</p><p>The post <a href="https://blog.identitydesign.us/css-crop-image/">CSS: Crop Image Width or Height with CSS Only</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/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-add-gradient-dark-shade-on-background-images-to-make-the-text-visible/" rel="bookmark" title="CSS: Add Gradient (Dark Shade) Layer on Background Images to Make the Text Visible">CSS: Add Gradient (Dark Shade) Layer on Background Images to Make the Text Visible</a></li>
<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>
</ol>
</div>
]]></content:encoded>
					
					<wfw:commentRss>https://blog.identitydesign.us/css-crop-image/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Use CSS to remove auto-generated empty &#060;p&#062; tags in WordPress</title>
		<link>https://blog.identitydesign.us/remove-empty-p-tags-in-wordpress/</link>
					<comments>https://blog.identitydesign.us/remove-empty-p-tags-in-wordpress/#respond</comments>
		
		<dc:creator><![CDATA[djemals]]></dc:creator>
		<pubDate>Sun, 24 Jan 2021 09:26:22 +0000</pubDate>
				<category><![CDATA[backend]]></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>
		<guid isPermaLink="false">http://blog.identitydesign.us/?p=1379</guid>

					<description><![CDATA[<p>Can&#8217;t complain the great convenient functionality of auto-generating &#60;p&#62; tag in WordPress, but sometimes it&#8217;s pretty annoying as it breaks some lines unintentionally. Here&#8217;s how to remove only empty &#60;p&#62; tag with a simple CSS line. CSS: Hide/Remove Empty &#60;p&#62; tags p:empty { display: none; }</p>
<p>The post <a href="https://blog.identitydesign.us/remove-empty-p-tags-in-wordpress/">Use CSS to remove auto-generated empty </p>
<p> tags 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/remove-empty-p-tags-in-wordpress/">Use CSS to remove auto-generated empty &lt;p&gt; tags 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/remove-automatic-and-tags-in-wordpress-2/" rel="bookmark" title="Remove automatic &lt;BR&gt; &amp; &lt;P&gt; tags in WordPress">Remove automatic &lt;BR&gt; &amp; &lt;P&gt; tags in WordPress</a></li>
<li><a href="https://blog.identitydesign.us/remove-automatic-and-tags-in-wordpress/" rel="bookmark" title="Remove Automatic and Tags in WordPress">Remove Automatic and Tags in WordPress</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>Can&#8217;t complain the great convenient functionality of auto-generating <code>&lt;p&gt;</code> tag in WordPress, but sometimes it&#8217;s pretty annoying as it breaks some lines unintentionally. Here&#8217;s how to remove only empty <code>&lt;p&gt;</code> tag with a simple CSS line.</p>
<h2>CSS: Hide/Remove Empty &lt;p&gt; tags</h2>
<pre>
p:empty {
  display: none;
}
</pre>

<div class="clear"></div><p>The post <a href="https://blog.identitydesign.us/remove-empty-p-tags-in-wordpress/">Use CSS to remove auto-generated empty <p> tags 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/remove-empty-p-tags-in-wordpress/">Use CSS to remove auto-generated empty &lt;p&gt; tags 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/remove-automatic-and-tags-in-wordpress-2/" rel="bookmark" title="Remove automatic &lt;BR&gt; &amp; &lt;P&gt; tags in WordPress">Remove automatic &lt;BR&gt; &amp; &lt;P&gt; tags in WordPress</a></li>
<li><a href="https://blog.identitydesign.us/remove-automatic-and-tags-in-wordpress/" rel="bookmark" title="Remove Automatic and Tags in WordPress">Remove Automatic and Tags in WordPress</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/remove-empty-p-tags-in-wordpress/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>Use Dropbox as Website Server Hosting FTP</title>
		<link>https://blog.identitydesign.us/use-dropbox-hosting-server-ftp/</link>
					<comments>https://blog.identitydesign.us/use-dropbox-hosting-server-ftp/#respond</comments>
		
		<dc:creator><![CDATA[djemals]]></dc:creator>
		<pubDate>Tue, 11 Aug 2020 08:59:08 +0000</pubDate>
				<category><![CDATA[backend]]></category>
		<category><![CDATA[How-To]]></category>
		<category><![CDATA[HTML/CSS/PHP/JavaScripts]]></category>
		<category><![CDATA[Server]]></category>
		<category><![CDATA[Website]]></category>
		<guid isPermaLink="false">http://blog.identitydesign.us/?p=1274</guid>

					<description><![CDATA[<p>Looking for a free FTP server? Use Dropbox as your web hosting server for free. First, you have to download and install Dropbox to your computer. Save your file you wish to host for your website in the dropbox folder. Right click and hit &#8220;Share&#8221;. Hit &#8220;Create Link&#8221; and then &#8220;Link Settings&#8221;. Change &#8220;Team Members&#8221; [&#8230;]</p>
<p>The post <a href="https://blog.identitydesign.us/use-dropbox-hosting-server-ftp/">Use Dropbox as Website Server Hosting FTP</a> first appeared on <a href="https://blog.identitydesign.us">identity design</a>.</p>
<p>The post <a href="https://blog.identitydesign.us/use-dropbox-hosting-server-ftp/">Use Dropbox as Website Server Hosting FTP</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/redirect-http-website-to-secure-https-website-using-simple-htaccess/" rel="bookmark" title="Redirect HTTP Website to Secure HTTPS Website Using Simple .htaccess in cPane/Hosting">Redirect HTTP Website to Secure HTTPS Website Using Simple .htaccess in cPane/Hosting</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>Looking for a free FTP server? Use Dropbox as your web hosting server for free. First, you have to download and install Dropbox to your computer. Save your file you wish to host for your website in the dropbox folder. Right click and hit &#8220;Share&#8221;.</p>
<p><a href="https://blog.identitydesign.us/wp-content/uploads/2020/08/dropbox1.jpg"><img loading="lazy" decoding="async" src="https://blog.identitydesign.us/wp-content/uploads/2020/08/dropbox1.jpg" alt="" width="213" height="182" class="aligncenter size-full wp-image-1277" /></a><br />
Hit &#8220;Create Link&#8221; and then &#8220;Link Settings&#8221;. Change &#8220;Team Members&#8221; to &#8220;Anyone with Link&#8221; under &#8220;Who has access&#8221; field. Save your setting, &#8220;Copy Link&#8221;, and now you are ready to provide the image or other resource url to the website.</p>
<p><a href="https://blog.identitydesign.us/wp-content/uploads/2020/08/dropbox2.jpg"><img loading="lazy" decoding="async" src="https://blog.identitydesign.us/wp-content/uploads/2020/08/dropbox2.jpg" alt="" width="526" height="525" class="alignnone size-full wp-image-1276" srcset="https://blog.identitydesign.us/wp-content/uploads/2020/08/dropbox2.jpg 526w, https://blog.identitydesign.us/wp-content/uploads/2020/08/dropbox2-300x300.jpg 300w, https://blog.identitydesign.us/wp-content/uploads/2020/08/dropbox2-150x150.jpg 150w, https://blog.identitydesign.us/wp-content/uploads/2020/08/dropbox2-120x120.jpg 120w" sizes="auto, (max-width: 526px) 100vw, 526px" /></a></p>
<p><a href="https://blog.identitydesign.us/wp-content/uploads/2020/08/dropbox3.jpg"><img loading="lazy" decoding="async" src="https://blog.identitydesign.us/wp-content/uploads/2020/08/dropbox3.jpg" alt="" width="526" height="109" class="alignnone size-full wp-image-1275" srcset="https://blog.identitydesign.us/wp-content/uploads/2020/08/dropbox3.jpg 526w, https://blog.identitydesign.us/wp-content/uploads/2020/08/dropbox3-300x62.jpg 300w" sizes="auto, (max-width: 526px) 100vw, 526px" /></a></p>
<p>All given Dropbox links are ended with <code>?dl=0</code>. Change it to <code>?raw=1</code>, and it will be live and your Dropbox will be working as a FTP server.</p>
<h3>Example</h3>
<pre>
&lt;img src="https://www.dropbox.com/s/gjgkjqlecf6ek9c/design-custom-j316.jpg?dl=0" /&gt; 
</pre>
<p>Change above dropbox link as below.</p>
<pre>
&lt;img src="https://www.dropbox.com/s/gjgkjqlecf6ek9c/design-custom-j316.jpg?raw=1" /&gt;
</pre>

<div class="clear"></div><p>The post <a href="https://blog.identitydesign.us/use-dropbox-hosting-server-ftp/">Use Dropbox as Website Server Hosting FTP</a> first appeared on <a href="https://blog.identitydesign.us">identity design</a>.</p><p>The post <a href="https://blog.identitydesign.us/use-dropbox-hosting-server-ftp/">Use Dropbox as Website Server Hosting FTP</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/redirect-http-website-to-secure-https-website-using-simple-htaccess/" rel="bookmark" title="Redirect HTTP Website to Secure HTTPS Website Using Simple .htaccess in cPane/Hosting">Redirect HTTP Website to Secure HTTPS Website Using Simple .htaccess in cPane/Hosting</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/use-dropbox-hosting-server-ftp/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 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="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 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/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>Insert or Import an HTML Email (Designed Template) into Outlook Email</title>
		<link>https://blog.identitydesign.us/insert-and-import-html-email-designed-template-into-outlook-email/</link>
					<comments>https://blog.identitydesign.us/insert-and-import-html-email-designed-template-into-outlook-email/#respond</comments>
		
		<dc:creator><![CDATA[djemals]]></dc:creator>
		<pubDate>Thu, 21 Nov 2019 01:17:25 +0000</pubDate>
				<category><![CDATA[Emails]]></category>
		<category><![CDATA[How-To]]></category>
		<category><![CDATA[HTML/CSS/PHP/JavaScripts]]></category>
		<guid isPermaLink="false">http://blog.identitydesign.us/?p=1192</guid>

					<description><![CDATA[<p>If you are a marketer, you should be familiar with email marketing platforms like MailChimp, Campaign Monitor or SendGrid. Most of the email tools, you should be able to drag and drop or hard-code to build email templates. Sometimes I have to use my Outlook (not those email marketing platforms) to send a &#8220;designed&#8221; email [&#8230;]</p>
<p>The post <a href="https://blog.identitydesign.us/insert-and-import-html-email-designed-template-into-outlook-email/">Insert or Import an HTML Email (Designed Template) into Outlook Email</a> first appeared on <a href="https://blog.identitydesign.us">identity design</a>.</p>
<p>The post <a href="https://blog.identitydesign.us/insert-and-import-html-email-designed-template-into-outlook-email/">Insert or Import an HTML Email (Designed Template) into Outlook Email</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/freebies-christmas-responsive-email-template-business-htmlcss/" rel="bookmark" title="Freebies: Christmas Responsive Email Template for Business (HTML/CSS)">Freebies: Christmas Responsive Email Template for Business (HTML/CSS)</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>
</ol>
</div>
]]></description>
										<content:encoded><![CDATA[<p>If you are a marketer, you should be familiar with email marketing platforms like <a href="https://mailchimp.com/" target="_blank">MailChimp</a>, <a href="https://www.campaignmonitor.com/" target="_blank">Campaign Monitor</a> or <a href="https://sendgrid.com/" target="_blank">SendGrid</a>. Most of the email tools, you should be able to drag and drop or hard-code to build email templates. Sometimes I have to use my Outlook (not those email marketing platforms) to send a &#8220;designed&#8221; email for a company internal announcement to save my bills.</p>
<p>Let me walk you through step-by-step how to insert or import an HTML email ino your Outlook Email.</p>
<ol>
<li>Save your designed (hard coded) HTML (<a href="https://blog.identitydesign.us/wp-content/uploads/2019/11/email-sample.html.zip" rel="">Download this sample</a> for a test)</li>
<li>Open your Outlook, and click &#8220;New Email&#8221;.</li>
<li>Click the &#8220;Insert Tab&#8221; -&gt; &#8220;Attach File&#8221; -&gt; select the HTML you wish to insert -&gt; click the small dropdown (caret) right next to the &#8220;Insert&#8221; button -&gt; &#8220;Insert as Text&#8221;. <img loading="lazy" decoding="async" class="alignnone size-full wp-image-1194" src="https://blog.identitydesign.us/wp-content/uploads/2019/11/insert.png" alt="Insert Screenshot" width="215" height="104" /></li>
<li>Done!</li>
</ol>
<p>Now you are ready to use your just-made designed email template for Outlook!</p><p>The post <a href="https://blog.identitydesign.us/insert-and-import-html-email-designed-template-into-outlook-email/">Insert or Import an HTML Email (Designed Template) into Outlook Email</a> first appeared on <a href="https://blog.identitydesign.us">identity design</a>.</p><p>The post <a href="https://blog.identitydesign.us/insert-and-import-html-email-designed-template-into-outlook-email/">Insert or Import an HTML Email (Designed Template) into Outlook Email</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/freebies-christmas-responsive-email-template-business-htmlcss/" rel="bookmark" title="Freebies: Christmas Responsive Email Template for Business (HTML/CSS)">Freebies: Christmas Responsive Email Template for Business (HTML/CSS)</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>
</ol>
</div>
]]></content:encoded>
					
					<wfw:commentRss>https://blog.identitydesign.us/insert-and-import-html-email-designed-template-into-outlook-email/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Redirect HTTP Website to Secure HTTPS Website Using Simple .htaccess in cPane/Hosting</title>
		<link>https://blog.identitydesign.us/redirect-http-website-to-secure-https-website-using-simple-htaccess/</link>
					<comments>https://blog.identitydesign.us/redirect-http-website-to-secure-https-website-using-simple-htaccess/#respond</comments>
		
		<dc:creator><![CDATA[djemals]]></dc:creator>
		<pubDate>Wed, 13 Nov 2019 01:28:49 +0000</pubDate>
				<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=1181</guid>

					<description><![CDATA[<p>Check your website if it&#8217;s already HTTPS (SSL Certificate is) valid and active by changing http:// to https:// in the URL. If you find your website is already HTTPS active, then let&#8217;s make an automatic redirect so users can land on your secured page. Open your cPanel -> File Manager -> public_html (or very top [&#8230;]</p>
<p>The post <a href="https://blog.identitydesign.us/redirect-http-website-to-secure-https-website-using-simple-htaccess/">Redirect HTTP Website to Secure HTTPS Website Using Simple .htaccess in cPane/Hosting</a> first appeared on <a href="https://blog.identitydesign.us">identity design</a>.</p>
<p>The post <a href="https://blog.identitydesign.us/redirect-http-website-to-secure-https-website-using-simple-htaccess/">Redirect HTTP Website to Secure HTTPS Website Using Simple .htaccess in cPane/Hosting</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/get-a-free-ssl-certificate-secure-socket-layer-change-http-to-https-for-your-website-domain/" rel="bookmark" title="Get a free SSL Certificate (Secure Socket Layer) &#8211; Change HTTP to HTTPS for your website domain">Get a free SSL Certificate (Secure Socket Layer) &#8211; Change HTTP to HTTPS for your website domain</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>Check your website if it&#8217;s already HTTPS (SSL Certificate is) valid and active by changing <code>http://</code> to <code>https://</code> in the URL. If you find your website is already HTTPS active, then let&#8217;s make an automatic redirect so users can land on your secured page.</p>
<p>Open your <code>cPanel</code> -> <code>File Manager</code> -> <code>public_html</code> (or very top of your folder structure), and create a file, <code>.htaccess</code>. Add the code to the file and save:</p>
<pre>
RewriteEngine On
RewriteCond %{HTTPS} off
RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
</pre>

<div class="clear"></div>
<p>Or <a class="btn" onclick="_gaq.push(['_trackEvent', 'Freebies', 'htaccess', 'https://blog.identitydesign.us/wp-content/uploads/2019/11/htaccess.zip']);" href="https://blog.identitydesign.us/wp-content/uploads/2019/11/htaccess.zip">download</a> this in a file, unzip, add a period before like this -> &#8220;.htaccess&#8221;, and upload in your hosting/cPanel (or very top of your folder structure).</p><p>The post <a href="https://blog.identitydesign.us/redirect-http-website-to-secure-https-website-using-simple-htaccess/">Redirect HTTP Website to Secure HTTPS Website Using Simple .htaccess in cPane/Hosting</a> first appeared on <a href="https://blog.identitydesign.us">identity design</a>.</p><p>The post <a href="https://blog.identitydesign.us/redirect-http-website-to-secure-https-website-using-simple-htaccess/">Redirect HTTP Website to Secure HTTPS Website Using Simple .htaccess in cPane/Hosting</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/get-a-free-ssl-certificate-secure-socket-layer-change-http-to-https-for-your-website-domain/" rel="bookmark" title="Get a free SSL Certificate (Secure Socket Layer) &#8211; Change HTTP to HTTPS for your website domain">Get a free SSL Certificate (Secure Socket Layer) &#8211; Change HTTP to HTTPS for your website domain</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/redirect-http-website-to-secure-https-website-using-simple-htaccess/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>CSS: Add Gradient (Dark Shade) Layer on Background Images to Make the Text Visible</title>
		<link>https://blog.identitydesign.us/css-add-gradient-dark-shade-on-background-images-to-make-the-text-visible/</link>
					<comments>https://blog.identitydesign.us/css-add-gradient-dark-shade-on-background-images-to-make-the-text-visible/#respond</comments>
		
		<dc:creator><![CDATA[djemals]]></dc:creator>
		<pubDate>Thu, 31 Oct 2019 00:08:45 +0000</pubDate>
				<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=1139</guid>

					<description><![CDATA[<p>Sometimes the text or caption is not legible on an image depends on the color contrast between the foreground element and the background. I used to edit my image to be more darker or lighter to make the HTML text stand out and readable to users, but well, here&#8217;s must easier solution with lines of [&#8230;]</p>
<p>The post <a href="https://blog.identitydesign.us/css-add-gradient-dark-shade-on-background-images-to-make-the-text-visible/">CSS: Add Gradient (Dark Shade) Layer on Background Images to Make the Text Visible</a> first appeared on <a href="https://blog.identitydesign.us">identity design</a>.</p>
<p>The post <a href="https://blog.identitydesign.us/css-add-gradient-dark-shade-on-background-images-to-make-the-text-visible/">CSS: Add Gradient (Dark Shade) Layer on Background Images to Make the Text Visible</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-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/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/redirect-http-website-to-secure-https-website-using-simple-htaccess/" rel="bookmark" title="Redirect HTTP Website to Secure HTTPS Website Using Simple .htaccess in cPane/Hosting">Redirect HTTP Website to Secure HTTPS Website Using Simple .htaccess in cPane/Hosting</a></li>
</ol>
</div>
]]></description>
										<content:encoded><![CDATA[<p>Sometimes the text or caption is not legible on an image depends on the color contrast between the foreground element and the background. I used to edit my image to be more darker or lighter to make the HTML text stand out and readable to users, but well, here&#8217;s must easier solution with lines of CSS!</p>
<div class="hero-outer">
<div class="hero-inner original">
<p>Original</p>
</div>
</div>
<div class="hero-outer">
<div class="hero-inner">
<p>CSS Gradient</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 class=&quot;hero-outer&quot;&gt;
    &lt;div class=&quot;hero-inner&quot;&gt;
        &lt;p&gt;CSS Gradient&lt;/p&gt;
    &lt;/div&gt;
&lt;/div&gt;
</pre>
<h2>CSS</h2>
<p>Copy the code below and paste into your CSS document. 		 	</p>
<pre>
.hero-outer { position:relative; }
.hero-inner::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background-image: linear-gradient(to bottom, #000, transparent);
    opacity: 0.5;
}
.hero-inner { 
    background: url('https://blog.identitydesign.us/wp-content/uploads/2019/10/300x200-gradient-1.jpg'); 
    width:100%;
    height: 400px;
    background-size:cover;
}
.hero-inner p { 
    color:#fff; 
    position:relative; 
    font-size: 50px !important; 
    padding-right: 40px;
    text-align: right;
    top: 20px;
    z-index: 1;
}
</pre>

<div class="clear"></div>
<style>
.hero-outer { position:relative; }
.hero-inner::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background-image: linear-gradient(to bottom, #000, transparent);
    opacity: 0.5;
}
.hero-inner { 
    background: url('https://blog.identitydesign.us/wp-content/uploads/2019/10/300x200-gradient-1.jpg'); 
    width:100%;
    height: 400px;
    background-size:cover;
}
.hero-inner p { 
    color:#fff; 
    position:relative; 
    font-size: 50px !important; 
    padding-right: 40px;
    text-align: right;
    top: 20px;
    z-index: 1;
}
.original::after {
    opacity: 0 !important;
}
</style><p>The post <a href="https://blog.identitydesign.us/css-add-gradient-dark-shade-on-background-images-to-make-the-text-visible/">CSS: Add Gradient (Dark Shade) Layer on Background Images to Make the Text Visible</a> first appeared on <a href="https://blog.identitydesign.us">identity design</a>.</p><p>The post <a href="https://blog.identitydesign.us/css-add-gradient-dark-shade-on-background-images-to-make-the-text-visible/">CSS: Add Gradient (Dark Shade) Layer on Background Images to Make the Text Visible</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-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/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/redirect-http-website-to-secure-https-website-using-simple-htaccess/" rel="bookmark" title="Redirect HTTP Website to Secure HTTPS Website Using Simple .htaccess in cPane/Hosting">Redirect HTTP Website to Secure HTTPS Website Using Simple .htaccess in cPane/Hosting</a></li>
</ol>
</div>
]]></content:encoded>
					
					<wfw:commentRss>https://blog.identitydesign.us/css-add-gradient-dark-shade-on-background-images-to-make-the-text-visible/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>
	</channel>
</rss>
