<?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>CSSonly - identity design</title>
	<atom:link href="https://blog.identitydesign.us/category/cssonly/feed/" rel="self" type="application/rss+xml" />
	<link>https://blog.identitydesign.us/category/cssonly/</link>
	<description>Web Tips &#38; Free Templates</description>
	<lastBuildDate>Sun, 11 May 2025 06:24:49 +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>CSSonly - identity design</title>
	<link>https://blog.identitydesign.us/category/cssonly/</link>
	<width>32</width>
	<height>32</height>
</image> 
	<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>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>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>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 fetchpriority="high" 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="(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>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 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="(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 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="(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>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>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>
		<item>
		<title>CSS / HTML: Make Absolute Center (Vertical &#038; Horizontal)</title>
		<link>https://blog.identitydesign.us/css-make-your-element-absolute-center-vertical-horizontal/</link>
					<comments>https://blog.identitydesign.us/css-make-your-element-absolute-center-vertical-horizontal/#respond</comments>
		
		<dc:creator><![CDATA[djemals]]></dc:creator>
		<pubDate>Sat, 09 Feb 2019 01:05:02 +0000</pubDate>
				<category><![CDATA[Bootstrap]]></category>
		<category><![CDATA[CSSonly]]></category>
		<category><![CDATA[HTML/CSS/PHP/JavaScripts]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Website]]></category>
		<category><![CDATA[Wordpress]]></category>
		<guid isPermaLink="false">http://blog.identitydesign.us/?p=1088</guid>

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

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

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

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