<?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>Tutorials - identity design</title>
	<atom:link href="https://blog.identitydesign.us/category/tutorials/feed/" rel="self" type="application/rss+xml" />
	<link>https://blog.identitydesign.us/category/tutorials/</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>Tutorials - identity design</title>
	<link>https://blog.identitydesign.us/category/tutorials/</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>HTML-CSS-JS: Simple Hamburger Menu Expandable</title>
		<link>https://blog.identitydesign.us/simple-hamburger-menu/</link>
					<comments>https://blog.identitydesign.us/simple-hamburger-menu/#respond</comments>
		
		<dc:creator><![CDATA[djemals]]></dc:creator>
		<pubDate>Sat, 10 Dec 2022 01:16:30 +0000</pubDate>
				<category><![CDATA[CSSonly]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[HTML/CSS/PHP/JavaScripts]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Website]]></category>
		<guid isPermaLink="false">http://blog.identitydesign.us/?p=1812</guid>

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

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

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

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

					<description><![CDATA[<p>&#8220;How to use .OTF (or other desktop) fonts to your website?&#8221; If you would like to use your desktop fonts to your website, do this! CSS Select and place fonts to the server. Copy and paste codes below to your stylesheet. Replace font-family: &#8216;FONT1&#8216; on both @font-face and p with your own font name. You [&#8230;]</p>
<p>The post <a href="https://blog.identitydesign.us/desktop-fonts-to-website/">CSS: Use your desktop fonts to your website</a> first appeared on <a href="https://blog.identitydesign.us">identity design</a>.</p>
<p>The post <a href="https://blog.identitydesign.us/desktop-fonts-to-website/">CSS: Use your desktop fonts to your website</a> appeared first on <a href="https://blog.identitydesign.us">identity design</a>.</p>
<div class='yarpp yarpp-related yarpp-related-rss yarpp-template-list'>
<!-- YARPP List -->
<h3>Related posts:</h3><ol>
<li><a href="https://blog.identitydesign.us/loading-webfonts-https-ssl/" rel="bookmark" title="Resolved! Loading Your Google Fonts Over https (SSL) Sites">Resolved! Loading Your Google Fonts Over https (SSL) Sites</a></li>
<li><a href="https://blog.identitydesign.us/css-make-your-element-absolute-center-vertical-horizontal/" rel="bookmark" title="CSS / HTML: Make Absolute Center (Vertical &#038; Horizontal)">CSS / HTML: Make Absolute Center (Vertical &#038; Horizontal)</a></li>
<li><a href="https://blog.identitydesign.us/fonts-collection-best-for-web-and-print-design/" rel="bookmark" title="Fonts Collection &#8211; Best for Web and Print Design">Fonts Collection &#8211; Best for Web and Print Design</a></li>
</ol>
</div>
]]></description>
										<content:encoded><![CDATA[<blockquote><p> &#8220;How to use .OTF (or other desktop) fonts to your website?&#8221; </p></blockquote>
<p>If you would like to use your desktop fonts to your website, do this!</p>
<h2>CSS</h2>
<ol>
<li>Select and place fonts to the server.</li>
<li>Copy and paste codes below to your stylesheet.</li>
<li>Replace font-family: &#8216;<code>FONT1</code>&#8216; on both <code>@font-face</code> and <code>p</code> with your own font name.</li>
<li>You may change <code>normal</code> to <code>bold</code> if necessary.</li>
</ol>
<pre>
@font-face {
	font-family: 'FONT1';
	src: url("../fonts/YOUR-FONT-LOCATION.otf") format("opentype");
	font-weight: normal;
	font-style: normal;
}
p { 
	font-family: 'FONT1', sans-serif; 
}
</pre>
<div class="clear"></div><p>The post <a href="https://blog.identitydesign.us/desktop-fonts-to-website/">CSS: Use your desktop fonts to your website</a> first appeared on <a href="https://blog.identitydesign.us">identity design</a>.</p><p>The post <a href="https://blog.identitydesign.us/desktop-fonts-to-website/">CSS: Use your desktop fonts to your website</a> appeared first on <a href="https://blog.identitydesign.us">identity design</a>.</p>
<div class='yarpp yarpp-related yarpp-related-rss yarpp-template-list'>
<!-- YARPP List -->
<h3>Related posts:</h3><ol>
<li><a href="https://blog.identitydesign.us/loading-webfonts-https-ssl/" rel="bookmark" title="Resolved! Loading Your Google Fonts Over https (SSL) Sites">Resolved! Loading Your Google Fonts Over https (SSL) Sites</a></li>
<li><a href="https://blog.identitydesign.us/css-make-your-element-absolute-center-vertical-horizontal/" rel="bookmark" title="CSS / HTML: Make Absolute Center (Vertical &#038; Horizontal)">CSS / HTML: Make Absolute Center (Vertical &#038; Horizontal)</a></li>
<li><a href="https://blog.identitydesign.us/fonts-collection-best-for-web-and-print-design/" rel="bookmark" title="Fonts Collection &#8211; Best for Web and Print Design">Fonts Collection &#8211; Best for Web and Print Design</a></li>
</ol>
</div>
]]></content:encoded>
					
					<wfw:commentRss>https://blog.identitydesign.us/desktop-fonts-to-website/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>How to Change the Order of Artboards on Adobe Illustrator</title>
		<link>https://blog.identitydesign.us/change-artboards-order-illustrator/</link>
					<comments>https://blog.identitydesign.us/change-artboards-order-illustrator/#respond</comments>
		
		<dc:creator><![CDATA[djemals]]></dc:creator>
		<pubDate>Fri, 08 Oct 2021 23:15:31 +0000</pubDate>
				<category><![CDATA[design]]></category>
		<category><![CDATA[How-To]]></category>
		<category><![CDATA[Illustrator]]></category>
		<category><![CDATA[Pixels]]></category>
		<category><![CDATA[Tutorials]]></category>
		<guid isPermaLink="false">http://blog.identitydesign.us/?p=1580</guid>

					<description><![CDATA[<p>Adobe Illustrator can create multiple paged PDF using multiple artboards. If you need to rearrange the order of pages, here is how-to. Artboards are like Canvas in Adobe Photoshop. The two-digit number starting on the left of each artboard is the order of the content in PDF. To change the order of artboards, open up [&#8230;]</p>
<p>The post <a href="https://blog.identitydesign.us/change-artboards-order-illustrator/">How to Change the Order of Artboards on Adobe Illustrator</a> first appeared on <a href="https://blog.identitydesign.us">identity design</a>.</p>
<p>The post <a href="https://blog.identitydesign.us/change-artboards-order-illustrator/">How to Change the Order of Artboards on Adobe Illustrator</a> appeared first on <a href="https://blog.identitydesign.us">identity design</a>.</p>
<div class='yarpp yarpp-related yarpp-related-rss yarpp-template-list'>
<!-- YARPP List -->
<h3>Related posts:</h3><ol>
<li><a href="https://blog.identitydesign.us/how-to-remove-or-uninstall-plugins-like-phantasm-in-adobe-illustrator/" rel="bookmark" title="How to Remove or Uninstall Plugins like Phantasm in Adobe Illustrator?">How to Remove or Uninstall Plugins like Phantasm in Adobe Illustrator?</a></li>
<li><a href="https://blog.identitydesign.us/make-your-photos-into-a-gif-animation-stop-motion-using-photoshop/" rel="bookmark" title="Make Your Photos into a GIF Animation (Stop Motion) Using Photoshop">Make Your Photos into a GIF Animation (Stop Motion) Using Photoshop</a></li>
<li><a href="https://blog.identitydesign.us/solved-adobe-creative-cloud-access-to-manage-apps-permission-issue/" rel="bookmark" title="Solved: Adobe Creative Cloud Access to Manage Apps Permission Issue">Solved: Adobe Creative Cloud Access to Manage Apps Permission Issue</a></li>
</ol>
</div>
]]></description>
										<content:encoded><![CDATA[<p>Adobe Illustrator can create multiple paged PDF using multiple artboards. If you need to rearrange the order of pages, here is how-to.</p>
<p>Artboards are like Canvas in Adobe Photoshop.</p>
<p> <img fetchpriority="high" decoding="async" src="https://blog.identitydesign.us/wp-content/uploads/2021/10/artboards-1024x394.png" alt="Artboards" width="625" height="240" class="aligncenter size-large wp-image-1583" srcset="https://blog.identitydesign.us/wp-content/uploads/2021/10/artboards-1024x394.png 1024w, https://blog.identitydesign.us/wp-content/uploads/2021/10/artboards-300x115.png 300w, https://blog.identitydesign.us/wp-content/uploads/2021/10/artboards-768x295.png 768w, https://blog.identitydesign.us/wp-content/uploads/2021/10/artboards-624x240.png 624w, https://blog.identitydesign.us/wp-content/uploads/2021/10/artboards.png 1452w" sizes="(max-width: 625px) 100vw, 625px" /> </p>
<p>The two-digit number starting on the left of each artboard is the order of the content in PDF. To change the order of artboards, open up the Artboard Palette and drag layers as you want. </p>
<h2><span>1</span> Open -> <code>Window</code> (on top menu bar) -> choose <code>Artboards</code></h2>
<p> <img decoding="async" src="https://blog.identitydesign.us/wp-content/uploads/2021/10/open-window-278x300.png" alt="how to open Artboard" width="278" height="300" class="aligncenter size-medium wp-image-1582" srcset="https://blog.identitydesign.us/wp-content/uploads/2021/10/open-window-278x300.png 278w, https://blog.identitydesign.us/wp-content/uploads/2021/10/open-window-624x675.png 624w, https://blog.identitydesign.us/wp-content/uploads/2021/10/open-window.png 766w" sizes="(max-width: 278px) 100vw, 278px" /> </p>
<h2><span>2</span> Change the Order of Artboards by Dragging the Layers</h2>
<p> <img decoding="async" src="https://blog.identitydesign.us/wp-content/uploads/2021/10/palette-300x297.png" alt="Artboard Palette" width="300" height="297" class="aligncenter size-medium wp-image-1581" srcset="https://blog.identitydesign.us/wp-content/uploads/2021/10/palette-300x297.png 300w, https://blog.identitydesign.us/wp-content/uploads/2021/10/palette-150x150.png 150w, https://blog.identitydesign.us/wp-content/uploads/2021/10/palette-120x120.png 120w, https://blog.identitydesign.us/wp-content/uploads/2021/10/palette.png 556w" sizes="(max-width: 300px) 100vw, 300px" /> </p>
<p>Just need to save your document in PDF.</p><p>The post <a href="https://blog.identitydesign.us/change-artboards-order-illustrator/">How to Change the Order of Artboards on Adobe Illustrator</a> first appeared on <a href="https://blog.identitydesign.us">identity design</a>.</p><p>The post <a href="https://blog.identitydesign.us/change-artboards-order-illustrator/">How to Change the Order of Artboards on Adobe Illustrator</a> appeared first on <a href="https://blog.identitydesign.us">identity design</a>.</p>
<div class='yarpp yarpp-related yarpp-related-rss yarpp-template-list'>
<!-- YARPP List -->
<h3>Related posts:</h3><ol>
<li><a href="https://blog.identitydesign.us/how-to-remove-or-uninstall-plugins-like-phantasm-in-adobe-illustrator/" rel="bookmark" title="How to Remove or Uninstall Plugins like Phantasm in Adobe Illustrator?">How to Remove or Uninstall Plugins like Phantasm in Adobe Illustrator?</a></li>
<li><a href="https://blog.identitydesign.us/make-your-photos-into-a-gif-animation-stop-motion-using-photoshop/" rel="bookmark" title="Make Your Photos into a GIF Animation (Stop Motion) Using Photoshop">Make Your Photos into a GIF Animation (Stop Motion) Using Photoshop</a></li>
<li><a href="https://blog.identitydesign.us/solved-adobe-creative-cloud-access-to-manage-apps-permission-issue/" rel="bookmark" title="Solved: Adobe Creative Cloud Access to Manage Apps Permission Issue">Solved: Adobe Creative Cloud Access to Manage Apps Permission Issue</a></li>
</ol>
</div>
]]></content:encoded>
					
					<wfw:commentRss>https://blog.identitydesign.us/change-artboards-order-illustrator/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Make Your Photos into a GIF Animation (Stop Motion) Using Photoshop</title>
		<link>https://blog.identitydesign.us/make-your-photos-into-a-gif-animation-stop-motion-using-photoshop/</link>
					<comments>https://blog.identitydesign.us/make-your-photos-into-a-gif-animation-stop-motion-using-photoshop/#respond</comments>
		
		<dc:creator><![CDATA[djemals]]></dc:creator>
		<pubDate>Wed, 22 Sep 2021 19:33:33 +0000</pubDate>
				<category><![CDATA[How-To]]></category>
		<category><![CDATA[Photoshop]]></category>
		<category><![CDATA[Pixels]]></category>
		<category><![CDATA[Tutorials]]></category>
		<guid isPermaLink="false">http://blog.identitydesign.us/?p=1494</guid>

					<description><![CDATA[<p>I took a bunch of snap shots with my Canon EOS 5D, a DSLR Camera. I thought this could be all put together and exported to a short GIF animation clip for my client’s Instagram. 1 Load Photo in Photoshop Go to File on the top left menu on Photoshop and select Scripts -> Load [&#8230;]</p>
<p>The post <a href="https://blog.identitydesign.us/make-your-photos-into-a-gif-animation-stop-motion-using-photoshop/">Make Your Photos into a GIF Animation (Stop Motion) Using Photoshop</a> first appeared on <a href="https://blog.identitydesign.us">identity design</a>.</p>
<p>The post <a href="https://blog.identitydesign.us/make-your-photos-into-a-gif-animation-stop-motion-using-photoshop/">Make Your Photos into a GIF Animation (Stop Motion) Using Photoshop</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/freebies-merry-christmas-gif-animation-template-psd/" rel="bookmark" title="Freebies: Merry Christmas Gif Animation Template (PSD)">Freebies: Merry Christmas Gif Animation Template (PSD)</a></li>
<li><a href="https://blog.identitydesign.us/psd-hatched-slash-diagonal-pattern/" rel="bookmark" title="Download PSD: Photoshop Hatched Slash Diagonal Pattern">Download PSD: Photoshop Hatched Slash Diagonal Pattern</a></li>
<li><a href="https://blog.identitydesign.us/css-only-modal-lightbox-pop-up-on-page-load/" rel="bookmark" title="CSS Only: Pop-up Modal Lightbox on Page Load">CSS Only: Pop-up Modal Lightbox on Page Load</a></li>
</ol>
</div>
]]></description>
										<content:encoded><![CDATA[<p>I took a bunch of snap shots with my Canon EOS 5D, a DSLR Camera. I thought this could be all put together and exported to a short GIF animation clip for my client’s Instagram.</p>
<h2><span>1</span> Load Photo in Photoshop</h2>
<p>Go to <code>File</code> on the top left menu on Photoshop and select <code>Scripts</code> -> <code>Load Files into Stack</code></p>
<p><img loading="lazy" decoding="async" src="https://blog.identitydesign.us/wp-content/uploads/2021/08/Screen-Shot-2021-08-20-at-12.09.14-PM-157x300.jpg" alt="scripts" width="157" height="300" class="aligncenter size-medium wp-image-1497" srcset="https://blog.identitydesign.us/wp-content/uploads/2021/08/Screen-Shot-2021-08-20-at-12.09.14-PM-157x300.jpg 157w, https://blog.identitydesign.us/wp-content/uploads/2021/08/Screen-Shot-2021-08-20-at-12.09.14-PM-536x1024.jpg 536w, https://blog.identitydesign.us/wp-content/uploads/2021/08/Screen-Shot-2021-08-20-at-12.09.14-PM-624x1193.jpg 624w, https://blog.identitydesign.us/wp-content/uploads/2021/08/Screen-Shot-2021-08-20-at-12.09.14-PM.jpg 728w" sizes="auto, (max-width: 157px) 100vw, 157px" /><img loading="lazy" decoding="async" src="https://blog.identitydesign.us/wp-content/uploads/2021/08/Screen-Shot-2021-08-20-at-12.09.09-PM-300x287.jpg" alt="Load files into stack" width="300" height="287" class="aligncenter size-medium wp-image-1496" srcset="https://blog.identitydesign.us/wp-content/uploads/2021/08/Screen-Shot-2021-08-20-at-12.09.09-PM-300x287.jpg 300w, https://blog.identitydesign.us/wp-content/uploads/2021/08/Screen-Shot-2021-08-20-at-12.09.09-PM.jpg 596w" sizes="auto, (max-width: 300px) 100vw, 300px" /> </p>
<p>Click <code>Browse</code> and select your photos, hit <code>Okay</code> (You might need to sort your files in name so they can be played in order).</p>
<p><img loading="lazy" decoding="async" src="https://blog.identitydesign.us/wp-content/uploads/2021/08/Screen-Shot-2021-08-20-at-12.15.15-PM.jpg" alt="load layers" width="1332" height="984" class="aligncenter size-full wp-image-1498" srcset="https://blog.identitydesign.us/wp-content/uploads/2021/08/Screen-Shot-2021-08-20-at-12.15.15-PM.jpg 1332w, https://blog.identitydesign.us/wp-content/uploads/2021/08/Screen-Shot-2021-08-20-at-12.15.15-PM-300x222.jpg 300w, https://blog.identitydesign.us/wp-content/uploads/2021/08/Screen-Shot-2021-08-20-at-12.15.15-PM-1024x756.jpg 1024w, https://blog.identitydesign.us/wp-content/uploads/2021/08/Screen-Shot-2021-08-20-at-12.15.15-PM-768x567.jpg 768w, https://blog.identitydesign.us/wp-content/uploads/2021/08/Screen-Shot-2021-08-20-at-12.15.15-PM-624x461.jpg 624w" sizes="auto, (max-width: 1332px) 100vw, 1332px" /></p>
<h2><span>2</span> Make Timeline Frames</h2>
<p>Open the <code>Timeline</code> palette from the <code>Window</code> menu.</p>
<p>Select the first layer on the <code>Layers</code> palette, click on the <code>Create Frame Animation</code> button (You might have to use the Dropdown button to do this).<br />
<img loading="lazy" decoding="async" src="https://blog.identitydesign.us/wp-content/uploads/2021/08/Screen-Shot-2021-08-20-at-12.15.50-PM.jpg" alt="Create Frame Animation" width="2436" height="1812" class="aligncenter size-full wp-image-1500" srcset="https://blog.identitydesign.us/wp-content/uploads/2021/08/Screen-Shot-2021-08-20-at-12.15.50-PM.jpg 2436w, https://blog.identitydesign.us/wp-content/uploads/2021/08/Screen-Shot-2021-08-20-at-12.15.50-PM-300x223.jpg 300w, https://blog.identitydesign.us/wp-content/uploads/2021/08/Screen-Shot-2021-08-20-at-12.15.50-PM-1024x762.jpg 1024w, https://blog.identitydesign.us/wp-content/uploads/2021/08/Screen-Shot-2021-08-20-at-12.15.50-PM-768x571.jpg 768w, https://blog.identitydesign.us/wp-content/uploads/2021/08/Screen-Shot-2021-08-20-at-12.15.50-PM-1536x1143.jpg 1536w, https://blog.identitydesign.us/wp-content/uploads/2021/08/Screen-Shot-2021-08-20-at-12.15.50-PM-2048x1523.jpg 2048w, https://blog.identitydesign.us/wp-content/uploads/2021/08/Screen-Shot-2021-08-20-at-12.15.50-PM-624x464.jpg 624w" sizes="auto, (max-width: 2436px) 100vw, 2436px" /></p>
<p>Go to the properties of the <code>Timeline</code> palette (3 lines icons at the top right), select the rest of the layers and select <code>Make Frames from Layers</code>.</p>
<p><img loading="lazy" decoding="async" src="https://blog.identitydesign.us/wp-content/uploads/2021/08/Screen-Shot-2021-08-20-at-12.16.26-PM-226x300.jpg" alt="Make Frames from Layers" width="226" height="300" class="aligncenter size-medium wp-image-1502" srcset="https://blog.identitydesign.us/wp-content/uploads/2021/08/Screen-Shot-2021-08-20-at-12.16.26-PM-226x300.jpg 226w, https://blog.identitydesign.us/wp-content/uploads/2021/08/Screen-Shot-2021-08-20-at-12.16.26-PM-771x1024.jpg 771w, https://blog.identitydesign.us/wp-content/uploads/2021/08/Screen-Shot-2021-08-20-at-12.16.26-PM-768x1020.jpg 768w, https://blog.identitydesign.us/wp-content/uploads/2021/08/Screen-Shot-2021-08-20-at-12.16.26-PM-624x828.jpg 624w, https://blog.identitydesign.us/wp-content/uploads/2021/08/Screen-Shot-2021-08-20-at-12.16.26-PM.jpg 806w" sizes="auto, (max-width: 226px) 100vw, 226px" /> </p>
<p>You will see all layers have been converted into frames in timeline.</p>
<p>Double check the duration of the animation and leave it to <code>Forever</code> if you want the animation to be repeated and loop forever.<br />
<img loading="lazy" decoding="async" src="https://blog.identitydesign.us/wp-content/uploads/2021/08/Screen-Shot-2021-08-20-at-12.18.41-PM.jpg" alt="Forever menu" width="246" height="252" class="aligncenter size-full wp-image-1503" /></p>
<h2><span>3</span> Export the file into GIF</h2>
<p><img loading="lazy" decoding="async" src="https://blog.identitydesign.us/wp-content/uploads/2021/08/Screen-Shot-2021-08-20-at-12.19.09-PM-scaled.jpg" alt="Export to GIF" width="2560" height="1450" class="aligncenter size-full wp-image-1504" srcset="https://blog.identitydesign.us/wp-content/uploads/2021/08/Screen-Shot-2021-08-20-at-12.19.09-PM-scaled.jpg 2560w, https://blog.identitydesign.us/wp-content/uploads/2021/08/Screen-Shot-2021-08-20-at-12.19.09-PM-300x170.jpg 300w, https://blog.identitydesign.us/wp-content/uploads/2021/08/Screen-Shot-2021-08-20-at-12.19.09-PM-1024x580.jpg 1024w, https://blog.identitydesign.us/wp-content/uploads/2021/08/Screen-Shot-2021-08-20-at-12.19.09-PM-768x435.jpg 768w, https://blog.identitydesign.us/wp-content/uploads/2021/08/Screen-Shot-2021-08-20-at-12.19.09-PM-1536x870.jpg 1536w, https://blog.identitydesign.us/wp-content/uploads/2021/08/Screen-Shot-2021-08-20-at-12.19.09-PM-2048x1160.jpg 2048w, https://blog.identitydesign.us/wp-content/uploads/2021/08/Screen-Shot-2021-08-20-at-12.19.09-PM-624x354.jpg 624w" sizes="auto, (max-width: 2560px) 100vw, 2560px" /></p>
<p>Go to File -> Save for web (or Commend + Option + Shift + S) and select the image format into &#8220;GIF&#8221; and hit <code>Save</code>.</p>
<p><a href="https://blog.identitydesign.us/wp-content/uploads/2021/09/KingPollo-ChickenTurn.gif"><img loading="lazy" decoding="async" src="https://blog.identitydesign.us/wp-content/uploads/2021/09/KingPollo-ChickenTurn.gif" alt="" width="1200" height="800" class="aligncenter size-full wp-image-1572" /></a></p>
<p>Now your wonderful GIF animation has been created. Enjoy sharing!</p><p>The post <a href="https://blog.identitydesign.us/make-your-photos-into-a-gif-animation-stop-motion-using-photoshop/">Make Your Photos into a GIF Animation (Stop Motion) Using Photoshop</a> first appeared on <a href="https://blog.identitydesign.us">identity design</a>.</p><p>The post <a href="https://blog.identitydesign.us/make-your-photos-into-a-gif-animation-stop-motion-using-photoshop/">Make Your Photos into a GIF Animation (Stop Motion) Using Photoshop</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/freebies-merry-christmas-gif-animation-template-psd/" rel="bookmark" title="Freebies: Merry Christmas Gif Animation Template (PSD)">Freebies: Merry Christmas Gif Animation Template (PSD)</a></li>
<li><a href="https://blog.identitydesign.us/psd-hatched-slash-diagonal-pattern/" rel="bookmark" title="Download PSD: Photoshop Hatched Slash Diagonal Pattern">Download PSD: Photoshop Hatched Slash Diagonal Pattern</a></li>
<li><a href="https://blog.identitydesign.us/css-only-modal-lightbox-pop-up-on-page-load/" rel="bookmark" title="CSS Only: Pop-up Modal Lightbox on Page Load">CSS Only: Pop-up Modal Lightbox on Page Load</a></li>
</ol>
</div>
]]></content:encoded>
					
					<wfw:commentRss>https://blog.identitydesign.us/make-your-photos-into-a-gif-animation-stop-motion-using-photoshop/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>CSS: Crop Image Width or Height with CSS Only</title>
		<link>https://blog.identitydesign.us/css-crop-image/</link>
					<comments>https://blog.identitydesign.us/css-crop-image/#respond</comments>
		
		<dc:creator><![CDATA[djemals]]></dc:creator>
		<pubDate>Fri, 06 Aug 2021 00:04:12 +0000</pubDate>
				<category><![CDATA[CSSonly]]></category>
		<category><![CDATA[How-To]]></category>
		<category><![CDATA[HTML/CSS/PHP/JavaScripts]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Website]]></category>
		<guid isPermaLink="false">http://blog.identitydesign.us/?p=1471</guid>

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

<div class="clear"></div><p>The post <a href="https://blog.identitydesign.us/css-crop-image/">CSS: Crop Image Width or Height with CSS Only</a> first appeared on <a href="https://blog.identitydesign.us">identity design</a>.</p><p>The post <a href="https://blog.identitydesign.us/css-crop-image/">CSS: Crop Image Width or Height with CSS Only</a> appeared first on <a href="https://blog.identitydesign.us">identity design</a>.</p>
<div class='yarpp yarpp-related yarpp-related-rss yarpp-template-list'>
<!-- YARPP List -->
<h3>Related posts:</h3><ol>
<li><a href="https://blog.identitydesign.us/html-css-ribbon-no-image/" rel="bookmark" title="How Create a HTML/CSS Ribbon. Simple and Light (None Jpg/Png Image)">How Create a HTML/CSS Ribbon. Simple and Light (None Jpg/Png Image)</a></li>
<li><a href="https://blog.identitydesign.us/css-add-gradient-dark-shade-on-background-images-to-make-the-text-visible/" rel="bookmark" title="CSS: Add Gradient (Dark Shade) Layer on Background Images to Make the Text Visible">CSS: Add Gradient (Dark Shade) Layer on Background Images to Make the Text Visible</a></li>
<li><a href="https://blog.identitydesign.us/table-column-width-setting-css/" rel="bookmark" title="CSS: A Simple Way to Set the Table Column Width">CSS: A Simple Way to Set the Table Column Width</a></li>
</ol>
</div>
]]></content:encoded>
					
					<wfw:commentRss>https://blog.identitydesign.us/css-crop-image/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>WooCommerce Hollow &#8220;Empty&#8221; Star Rating to &#8220;Full&#8221; Filled Stars</title>
		<link>https://blog.identitydesign.us/woocommerce-hollow-empty-star-rating-to-full-filled-stars/</link>
					<comments>https://blog.identitydesign.us/woocommerce-hollow-empty-star-rating-to-full-filled-stars/#respond</comments>
		
		<dc:creator><![CDATA[djemals]]></dc:creator>
		<pubDate>Mon, 02 Aug 2021 22:14:39 +0000</pubDate>
				<category><![CDATA[How-To]]></category>
		<category><![CDATA[plugins]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Website]]></category>
		<category><![CDATA[Wordpress]]></category>
		<guid isPermaLink="false">http://blog.identitydesign.us/?p=1462</guid>

					<description><![CDATA[<p>5 hollow stars looked my customers rated 0 star on my item not 5 stars. (But it&#8217;s 5 star rated though!) For users who sees hollow stars in WooCommerce, there must be mis-specifying font-family in your CSS. Check if you have installed the &#8220;Easy Social Icons&#8221; plugin that is activated with WooCommerce. Simply deactivate the [&#8230;]</p>
<p>The post <a href="https://blog.identitydesign.us/woocommerce-hollow-empty-star-rating-to-full-filled-stars/">WooCommerce Hollow “Empty” Star Rating to “Full” Filled Stars</a> first appeared on <a href="https://blog.identitydesign.us">identity design</a>.</p>
<p>The post <a href="https://blog.identitydesign.us/woocommerce-hollow-empty-star-rating-to-full-filled-stars/">WooCommerce Hollow &#8220;Empty&#8221; Star Rating to &#8220;Full&#8221; Filled Stars</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/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/woocommerce-conflicts-with-bootstrap4/" rel="bookmark" title="Woocommerce Conflicts with Bootstrap 4 in WordPress">Woocommerce Conflicts with Bootstrap 4 in WordPress</a></li>
</ol>
</div>
]]></description>
										<content:encoded><![CDATA[<p>5 hollow stars looked my customers rated 0 star on my item not 5 stars. (But it&#8217;s 5 star rated though!) For users who sees hollow stars in WooCommerce, there must be mis-specifying font-family in your CSS. </p>
<p><a href="https://blog.identitydesign.us/wp-content/uploads/2021/08/SC-hollow-stars.jpg"><img loading="lazy" decoding="async" src="https://blog.identitydesign.us/wp-content/uploads/2021/08/SC-hollow-stars.jpg" alt="SC-hollow-stars" width="1864" height="1398" class="aligncenter size-full wp-image-1463" srcset="https://blog.identitydesign.us/wp-content/uploads/2021/08/SC-hollow-stars.jpg 1864w, https://blog.identitydesign.us/wp-content/uploads/2021/08/SC-hollow-stars-300x225.jpg 300w, https://blog.identitydesign.us/wp-content/uploads/2021/08/SC-hollow-stars-1024x768.jpg 1024w, https://blog.identitydesign.us/wp-content/uploads/2021/08/SC-hollow-stars-768x576.jpg 768w, https://blog.identitydesign.us/wp-content/uploads/2021/08/SC-hollow-stars-1536x1152.jpg 1536w, https://blog.identitydesign.us/wp-content/uploads/2021/08/SC-hollow-stars-624x468.jpg 624w" sizes="auto, (max-width: 1864px) 100vw, 1864px" /></a></p>
<p>Check if you have installed the &#8220;Easy Social Icons&#8221; plugin that is activated with WooCommerce.</p>
<p><a href="https://blog.identitydesign.us/wp-content/uploads/2021/08/Screen-Shot-2021-08-02-at-2.44.59-PM.jpg"><img loading="lazy" decoding="async" src="https://blog.identitydesign.us/wp-content/uploads/2021/08/Screen-Shot-2021-08-02-at-2.44.59-PM.jpg" alt="Easy Social Icons" width="366" height="128" class="aligncenter size-full wp-image-1464" srcset="https://blog.identitydesign.us/wp-content/uploads/2021/08/Screen-Shot-2021-08-02-at-2.44.59-PM.jpg 366w, https://blog.identitydesign.us/wp-content/uploads/2021/08/Screen-Shot-2021-08-02-at-2.44.59-PM-300x105.jpg 300w" sizes="auto, (max-width: 366px) 100vw, 366px" /></a></p>
<p>Simply deactivate the plugin as it is conflicting the &#8220;Font Awesome 5 Free&#8221; font-family with WooCommerce. Once the Easy Social Icons plugin deactivated, you will see the full, filled star ratings on your item.</p>
<p><a href="https://blog.identitydesign.us/wp-content/uploads/2021/08/Screen-Shot-2021-08-02-at-2.44.26-PM.jpg"><img loading="lazy" decoding="async" src="https://blog.identitydesign.us/wp-content/uploads/2021/08/Screen-Shot-2021-08-02-at-2.44.26-PM.jpg" alt="filled star rating" width="222" height="76" class="aligncenter size-full wp-image-1465" /></a></p><p>The post <a href="https://blog.identitydesign.us/woocommerce-hollow-empty-star-rating-to-full-filled-stars/">WooCommerce Hollow “Empty” Star Rating to “Full” Filled Stars</a> first appeared on <a href="https://blog.identitydesign.us">identity design</a>.</p><p>The post <a href="https://blog.identitydesign.us/woocommerce-hollow-empty-star-rating-to-full-filled-stars/">WooCommerce Hollow &#8220;Empty&#8221; Star Rating to &#8220;Full&#8221; Filled Stars</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/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/woocommerce-conflicts-with-bootstrap4/" rel="bookmark" title="Woocommerce Conflicts with Bootstrap 4 in WordPress">Woocommerce Conflicts with Bootstrap 4 in WordPress</a></li>
</ol>
</div>
]]></content:encoded>
					
					<wfw:commentRss>https://blog.identitydesign.us/woocommerce-hollow-empty-star-rating-to-full-filled-stars/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Google Workspace / G Suite Setup for Your Own Domain Email</title>
		<link>https://blog.identitydesign.us/google-workspace-g-suite-setup-for-your-own-domain-email/</link>
					<comments>https://blog.identitydesign.us/google-workspace-g-suite-setup-for-your-own-domain-email/#respond</comments>
		
		<dc:creator><![CDATA[djemals]]></dc:creator>
		<pubDate>Fri, 11 Jun 2021 07:10:57 +0000</pubDate>
				<category><![CDATA[backend]]></category>
		<category><![CDATA[Cpanel]]></category>
		<category><![CDATA[Emails]]></category>
		<category><![CDATA[Google and SEO]]></category>
		<category><![CDATA[How-To]]></category>
		<category><![CDATA[Server]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Website]]></category>
		<guid isPermaLink="false">http://blog.identitydesign.us/?p=1418</guid>

					<description><![CDATA[<p>My new client just called me with an urgent voice, &#8220;My email is down. Please fix this as soon as possible.&#8221; My client requested me to build his website, so I set up his old domain name to my hosting server for the work environment, and his email stopped working. He never mentioned about the [&#8230;]</p>
<p>The post <a href="https://blog.identitydesign.us/google-workspace-g-suite-setup-for-your-own-domain-email/">Google Workspace / G Suite Setup for Your Own Domain Email</a> first appeared on <a href="https://blog.identitydesign.us">identity design</a>.</p>
<p>The post <a href="https://blog.identitydesign.us/google-workspace-g-suite-setup-for-your-own-domain-email/">Google Workspace / G Suite Setup for Your Own Domain Email</a> appeared first on <a href="https://blog.identitydesign.us">identity design</a>.</p>
<div class='yarpp yarpp-related yarpp-related-rss yarpp-template-list'>
<!-- YARPP List -->
<h3>Related posts:</h3><ol>
<li><a href="https://blog.identitydesign.us/get-a-free-ssl-certificate-secure-socket-layer-change-http-to-https-for-your-website-domain/" rel="bookmark" title="Get a free SSL Certificate (Secure Socket Layer) &#8211; Change HTTP to HTTPS for your website domain">Get a free SSL Certificate (Secure Socket Layer) &#8211; Change HTTP to HTTPS for your website domain</a></li>
<li><a href="https://blog.identitydesign.us/insert-and-import-html-email-designed-template-into-outlook-email/" rel="bookmark" title="Insert or Import an HTML Email (Designed Template) into Outlook Email">Insert or Import an HTML Email (Designed Template) into Outlook Email</a></li>
<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>
</ol>
</div>
]]></description>
										<content:encoded><![CDATA[<style>
.table { border: 1px solid #ccc; }
.table tr th, .table tr td { padding:10px; }
.table tr th { background:#111; color:#fff; }
</style>
<p>My new client just called me with an urgent voice, &#8220;My email is down. Please fix this as soon as possible.&#8221; </p>
<p>My client requested me to build his website, so I set up his old domain name to my hosting server for the work environment, and his email stopped working. He never mentioned about the email that was under his old domain (i.e. client@domain.com). I was in panic for a few minutes, but gladly, I was able to find out that his email is linked to G-Suite (now called Google Workspace). </p>
<p>Here I will show you how to change DNS setting for an email or entire emails under your own unique domain (i.e. you@yourowndomain.com). This setup can be found under your domain provider setup tab, and it&#8217;s usually called &#8220;Advanced DNS&#8221; or &#8220;Manage DNS&#8221;. Sometimes this can be called &#8220;Zone Editor&#8221; on your hosting provider setup tab, and this can be modified if your domain is linked to a hosting service.</p>
<h2>Clear / Remove MX Record on your DNS</h2>
<p>First, you need to see the existence of any MX Record (Mail Exchange records). If you find a single MX Record that are exist on your DNS, remove it.</p>
<p><a href="https://blog.identitydesign.us/wp-content/uploads/2021/06/zone-editor1.jpg"><img loading="lazy" decoding="async" src="https://blog.identitydesign.us/wp-content/uploads/2021/06/zone-editor1.jpg" alt="Zone Editor Screen Shot 1" width="1098" height="520" class="aligncenter size-full wp-image-1420" srcset="https://blog.identitydesign.us/wp-content/uploads/2021/06/zone-editor1.jpg 1098w, https://blog.identitydesign.us/wp-content/uploads/2021/06/zone-editor1-300x142.jpg 300w, https://blog.identitydesign.us/wp-content/uploads/2021/06/zone-editor1-1024x485.jpg 1024w, https://blog.identitydesign.us/wp-content/uploads/2021/06/zone-editor1-768x364.jpg 768w, https://blog.identitydesign.us/wp-content/uploads/2021/06/zone-editor1-624x296.jpg 624w" sizes="auto, (max-width: 1098px) 100vw, 1098px" /></a></p>
<p>I removed a MX Record &#8220;Priority:0 with &#8220;mail.MYDOMAIN.com&#8221; from my cPanel. Make sure that is no MX Record on you DNS. </p>
<h2>Add Google Workspace / G-Suite MX Record to your DNS</h2>
<p>Add below 5 MX Record provided by Google Workspace / G Suite.</p>
<table class="border table table-responsive">
<thead>
<tr>
<th>Name</th>
<th>TTL</th>
<th>Type</th>
<th>Priority</th>
<th>Destination</th>
</tr>
</thead>
<tbody>
<tr>
<td>Blank or @</td>
<td>Default Value</td>
<td>MX</td>
<td>1</td>
<td>aspmx.l.google.com</td>
</tr>
<tr>
<td>Blank or @</td>
<td>Default Value</td>
<td>MX</td>
<td>5</td>
<td>alt1.aspmx.l.google.com</td>
</tr>
<tr>
<td>Blank or @</td>
<td>Default Value</td>
<td>MX</td>
<td>5</td>
<td>alt2.aspmx.l.google.com</td>
</tr>
<tr>
<td>Blank or @</td>
<td>Default Value</td>
<td>MX</td>
<td>10</td>
<td>alt3.aspmx.l.google.com</td>
</tr>
<tr>
<td>Blank or @</td>
<td>Default Value</td>
<td>MX</td>
<td>10</td>
<td>alt4.aspmx.l.google.com</td>
</tr>
</tbody>
</table>
<h3>Example</h2>
<p><a href="https://blog.identitydesign.us/wp-content/uploads/2021/06/zone-editor2.jpg"><img loading="lazy" decoding="async" src="https://blog.identitydesign.us/wp-content/uploads/2021/06/zone-editor2.jpg" alt="Zone Editor Screen Shot 2" width="2376" height="1051" class="aligncenter size-full wp-image-1419" srcset="https://blog.identitydesign.us/wp-content/uploads/2021/06/zone-editor2.jpg 2376w, https://blog.identitydesign.us/wp-content/uploads/2021/06/zone-editor2-300x133.jpg 300w, https://blog.identitydesign.us/wp-content/uploads/2021/06/zone-editor2-1024x453.jpg 1024w, https://blog.identitydesign.us/wp-content/uploads/2021/06/zone-editor2-768x340.jpg 768w, https://blog.identitydesign.us/wp-content/uploads/2021/06/zone-editor2-1536x679.jpg 1536w, https://blog.identitydesign.us/wp-content/uploads/2021/06/zone-editor2-2048x906.jpg 2048w, https://blog.identitydesign.us/wp-content/uploads/2021/06/zone-editor2-624x276.jpg 624w" sizes="auto, (max-width: 2376px) 100vw, 2376px" /></a></p>
<p>As soon as the records on DNS are saved, all of your emails from your own domain will be transferred through Google Workspace / G Suite and landed on your Gmail inbox.</p>

<div class="clear"></div><p>The post <a href="https://blog.identitydesign.us/google-workspace-g-suite-setup-for-your-own-domain-email/">Google Workspace / G Suite Setup for Your Own Domain Email</a> first appeared on <a href="https://blog.identitydesign.us">identity design</a>.</p><p>The post <a href="https://blog.identitydesign.us/google-workspace-g-suite-setup-for-your-own-domain-email/">Google Workspace / G Suite Setup for Your Own Domain Email</a> appeared first on <a href="https://blog.identitydesign.us">identity design</a>.</p>
<div class='yarpp yarpp-related yarpp-related-rss yarpp-template-list'>
<!-- YARPP List -->
<h3>Related posts:</h3><ol>
<li><a href="https://blog.identitydesign.us/get-a-free-ssl-certificate-secure-socket-layer-change-http-to-https-for-your-website-domain/" rel="bookmark" title="Get a free SSL Certificate (Secure Socket Layer) &#8211; Change HTTP to HTTPS for your website domain">Get a free SSL Certificate (Secure Socket Layer) &#8211; Change HTTP to HTTPS for your website domain</a></li>
<li><a href="https://blog.identitydesign.us/insert-and-import-html-email-designed-template-into-outlook-email/" rel="bookmark" title="Insert or Import an HTML Email (Designed Template) into Outlook Email">Insert or Import an HTML Email (Designed Template) into Outlook Email</a></li>
<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>
</ol>
</div>
]]></content:encoded>
					
					<wfw:commentRss>https://blog.identitydesign.us/google-workspace-g-suite-setup-for-your-own-domain-email/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Use CSS to remove auto-generated empty &#060;p&#062; tags in WordPress</title>
		<link>https://blog.identitydesign.us/remove-empty-p-tags-in-wordpress/</link>
					<comments>https://blog.identitydesign.us/remove-empty-p-tags-in-wordpress/#respond</comments>
		
		<dc:creator><![CDATA[djemals]]></dc:creator>
		<pubDate>Sun, 24 Jan 2021 09:26:22 +0000</pubDate>
				<category><![CDATA[backend]]></category>
		<category><![CDATA[CSSonly]]></category>
		<category><![CDATA[How-To]]></category>
		<category><![CDATA[HTML/CSS/PHP/JavaScripts]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Website]]></category>
		<guid isPermaLink="false">http://blog.identitydesign.us/?p=1379</guid>

					<description><![CDATA[<p>Can&#8217;t complain the great convenient functionality of auto-generating &#60;p&#62; tag in WordPress, but sometimes it&#8217;s pretty annoying as it breaks some lines unintentionally. Here&#8217;s how to remove only empty &#60;p&#62; tag with a simple CSS line. CSS: Hide/Remove Empty &#60;p&#62; tags p:empty { display: none; }</p>
<p>The post <a href="https://blog.identitydesign.us/remove-empty-p-tags-in-wordpress/">Use CSS to remove auto-generated empty </p>
<p> tags in WordPress</a> first appeared on <a href="https://blog.identitydesign.us">identity design</a>.</p>
<p>The post <a href="https://blog.identitydesign.us/remove-empty-p-tags-in-wordpress/">Use CSS to remove auto-generated empty &lt;p&gt; tags in WordPress</a> appeared first on <a href="https://blog.identitydesign.us">identity design</a>.</p>
<div class='yarpp yarpp-related yarpp-related-rss yarpp-template-list'>
<!-- YARPP List -->
<h3>Related posts:</h3><ol>
<li><a href="https://blog.identitydesign.us/remove-automatic-and-tags-in-wordpress-2/" rel="bookmark" title="Remove automatic &lt;BR&gt; &amp; &lt;P&gt; tags in WordPress">Remove automatic &lt;BR&gt; &amp; &lt;P&gt; tags in WordPress</a></li>
<li><a href="https://blog.identitydesign.us/remove-automatic-and-tags-in-wordpress/" rel="bookmark" title="Remove Automatic and Tags in WordPress">Remove Automatic and Tags in WordPress</a></li>
<li><a href="https://blog.identitydesign.us/remove-copyright-storefront/" rel="bookmark" title="Remove &#8216;Built with Storefront &#038; WooCommerce&#8217; with CSS lines on WordPress Storefront Theme">Remove &#8216;Built with Storefront &#038; WooCommerce&#8217; with CSS lines on WordPress Storefront Theme</a></li>
</ol>
</div>
]]></description>
										<content:encoded><![CDATA[<p>Can&#8217;t complain the great convenient functionality of auto-generating <code>&lt;p&gt;</code> tag in WordPress, but sometimes it&#8217;s pretty annoying as it breaks some lines unintentionally. Here&#8217;s how to remove only empty <code>&lt;p&gt;</code> tag with a simple CSS line.</p>
<h2>CSS: Hide/Remove Empty &lt;p&gt; tags</h2>
<pre>
p:empty {
  display: none;
}
</pre>

<div class="clear"></div><p>The post <a href="https://blog.identitydesign.us/remove-empty-p-tags-in-wordpress/">Use CSS to remove auto-generated empty <p> tags in WordPress</a> first appeared on <a href="https://blog.identitydesign.us">identity design</a>.</p><p>The post <a href="https://blog.identitydesign.us/remove-empty-p-tags-in-wordpress/">Use CSS to remove auto-generated empty &lt;p&gt; tags in WordPress</a> appeared first on <a href="https://blog.identitydesign.us">identity design</a>.</p>
<div class='yarpp yarpp-related yarpp-related-rss yarpp-template-list'>
<!-- YARPP List -->
<h3>Related posts:</h3><ol>
<li><a href="https://blog.identitydesign.us/remove-automatic-and-tags-in-wordpress-2/" rel="bookmark" title="Remove automatic &lt;BR&gt; &amp; &lt;P&gt; tags in WordPress">Remove automatic &lt;BR&gt; &amp; &lt;P&gt; tags in WordPress</a></li>
<li><a href="https://blog.identitydesign.us/remove-automatic-and-tags-in-wordpress/" rel="bookmark" title="Remove Automatic and Tags in WordPress">Remove Automatic and Tags in WordPress</a></li>
<li><a href="https://blog.identitydesign.us/remove-copyright-storefront/" rel="bookmark" title="Remove &#8216;Built with Storefront &#038; WooCommerce&#8217; with CSS lines on WordPress Storefront Theme">Remove &#8216;Built with Storefront &#038; WooCommerce&#8217; with CSS lines on WordPress Storefront Theme</a></li>
</ol>
</div>
]]></content:encoded>
					
					<wfw:commentRss>https://blog.identitydesign.us/remove-empty-p-tags-in-wordpress/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Woocommerce Conflicts with Bootstrap 4 in WordPress</title>
		<link>https://blog.identitydesign.us/woocommerce-conflicts-with-bootstrap4/</link>
					<comments>https://blog.identitydesign.us/woocommerce-conflicts-with-bootstrap4/#respond</comments>
		
		<dc:creator><![CDATA[djemals]]></dc:creator>
		<pubDate>Mon, 18 Jan 2021 09:48:36 +0000</pubDate>
				<category><![CDATA[backend]]></category>
		<category><![CDATA[Bootstrap]]></category>
		<category><![CDATA[HTML/CSS/PHP/JavaScripts]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Website]]></category>
		<guid isPermaLink="false">http://blog.identitydesign.us/?p=1369</guid>

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

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

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

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

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

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

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

<div class="clear"></div>
<div class="btn-group"><a class="btn" onclick="_gaq.push(['_trackEvent', 'Freebies', 'All-in-one-bootstrap-html', 'https://blog.identitydesign.us/wp-content/uploads/2020/10/all-in-one-bootstrap4.html.zip']);" href="https://blog.identitydesign.us/wp-content/uploads/2020/10/all-in-one-bootstrap4.html.zip">Download HTML</a></div><p>The post <a href="https://blog.identitydesign.us/all-in-one-bootstrap-html-template/">All-in-one Bootstrap 4 / Jquery Responsive HTML Template</a> first appeared on <a href="https://blog.identitydesign.us">identity design</a>.</p><p>The post <a href="https://blog.identitydesign.us/all-in-one-bootstrap-html-template/">All-in-one Bootstrap 4 / Jquery Responsive HTML Template</a> appeared first on <a href="https://blog.identitydesign.us">identity design</a>.</p>
<div class='yarpp yarpp-related yarpp-related-rss yarpp-template-list'>
<!-- YARPP List -->
<h3>Related posts:</h3><ol>
<li><a href="https://blog.identitydesign.us/make-clickable-link-javascript-instead-html-anchor/" rel="bookmark" title="Make Clickable Link with JavaScript instead of HTML Anchor">Make Clickable Link with JavaScript instead of HTML Anchor</a></li>
<li><a href="https://blog.identitydesign.us/accordion-partial-collapse-expand-demo-template-bootstrap/" rel="bookmark" title="Accordion Partial Collapse &#038; Expand Demo Template for Bootstrap">Accordion Partial Collapse &#038; Expand Demo Template for Bootstrap</a></li>
<li><a href="https://blog.identitydesign.us/bootstrap-carousel-slider-transition-speed-time-interval/" rel="bookmark" title="How to Change Bootstrap Carousel Slider Transition Speed Time Interval">How to Change Bootstrap Carousel Slider Transition Speed Time Interval</a></li>
</ol>
</div>
]]></content:encoded>
					
					<wfw:commentRss>https://blog.identitydesign.us/all-in-one-bootstrap-html-template/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>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>Remove &#8216;Built with Storefront &#038; WooCommerce&#8217; with CSS lines on WordPress Storefront Theme</title>
		<link>https://blog.identitydesign.us/remove-copyright-storefront/</link>
					<comments>https://blog.identitydesign.us/remove-copyright-storefront/#respond</comments>
		
		<dc:creator><![CDATA[djemals]]></dc:creator>
		<pubDate>Sun, 01 Dec 2019 06:10:59 +0000</pubDate>
				<category><![CDATA[Bootstrap]]></category>
		<category><![CDATA[CSSonly]]></category>
		<category><![CDATA[How-To]]></category>
		<category><![CDATA[HTML/CSS/PHP/JavaScripts]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Website]]></category>
		<category><![CDATA[Wordpress]]></category>
		<guid isPermaLink="false">http://blog.identitydesign.us/?p=1199</guid>

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

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

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

<div class="clear"></div><p>The post <a href="https://blog.identitydesign.us/add-copyright-css-wordpress/">Add a Copyright Text / Info Using CSS on WordPress Websites</a> first appeared on <a href="https://blog.identitydesign.us">identity design</a>.</p><p>The post <a href="https://blog.identitydesign.us/add-copyright-css-wordpress/">Add a Copyright Text / Info Using CSS on WordPress Websites</a> appeared first on <a href="https://blog.identitydesign.us">identity design</a>.</p>
<div class='yarpp yarpp-related yarpp-related-rss yarpp-template-list'>
<!-- YARPP List -->
<h3>Related posts:</h3><ol>
<li><a href="https://blog.identitydesign.us/remove-proudly-powered-by-wordpress-on-wordpress-twenty-sixteen-theme-replace-copyright/" rel="bookmark" title="Remove Proudly powered by WordPress Theme and Replace with Your Own &copy; Copyright Information">Remove Proudly powered by WordPress Theme and Replace with Your Own &copy; Copyright Information</a></li>
<li><a href="https://blog.identitydesign.us/html-css-ribbon-no-image/" rel="bookmark" title="How Create a HTML/CSS Ribbon. Simple and Light (None Jpg/Png Image)">How Create a HTML/CSS Ribbon. Simple and Light (None Jpg/Png Image)</a></li>
<li><a href="https://blog.identitydesign.us/css-only-easy-modal-lightbox-popup-animated/" rel="bookmark" title="CSS Only: Easy Modal Lightbox Pop-up (Animated)">CSS Only: Easy Modal Lightbox Pop-up (Animated)</a></li>
</ol>
</div>
]]></content:encoded>
					
					<wfw:commentRss>https://blog.identitydesign.us/add-copyright-css-wordpress/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>(No Programming) Use JavaScript to Load Header and Footer Templates. Works Just Like PHP Include</title>
		<link>https://blog.identitydesign.us/no-programming-needed-use-javascript-to-load-header-and-footer-templates-works-just-like-php-include/</link>
					<comments>https://blog.identitydesign.us/no-programming-needed-use-javascript-to-load-header-and-footer-templates-works-just-like-php-include/#comments</comments>
		
		<dc:creator><![CDATA[djemals]]></dc:creator>
		<pubDate>Mon, 29 Apr 2019 23:41:33 +0000</pubDate>
				<category><![CDATA[backend]]></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=1108</guid>

					<description><![CDATA[<p>I&#8217;ve looking for this for years, but it&#8217;s actually much simpler than I thought. You can build your HTML website with universal header and footer (so you don&#8217;t have to repeat update multiple files over and over again) by adding a simple JavaScript/Jquery line without using any programming PHP scripts. HTML &#60;script src="https://code.jquery.com/jquery-1.10.2.js"&#62;&#60;/script&#62; &#60;script&#62; $(function(){ [&#8230;]</p>
<p>The post <a href="https://blog.identitydesign.us/no-programming-needed-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> first appeared on <a href="https://blog.identitydesign.us">identity design</a>.</p>
<p>The post <a href="https://blog.identitydesign.us/no-programming-needed-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> 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/how-to-remove-copyright-text-in-wp-bootstrap-starter-theme/" rel="bookmark" title="How to Remove &#8220;Bootstrap WordPress Theme&#8221; on WP Bootstrap Starter Template">How to Remove &#8220;Bootstrap WordPress Theme&#8221; on WP Bootstrap Starter Template</a></li>
<li><a href="https://blog.identitydesign.us/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>I&#8217;ve looking for this for years, but it&#8217;s actually much simpler than I thought. You can build your HTML website with universal header and footer (so you don&#8217;t have to repeat update multiple files over and over again) by adding a simple JavaScript/Jquery line without using any programming PHP scripts.</p>
<h2>HTML</h2>
<pre>
&lt;script src="https://code.jquery.com/jquery-1.10.2.js"&gt;&lt;/script&gt;
&lt;script&gt;
$(function(){
$("#header-template").load("header.html");
$("#footer-template").load("footer.html");
});
&lt;/script&gt;

&lt;div id="header-template"&gt;&lt;!--Your header.html placeholder--&gt;&lt;/div&gt;

&lt;!--Your content start here--&gt;
Hello World!
&lt;!--Your content end here--&gt;

&lt;div id="footer-template"&gt;&lt;!--Your footer.html placeholder--&gt;&lt;/div&gt;

</pre>

<div class="clear"></div>
<h2>Instruction</h2>
<ol>
<li>Create a <code>header.html</code> and put all the header portion starting with <code>&lt;!DOCTYPE html&gt;</code>.</li>
<li>Create a <code>footer.html</code> and put all the footer portion end with <code>&lt;/html&gt;</code>.</li>
<li>Create a <code>index.html</code> and copy and paste the HTML code (from the top of this article) into your HTML document.</li>
<li>Build your own content by replacing the text &#8220;Hello World!&#8221; and save.</li>
<li>Open the <code>index.html</code> and review yourself.</li>
</ol>
<p>You can duplicate the <code>index.html</code> and rename it differently for any additional pages you wish to create. This JavaScript works on a server environment, so this will not be able to load header and footer if you are opening the files from your desktop which means you need to upload your files via FTP and access your HTMLs live.</p>
<p>Now, you&#8217;ve created a website without using any programming scripts.</p><p>The post <a href="https://blog.identitydesign.us/no-programming-needed-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> first appeared on <a href="https://blog.identitydesign.us">identity design</a>.</p><p>The post <a href="https://blog.identitydesign.us/no-programming-needed-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> 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/how-to-remove-copyright-text-in-wp-bootstrap-starter-theme/" rel="bookmark" title="How to Remove &#8220;Bootstrap WordPress Theme&#8221; on WP Bootstrap Starter Template">How to Remove &#8220;Bootstrap WordPress Theme&#8221; on WP Bootstrap Starter Template</a></li>
<li><a href="https://blog.identitydesign.us/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/no-programming-needed-use-javascript-to-load-header-and-footer-templates-works-just-like-php-include/feed/</wfw:commentRss>
			<slash:comments>2</slash:comments>
		
		
			</item>
		<item>
		<title>CSS / HTML: Make Absolute Center (Vertical &#038; Horizontal)</title>
		<link>https://blog.identitydesign.us/css-make-your-element-absolute-center-vertical-horizontal/</link>
					<comments>https://blog.identitydesign.us/css-make-your-element-absolute-center-vertical-horizontal/#respond</comments>
		
		<dc:creator><![CDATA[djemals]]></dc:creator>
		<pubDate>Sat, 09 Feb 2019 01:05:02 +0000</pubDate>
				<category><![CDATA[Bootstrap]]></category>
		<category><![CDATA[CSSonly]]></category>
		<category><![CDATA[HTML/CSS/PHP/JavaScripts]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Website]]></category>
		<category><![CDATA[Wordpress]]></category>
		<guid isPermaLink="false">http://blog.identitydesign.us/?p=1088</guid>

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

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

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

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

					<description><![CDATA[<p>If you are stuck uploading files in FileZilla that it repeats the progress bar but not happening anything, and saying &#8220;File Transfer failed after transferring XX bytes&#8221; in the status log, then one of the possible reasons could be the limit has been reached in your FTP. Most likely, the file(s) you were attempting to [&#8230;]</p>
<p>The post <a href="https://blog.identitydesign.us/why-filezilla-upload-files-repeatly-and-saying-file-transfer-failed-after-transferring/">Why FileZilla Upload Files Repeatedly Saying “File Transfer failed after transferring”?</a> first appeared on <a href="https://blog.identitydesign.us">identity design</a>.</p>
<p>The post <a href="https://blog.identitydesign.us/why-filezilla-upload-files-repeatly-and-saying-file-transfer-failed-after-transferring/">Why FileZilla Upload Files Repeatedly Saying &#8220;File Transfer failed after transferring&#8221;?</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/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>
</ol>
</div>
]]></description>
										<content:encoded><![CDATA[<p>If you are stuck uploading files in FileZilla that it repeats the progress bar but not happening anything, and saying &#8220;File Transfer failed after transferring XX bytes&#8221; in the status log, then one of the possible reasons could be the limit has been reached in your FTP. Most likely, the file(s) you were attempting to upload has exceeded file size (Quota) in FTP account/user. You can request the webmaster of the website (or do it yourself if you have access) to change the file limit to &#8216;unlimited&#8217; as below. </p>
<h3>Change FTP file size limit on cPanel </h3>
<p><a href="https://blog.identitydesign.us/wp-content/uploads/2018/09/ftp.jpg" rel="attachment wp-att-1053"><img loading="lazy" decoding="async" src="https://blog.identitydesign.us/wp-content/uploads/2018/09/ftp.jpg" alt="ftp" width="2490" height="442" class="alignnone size-full wp-image-1053" srcset="https://blog.identitydesign.us/wp-content/uploads/2018/09/ftp.jpg 2490w, https://blog.identitydesign.us/wp-content/uploads/2018/09/ftp-300x53.jpg 300w, https://blog.identitydesign.us/wp-content/uploads/2018/09/ftp-768x136.jpg 768w, https://blog.identitydesign.us/wp-content/uploads/2018/09/ftp-1024x182.jpg 1024w, https://blog.identitydesign.us/wp-content/uploads/2018/09/ftp-624x111.jpg 624w" sizes="auto, (max-width: 2490px) 100vw, 2490px" /></a></p>
<ol>
<li>Go to the server side and enter <strong>cPanel</strong></li>
<li>Find <strong>FTP Accounts</strong></li>
<li>Find your FTP account and <strong>increase the Quota</strong> (File size limit) &#8216;unlimited&#8217; if possible.</li>
</ol><p>The post <a href="https://blog.identitydesign.us/why-filezilla-upload-files-repeatly-and-saying-file-transfer-failed-after-transferring/">Why FileZilla Upload Files Repeatedly Saying “File Transfer failed after transferring”?</a> first appeared on <a href="https://blog.identitydesign.us">identity design</a>.</p><p>The post <a href="https://blog.identitydesign.us/why-filezilla-upload-files-repeatly-and-saying-file-transfer-failed-after-transferring/">Why FileZilla Upload Files Repeatedly Saying &#8220;File Transfer failed after transferring&#8221;?</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/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>
</ol>
</div>
]]></content:encoded>
					
					<wfw:commentRss>https://blog.identitydesign.us/why-filezilla-upload-files-repeatly-and-saying-file-transfer-failed-after-transferring/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>How Create a HTML/CSS Ribbon. Simple and Light (None Jpg/Png Image)</title>
		<link>https://blog.identitydesign.us/html-css-ribbon-no-image/</link>
					<comments>https://blog.identitydesign.us/html-css-ribbon-no-image/#respond</comments>
		
		<dc:creator><![CDATA[djemals]]></dc:creator>
		<pubDate>Sat, 28 Jul 2018 00:17:43 +0000</pubDate>
				<category><![CDATA[Bootstrap]]></category>
		<category><![CDATA[How-To]]></category>
		<category><![CDATA[HTML/CSS/PHP/JavaScripts]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Website]]></category>
		<category><![CDATA[Wordpress]]></category>
		<guid isPermaLink="false">http://blog.identitydesign.us/?p=1019</guid>

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

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

<div class="clear"></div>
<h2>CSS</h2>
<p>Copy the code below and paste into your CSS document.</p>
<pre>
.ribbon {
    position: relative;
    background: blue;
    text-align: center;
    z-index: 1;
    width: 240px;
    height: 52px;
    margin: 0 auto;
}
.ribbon-text {
    position: relative;
    display: block;
    font-size: 2em;
    color: white;
 }
.ribbon:before {
    content: '';
    border: 26px solid blue;
    border-left-color: transparent;
    border-left-width: 14px;
    position: absolute;
    top: 0;
    left: -20px;
}
.ribbon:after {
    content: '';
    border: 26px solid blue;
    border-right-color: transparent;
    border-right-width: 21px;
    position: absolute;
    top: 0;
    right: -27px;
}
</pre>
<p>You can tweak around with different colors and size of the ribbon. Have fun!<br />
</p>
<div class="clear"></div>
<style>
.ribbon {
    position: relative;
    background: blue;
    text-align: center;
    z-index: 1;
    width: 240px;
    height: 52px;
    margin: 0 auto;
}
.ribbon-text {
    position: relative;
    display: block;
    font-size: 2em;
    color: white;
 }
.ribbon:before {
    content: '';
    border: 26px solid blue;
    border-left-color: transparent;
    border-left-width: 14px;
    position: absolute;
    top: 0;
    left: -20px;
}
.ribbon:after {
    content: '';
    border: 26px solid blue;
    border-right-color: transparent;
    border-right-width: 21px;
    position: absolute;
    top: 0;
    right: -27px;
}
</style><p>The post <a href="https://blog.identitydesign.us/html-css-ribbon-no-image/">How Create a HTML/CSS Ribbon. Simple and Light (None Jpg/Png Image)</a> first appeared on <a href="https://blog.identitydesign.us">identity design</a>.</p><p>The post <a href="https://blog.identitydesign.us/html-css-ribbon-no-image/">How Create a HTML/CSS Ribbon. Simple and Light (None Jpg/Png Image)</a> appeared first on <a href="https://blog.identitydesign.us">identity design</a>.</p>
<div class='yarpp yarpp-related yarpp-related-rss yarpp-template-list'>
<!-- YARPP List -->
<h3>Related posts:</h3><ol>
<li><a href="https://blog.identitydesign.us/a-simple-way-to-hide-featured-image-inside-post-with-css/" rel="bookmark" title="A Simple Way to Hide Featured Image inside Post with CSS">A Simple Way to Hide Featured Image inside Post with CSS</a></li>
<li><a href="https://blog.identitydesign.us/simple-javascript-redirect-code/" rel="bookmark" title="Simple JavaScript Redirect Code for HTML">Simple JavaScript Redirect Code for HTML</a></li>
<li><a href="https://blog.identitydesign.us/css-make-your-element-absolute-center-vertical-horizontal/" rel="bookmark" title="CSS / HTML: Make Absolute Center (Vertical &#038; Horizontal)">CSS / HTML: Make Absolute Center (Vertical &#038; Horizontal)</a></li>
</ol>
</div>
]]></content:encoded>
					
					<wfw:commentRss>https://blog.identitydesign.us/html-css-ribbon-no-image/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Get a free SSL Certificate (Secure Socket Layer) &#8211; Change HTTP to HTTPS for your website domain</title>
		<link>https://blog.identitydesign.us/get-a-free-ssl-certificate-secure-socket-layer-change-http-to-https-for-your-website-domain/</link>
					<comments>https://blog.identitydesign.us/get-a-free-ssl-certificate-secure-socket-layer-change-http-to-https-for-your-website-domain/#respond</comments>
		
		<dc:creator><![CDATA[djemals]]></dc:creator>
		<pubDate>Thu, 24 May 2018 10:56:02 +0000</pubDate>
				<category><![CDATA[backend]]></category>
		<category><![CDATA[How-To]]></category>
		<category><![CDATA[HTML/CSS/PHP/JavaScripts]]></category>
		<category><![CDATA[Scrap]]></category>
		<category><![CDATA[Top10]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Website]]></category>
		<guid isPermaLink="false">http://blog.identitydesign.us/?p=977</guid>

					<description><![CDATA[<p>After Google label non-HTTPS sites as &#8220;not secure&#8221;, SSL(Secure Socket Layer), the domain with HTTPS is strongly encouraged by Google. SSL Certificate used to be quite pricy as it cost generally $80 &#8211; $200 annually, but as the demand increased, there is a way to obtain SSL certificate completely free! Step-by-step Guide: Go to https://www.cloudflare.com/ [&#8230;]</p>
<p>The post <a href="https://blog.identitydesign.us/get-a-free-ssl-certificate-secure-socket-layer-change-http-to-https-for-your-website-domain/">Get a free SSL Certificate (Secure Socket Layer) – Change HTTP to HTTPS for your website domain</a> first appeared on <a href="https://blog.identitydesign.us">identity design</a>.</p>
<p>The post <a href="https://blog.identitydesign.us/get-a-free-ssl-certificate-secure-socket-layer-change-http-to-https-for-your-website-domain/">Get a free SSL Certificate (Secure Socket Layer) &#8211; Change HTTP to HTTPS for your website domain</a> 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/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/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>
</ol>
</div>
]]></description>
										<content:encoded><![CDATA[<p><a href="https://security.googleblog.com/2018/02/a-secure-web-is-here-to-stay.html" rel="noopener" target="_blank">After Google label non-HTTPS sites as &#8220;not secure&#8221;</a>, SSL(Secure Socket Layer), the domain with HTTPS is strongly encouraged by Google. SSL Certificate used to be quite pricy as it cost generally $80 &#8211; $200 annually, but as the demand increased, there is a way to obtain SSL certificate <strong>completely free!</strong> </p>
<h2>Step-by-step Guide:</h2>

<ol>
<li>Go to <a href="https://www.cloudflare.com/" rel="noopener" target="_blank">https://www.cloudflare.com/</a></li>
<li>Create your account by signing up. Log in afterwards.</li>
<li>&#8220;+Add Site&#8221; on top right. <a href="https://blog.identitydesign.us/wp-content/uploads/2018/05/Screen-Shot-2018-05-24-at-12.42.25-AM.jpg" rel="attachment wp-att-982"><img loading="lazy" decoding="async" src="https://blog.identitydesign.us/wp-content/uploads/2018/05/Screen-Shot-2018-05-24-at-12.42.25-AM.jpg" alt="Screen Shot 2018-05-24 at 12.42.25 AM" width="164" height="52" class="alignnone size-full wp-image-982" /></a></li>
<li>Add your site information.</li>
<li>Hit &#8220;Next&#8221; on &#8220;We&#8217;re querying your DNS records&#8221;.</li>
<li>Confirm the &#8220;Free&#8221; plan.</li>
<li>It will show DNS query result for your site. Review and hit &#8220;Continue&#8221;</li>
<li>Change your nameservers(DNS) as described. <a href="https://blog.identitydesign.us/wp-content/uploads/2018/05/Screen-Shot-2018-05-24-at-12.36.56-AM.jpg" rel="attachment wp-att-980"><img loading="lazy" decoding="async" src="https://blog.identitydesign.us/wp-content/uploads/2018/05/Screen-Shot-2018-05-24-at-12.36.56-AM.jpg" alt="Screen Shot 2018-05-24 at 12.36.56 AM" width="1244" height="324" class="alignnone size-full wp-image-980" srcset="https://blog.identitydesign.us/wp-content/uploads/2018/05/Screen-Shot-2018-05-24-at-12.36.56-AM.jpg 1244w, https://blog.identitydesign.us/wp-content/uploads/2018/05/Screen-Shot-2018-05-24-at-12.36.56-AM-300x78.jpg 300w, https://blog.identitydesign.us/wp-content/uploads/2018/05/Screen-Shot-2018-05-24-at-12.36.56-AM-768x200.jpg 768w, https://blog.identitydesign.us/wp-content/uploads/2018/05/Screen-Shot-2018-05-24-at-12.36.56-AM-1024x267.jpg 1024w, https://blog.identitydesign.us/wp-content/uploads/2018/05/Screen-Shot-2018-05-24-at-12.36.56-AM-624x163.jpg 624w" sizes="auto, (max-width: 1244px) 100vw, 1244px" /></a></li>
<li>On Domain Summary, change &#8220;SSL: Full&#8221; to &#8220;Flexible&#8221; no need to hit &#8220;Save&#8221;. <a href="https://blog.identitydesign.us/wp-content/uploads/2018/05/Screen-Shot-2018-05-24-at-12.41.50-AM.jpg" rel="attachment wp-att-981"><img loading="lazy" decoding="async" src="https://blog.identitydesign.us/wp-content/uploads/2018/05/Screen-Shot-2018-05-24-at-12.41.50-AM.jpg" alt="Screen Shot 2018-05-24 at 12.41.50 AM" width="238" height="68" class="alignnone size-full wp-image-981" /></a></li>
<li>You are done with the DNS setting. Wait a few hours to 48 hours making sure test your site with adding &#8220;https://&#8221; in front of your domain url. Once it picks it up with &#8220;Not secure&#8221; message, then we are in good shape. </li>
</ol>
<p><em>If you are using wordpress websites, install a plugin called, &#8220;Really Simple SSL&#8221;. To find &#8220;plugins&#8221; on the backend, find the &#8220;Plugins&#8221; from the left menu,  -> &#8220;Add new&#8221; -> look for &#8220;Really Simple SSL&#8221;, install and activate the plugin. This plugin will help your website to redirect any old HTTP to HTTPS.</em></p><p>The post <a href="https://blog.identitydesign.us/get-a-free-ssl-certificate-secure-socket-layer-change-http-to-https-for-your-website-domain/">Get a free SSL Certificate (Secure Socket Layer) – Change HTTP to HTTPS for your website domain</a> first appeared on <a href="https://blog.identitydesign.us">identity design</a>.</p><p>The post <a href="https://blog.identitydesign.us/get-a-free-ssl-certificate-secure-socket-layer-change-http-to-https-for-your-website-domain/">Get a free SSL Certificate (Secure Socket Layer) &#8211; Change HTTP to HTTPS for your website domain</a> 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/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/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>
</ol>
</div>
]]></content:encoded>
					
					<wfw:commentRss>https://blog.identitydesign.us/get-a-free-ssl-certificate-secure-socket-layer-change-http-to-https-for-your-website-domain/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Force an Anchor Tag Not Clickable with CSS</title>
		<link>https://blog.identitydesign.us/force-the-anchor-tag-not-clickable-with-css/</link>
					<comments>https://blog.identitydesign.us/force-the-anchor-tag-not-clickable-with-css/#respond</comments>
		
		<dc:creator><![CDATA[djemals]]></dc:creator>
		<pubDate>Fri, 05 Jan 2018 20:28:26 +0000</pubDate>
				<category><![CDATA[How-To]]></category>
		<category><![CDATA[HTML/CSS/PHP/JavaScripts]]></category>
		<category><![CDATA[Scrap]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Website]]></category>
		<category><![CDATA[Wordpress]]></category>
		<guid isPermaLink="false">http://blog.identitydesign.us/?p=956</guid>

					<description><![CDATA[<p>Yes, it is possible to make your anchors not clickable with simple CSS lines on your website. I know sometimes you developers can&#8217;t change the core HTML codes and only have access to the CSS file. Below is the CSS that does the magic. Make an Anchor Tag Nonclickable with CSS a { pointer-events: none; [&#8230;]</p>
<p>The post <a href="https://blog.identitydesign.us/force-the-anchor-tag-not-clickable-with-css/">Force an Anchor Tag Not Clickable with CSS</a> first appeared on <a href="https://blog.identitydesign.us">identity design</a>.</p>
<p>The post <a href="https://blog.identitydesign.us/force-the-anchor-tag-not-clickable-with-css/">Force an Anchor Tag Not Clickable with CSS</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/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/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>
</ol>
</div>
]]></description>
										<content:encoded><![CDATA[<p>Yes, it is possible to make your anchors not clickable with simple CSS lines on your website. I know sometimes you developers can&#8217;t change the core HTML codes and only have access to the CSS file. Below is the CSS that does the magic.</p>
<h2>Make an Anchor Tag Nonclickable with CSS</h2>

<pre>a {
 pointer-events: none;
 cursor: default;
}
</pre><p>The post <a href="https://blog.identitydesign.us/force-the-anchor-tag-not-clickable-with-css/">Force an Anchor Tag Not Clickable with CSS</a> first appeared on <a href="https://blog.identitydesign.us">identity design</a>.</p><p>The post <a href="https://blog.identitydesign.us/force-the-anchor-tag-not-clickable-with-css/">Force an Anchor Tag Not Clickable with CSS</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/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/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>
</ol>
</div>
]]></content:encoded>
					
					<wfw:commentRss>https://blog.identitydesign.us/force-the-anchor-tag-not-clickable-with-css/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>CSS Vertical Align Center</title>
		<link>https://blog.identitydesign.us/css-vertical-align-center/</link>
					<comments>https://blog.identitydesign.us/css-vertical-align-center/#comments</comments>
		
		<dc:creator><![CDATA[djemals]]></dc:creator>
		<pubDate>Wed, 16 Mar 2016 21:50:42 +0000</pubDate>
				<category><![CDATA[How-To]]></category>
		<category><![CDATA[HTML/CSS/PHP/JavaScripts]]></category>
		<category><![CDATA[Resources]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Website]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[codes]]></category>
		<category><![CDATA[coding]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[demo]]></category>
		<category><![CDATA[Great-Stuff]]></category>
		<category><![CDATA[html5]]></category>
		<category><![CDATA[website]]></category>
		<category><![CDATA[wordpress]]></category>
		<guid isPermaLink="false">http://blog.identitydesign.us/?p=815</guid>

					<description><![CDATA[<p>Let&#8217;s  vertical align your design elements with CSS and HTML! Despite how popular people search for this method, vertical centering your contents seems not easy than you think for beginners. Below method could be the one of the simplest ways you can make it happen. DEMO: How to Vertically Align Middle with CSS Vertical Align Demo [&#8230;]</p>
<p>The post <a href="https://blog.identitydesign.us/css-vertical-align-center/">CSS Vertical Align Center</a> first appeared on <a href="https://blog.identitydesign.us">identity design</a>.</p>
<p>The post <a href="https://blog.identitydesign.us/css-vertical-align-center/">CSS Vertical Align Center</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/circled-number-lists/" rel="bookmark" title="Circled Number Lists (HTML/CSS)">Circled Number Lists (HTML/CSS)</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>
</ol>
</div>
]]></description>
										<content:encoded><![CDATA[<p>Let&#8217;s  vertical align your design elements with CSS and HTML! Despite how popular people search for this method, vertical centering your contents seems not easy than you think for beginners. Below method could be the one of the simplest ways you can make it happen.</p>
<h2>DEMO: How to Vertically Align Middle with CSS</h2>
<div class="board">
<h3>Vertical Align Demo</h3>
<div class="text-center">
<div class="div-outer">
<div class="div-inner">
<h4>Box One</h4>
<p>Vertical Align Center</p>
</div>
</div>
<div class="div-outer">
<div class="div-inner">
<h4>Box Two</h4>
<p>Vertical Align Middle</p>
</div>
</div>
<div class="div-outer">
<div class="div-inner">
<h4>Box Three</h4>
<p>Vertical Align Center</p>
</div>
</div>
</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="div-outer"&gt;
    &lt;div class="div-inner"&gt;
    &lt;h4&gt;Box One&lt;/h4&gt;
    &lt;p&gt;Vertical Align Center&lt;/p&gt;
    &lt;/div&gt;
&lt;/div&gt;
&lt;div class="div-outer"&gt;
    &lt;div class="div-inner"&gt;
    &lt;h4&gt;Box One&lt;/h4&gt;
    &lt;p&gt;Vertical Align Center&lt;/p&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;div class="div-outer"&gt;
    &lt;div class="div-inner"&gt;
    &lt;h4&gt;Box One&lt;/h4&gt;
    &lt;p&gt;Vertical Align Center&lt;/p&gt;
    &lt;/div&gt;
&lt;/div&gt;
</pre>
<p>You can tweak around with different colors of the boxes or texts. Have fun!<br />
	 	</p>
<div class="clear"></div>
<h2>CSS</h2>
<p>Copy the code below and paste into your CSS document. You need to make the same <code>min-height</code> and <code>line-height</code> on the outer part of the div. In my case, I have <code>200px</code>.</p>
<pre>.div-outer {
    min-height: 200px;
    line-height: 200px;
}
.div-inner {
    display: inline-block;
    vertical-align: middle;
    line-height: normal;
}
</pre>
<p>In case if this css isn&#8217;t working, you can try as below.</p>
<pre>.div-outer {
    height: 80vh;
    position: relative;
}
.div-inner {margin: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
}
</pre>
<p>You can tweak around with different colors of the boxes or texts. Have fun!<br />
</p>
<div class="clear"></div>
<style>
h3 { text-align:center; color:#fe862c; margin-bottom:20px; }
.div-outer {
    padding: 18px;	 	
    min-height: 200px;	 	
    line-height: 200px;	 	
    width: 25%;	 
    display: inline-block;	 
    background:#fe862c;	 
}	 	
.div-outer h4, .div-outer p { color:#fff; }	 	
.div-inner {	 
    display: inline-block;	 
    vertical-align: middle;	 	
    line-height: normal;	 	
}	 	
</style><p>The post <a href="https://blog.identitydesign.us/css-vertical-align-center/">CSS Vertical Align Center</a> first appeared on <a href="https://blog.identitydesign.us">identity design</a>.</p><p>The post <a href="https://blog.identitydesign.us/css-vertical-align-center/">CSS Vertical Align Center</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/circled-number-lists/" rel="bookmark" title="Circled Number Lists (HTML/CSS)">Circled Number Lists (HTML/CSS)</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>
</ol>
</div>
]]></content:encoded>
					
					<wfw:commentRss>https://blog.identitydesign.us/css-vertical-align-center/feed/</wfw:commentRss>
			<slash:comments>1</slash:comments>
		
		
			</item>
		<item>
		<title>Simple JavaScript Redirect Code for HTML</title>
		<link>https://blog.identitydesign.us/simple-javascript-redirect-code/</link>
					<comments>https://blog.identitydesign.us/simple-javascript-redirect-code/#respond</comments>
		
		<dc:creator><![CDATA[djemals]]></dc:creator>
		<pubDate>Thu, 03 Mar 2016 09:24:58 +0000</pubDate>
				<category><![CDATA[How-To]]></category>
		<category><![CDATA[HTML/CSS/PHP/JavaScripts]]></category>
		<category><![CDATA[Resources]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Website]]></category>
		<category><![CDATA[codes]]></category>
		<category><![CDATA[coding]]></category>
		<category><![CDATA[Download]]></category>
		<category><![CDATA[Great-Stuff]]></category>
		<category><![CDATA[html5]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[website]]></category>
		<guid isPermaLink="false">http://blog.identitydesign.us/?p=805</guid>

					<description><![CDATA[<p>Here&#8217;s the one of the simplest ways to redirect your site&#8217;s traffic. Redirect to Different URL Copy the code below and paste it to your blank html. &#60;script language=&#34;javascript&#34;&#62; window.location.href=&#34;http://YOUR-REDIRECT-PAGE&#34; &#60;/script&#62; Download Sample *Replace YOUR-REDIRECT-PAGE with your new URL.</p>
<p>The post <a href="https://blog.identitydesign.us/simple-javascript-redirect-code/">Simple JavaScript Redirect Code for HTML</a> first appeared on <a href="https://blog.identitydesign.us">identity design</a>.</p>
<p>The post <a href="https://blog.identitydesign.us/simple-javascript-redirect-code/">Simple JavaScript Redirect Code for 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/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/developing-parallax-smooth-scrolling-website/" rel="bookmark" title="Download: Simple Parallax Smooth Scrolling Website Template">Download: Simple Parallax Smooth Scrolling Website Template</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>Here&#8217;s the one of the simplest ways to redirect your site&#8217;s traffic. </p>
<h2>Redirect to Different URL</h2>
<p>Copy the code below and paste it to your blank html.</p>
<pre>
&lt;script language=&quot;javascript&quot;&gt;
window.location.href=&quot;http://YOUR-REDIRECT-PAGE&quot;
&lt;/script&gt;
</pre>

<div class="clear"></div>
<div class="btn-group"><a class="btn" onclick="_gaq.push(['_trackEvent', 'Code', 'Redirect', 'https://blog.identitydesign.us/wp-content/uploads/2016/03/redirect.html.zip']);" href="https://blog.identitydesign.us/wp-content/uploads/2016/03/redirect.html.zip">Download Sample</a></div>
<p>*Replace <code>YOUR-REDIRECT-PAGE</code> with your new URL.</p><p>The post <a href="https://blog.identitydesign.us/simple-javascript-redirect-code/">Simple JavaScript Redirect Code for HTML</a> first appeared on <a href="https://blog.identitydesign.us">identity design</a>.</p><p>The post <a href="https://blog.identitydesign.us/simple-javascript-redirect-code/">Simple JavaScript Redirect Code for 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/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/developing-parallax-smooth-scrolling-website/" rel="bookmark" title="Download: Simple Parallax Smooth Scrolling Website Template">Download: Simple Parallax Smooth Scrolling Website Template</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/simple-javascript-redirect-code/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Resolved! Loading Your Google Fonts Over https (SSL) Sites</title>
		<link>https://blog.identitydesign.us/loading-webfonts-https-ssl/</link>
					<comments>https://blog.identitydesign.us/loading-webfonts-https-ssl/#respond</comments>
		
		<dc:creator><![CDATA[djemals]]></dc:creator>
		<pubDate>Wed, 06 Jan 2016 01:58:25 +0000</pubDate>
				<category><![CDATA[Fonts]]></category>
		<category><![CDATA[Google and SEO]]></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>
		<category><![CDATA[characters]]></category>
		<category><![CDATA[codes]]></category>
		<category><![CDATA[coding]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[Font]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[Great-Stuff]]></category>
		<category><![CDATA[html5]]></category>
		<category><![CDATA[Type]]></category>
		<category><![CDATA[website]]></category>
		<category><![CDATA[wordpress]]></category>
		<guid isPermaLink="false">http://blog.identitydesign.us/?p=789</guid>

					<description><![CDATA[<p>I couldn&#8217;t believe how amazingly simple it was! I was searching for days and nights how to make my google fonts properly load over on my WordPress https (SSL) site. Here&#8217;s the basic story. I&#8217;m running an e-Commerce store with a Secure Sockets Layer installed on the domain. I created the logo with &#8220;La Belle [&#8230;]</p>
<p>The post <a href="https://blog.identitydesign.us/loading-webfonts-https-ssl/">Resolved! Loading Your Google Fonts Over https (SSL) Sites</a> first appeared on <a href="https://blog.identitydesign.us">identity design</a>.</p>
<p>The post <a href="https://blog.identitydesign.us/loading-webfonts-https-ssl/">Resolved! Loading Your Google Fonts Over https (SSL) Sites</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/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-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 couldn&#8217;t believe how amazingly simple it was! I was searching for days and nights how to make my google fonts properly load over on my WordPress https (SSL) site.</p>
<p>Here&#8217;s the basic story. I&#8217;m running an e-Commerce store with a Secure Sockets Layer installed on the domain. I created the logo with &#8220;La Belle Aurore&#8221; font from Google. When customers pay for their purchase, they have to land on the cart page showing https. My logo won&#8217;t be properly showing when my customer uses IE (Internet Explorer 11) browsers or my Safari from iPhones, so I really had resolve this issue.</p>
<p>I&#8217;ve seen some people trying to resolve the issue by creating weird code in the .htaccess file or tweaking the .function file in WordPress theme. I&#8217;ve tried it, but none of them actually worked for me.</p>
<p>Ta-Dah! It was simpler than I thought. I deleted the <code>http:</code> part on my CSS file, and it worked like magic! So <strong>DO</strong> &#8220;//fonts.googleapis.com/css?family=XXX&#8221;, <strong>NOT</strong> &#8220;http://fonts.googleapis.com/css?family=XXX&#8221;</p>
<pre>
@import url(//fonts.googleapis.com/css?family=NAME_OF_YOUR_FONT_FAMILY);
</pre>
<p>I used &#8220;La Belle Aurore&#8221; font on my site, so here&#8217;s what I have. <code>@import url(//fonts.googleapis.com/css?family=La+Belle+Aurore);</code> I hope this method save your time as well. Good luck!</p><p>The post <a href="https://blog.identitydesign.us/loading-webfonts-https-ssl/">Resolved! Loading Your Google Fonts Over https (SSL) Sites</a> first appeared on <a href="https://blog.identitydesign.us">identity design</a>.</p><p>The post <a href="https://blog.identitydesign.us/loading-webfonts-https-ssl/">Resolved! Loading Your Google Fonts Over https (SSL) Sites</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/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-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/loading-webfonts-https-ssl/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>CSS: A Simple Way to Set the Table Column Width</title>
		<link>https://blog.identitydesign.us/table-column-width-setting-css/</link>
					<comments>https://blog.identitydesign.us/table-column-width-setting-css/#respond</comments>
		
		<dc:creator><![CDATA[djemals]]></dc:creator>
		<pubDate>Fri, 18 Dec 2015 21:01:07 +0000</pubDate>
				<category><![CDATA[How-To]]></category>
		<category><![CDATA[HTML/CSS/PHP/JavaScripts]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Website]]></category>
		<category><![CDATA[codes]]></category>
		<category><![CDATA[coding]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[demo]]></category>
		<category><![CDATA[Great-Stuff]]></category>
		<category><![CDATA[html5]]></category>
		<category><![CDATA[Responsive]]></category>
		<category><![CDATA[website]]></category>
		<guid isPermaLink="false">http://blog.identitydesign.us/?p=726</guid>

					<description><![CDATA[<p>Here&#8217;s a very simple way to size your table width with a few lines of CSS instead of giving inline values to it. This method is much easier for creating responsive tables. DEMO: How It Looks 35% 15% 5% 35% 10% A B C D E A B C D E A B C D [&#8230;]</p>
<p>The post <a href="https://blog.identitydesign.us/table-column-width-setting-css/">CSS: A Simple Way to Set the Table Column Width</a> first appeared on <a href="https://blog.identitydesign.us">identity design</a>.</p>
<p>The post <a href="https://blog.identitydesign.us/table-column-width-setting-css/">CSS: A Simple Way to Set the Table Column Width</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/circled-number-lists/" rel="bookmark" title="Circled Number Lists (HTML/CSS)">Circled Number Lists (HTML/CSS)</a></li>
<li><a href="https://blog.identitydesign.us/simple-javascript-redirect-code/" rel="bookmark" title="Simple JavaScript Redirect Code for HTML">Simple JavaScript Redirect Code for HTML</a></li>
</ol>
</div>
]]></description>
										<content:encoded><![CDATA[<p>Here&#8217;s a very simple way to size your table width with a few lines of CSS instead of giving inline values to it. This method is much easier for creating responsive tables.</p>
<h2>DEMO: How It Looks</h2>
<div class="board">
<table class="table" border="0" cellspacing="0" cellpadding="0" width="624">
<tr>
<td>35%</td>
<td>15%</td>
<td>5%</td>
<td>35%</td>
<td>10%</td>
</tr>
<tr>
<td>A</td>
<td>B</td>
<td>C</td>
<td>D</td>
<td>E</td>
</tr>
<tr>
<td>A</td>
<td>B</td>
<td>C</td>
<td>D</td>
<td>E</td>
</tr>
<tr>
<td>A</td>
<td>B</td>
<td>C</td>
<td>D</td>
<td>E</td>
</tr>
</table>
</div>
<h2>CSS</h2>
<p>Copy the code below and paste into your CSS document.</p>
<pre>
table tr td { padding:20px }
table td:nth-child(1) { width:35%; }
table td:nth-child(2) { width:15%; }
table td:nth-child(3) { width:5%; }
table td:nth-child(4) { width:35%; }
table td:nth-child(5) { width:10%; }
</pre>

<div class="clear"></div>
<h2>HTML</h2>
<p>Copy the code below and paste into your HTML document.</p>
<pre>
&lt;table class=&quot;table&quot; border=&quot;0&quot; cellspacing=&quot;0&quot; cellpadding=&quot;0&quot;&gt;
  &lt;tr&gt;
    &lt;td&gt;35%&lt;/td&gt;
    &lt;td&gt;15%&lt;/td&gt;
    &lt;td&gt;5%&lt;/td&gt;
    &lt;td&gt;35%&lt;/td&gt;
    &lt;td&gt;10%&lt;/td&gt;
  &lt;/tr&gt;
  &lt;tr&gt;
    &lt;td&gt;A&lt;/td&gt;
    &lt;td&gt;B&lt;/td&gt;
    &lt;td&gt;C&lt;/td&gt;
    &lt;td&gt;D&lt;/td&gt;
    &lt;td&gt;E&lt;/td&gt;
  &lt;/tr&gt;
  &lt;tr&gt;
    &lt;td&gt;A&lt;/td&gt;
    &lt;td&gt;B&lt;/td&gt;
    &lt;td&gt;C&lt;/td&gt;
    &lt;td&gt;D&lt;/td&gt;
    &lt;td&gt;E&lt;/td&gt;
  &lt;/tr&gt;
  &lt;tr&gt;
    &lt;td&gt;A&lt;/td&gt;
    &lt;td&gt;B&lt;/td&gt;
    &lt;td&gt;C&lt;/td&gt;
    &lt;td&gt;D&lt;/td&gt;
    &lt;td&gt;E&lt;/td&gt;
  &lt;/tr&gt;
&lt;/table&gt;
</pre>
<p>You can copy both CSS and HTML codes to your file and tweak around as you like!<br />
</p>
<div class="clear"></div>
<style>
.entry-content td, .comment-content td { border: 1px solid #ccc; }
.entry-content table, .comment-content table {
    border-top: 2px solid #fff;
    border-bottom: 2px solid #fff;
    border-left: 2px solid #fff;
    border-right: 2px solid #fff;
}
.board .table tr td { padding:20px }
.board .table td:nth-child(1) { width:35%; }
.board .table td:nth-child(2) { width:15%; }
.board .table td:nth-child(3) { width:5%; }
.board .table td:nth-child(4) { width:35%; }
.board .table td:nth-child(5) { width:10%; }
</style><p>The post <a href="https://blog.identitydesign.us/table-column-width-setting-css/">CSS: A Simple Way to Set the Table Column Width</a> first appeared on <a href="https://blog.identitydesign.us">identity design</a>.</p><p>The post <a href="https://blog.identitydesign.us/table-column-width-setting-css/">CSS: A Simple Way to Set the Table Column Width</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/circled-number-lists/" rel="bookmark" title="Circled Number Lists (HTML/CSS)">Circled Number Lists (HTML/CSS)</a></li>
<li><a href="https://blog.identitydesign.us/simple-javascript-redirect-code/" rel="bookmark" title="Simple JavaScript Redirect Code for HTML">Simple JavaScript Redirect Code for HTML</a></li>
</ol>
</div>
]]></content:encoded>
					
					<wfw:commentRss>https://blog.identitydesign.us/table-column-width-setting-css/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Circled Number Lists (HTML/CSS)</title>
		<link>https://blog.identitydesign.us/circled-number-lists/</link>
					<comments>https://blog.identitydesign.us/circled-number-lists/#comments</comments>
		
		<dc:creator><![CDATA[djemals]]></dc:creator>
		<pubDate>Tue, 08 Dec 2015 07:55:11 +0000</pubDate>
				<category><![CDATA[How-To]]></category>
		<category><![CDATA[HTML/CSS/PHP/JavaScripts]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Website]]></category>
		<category><![CDATA[codes]]></category>
		<category><![CDATA[coding]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[demo]]></category>
		<category><![CDATA[Great-Stuff]]></category>
		<category><![CDATA[html5]]></category>
		<category><![CDATA[website]]></category>
		<guid isPermaLink="false">http://blog.identitydesign.us/?p=772</guid>

					<description><![CDATA[<p>You can make a circle around your Ordered List, &#60;ol&#62; as below without using image formats like JPG or PNG, so this way you can reduce the developing and loading time for your site. DEMO: How It Looks Circle Around Numbers in Steps (HTML &#38; CSS) This is the sample draft for circled number bullet [&#8230;]</p>
<p>The post <a href="https://blog.identitydesign.us/circled-number-lists/">Circled Number Lists (HTML/CSS)</a> first appeared on <a href="https://blog.identitydesign.us">identity design</a>.</p>
<p>The post <a href="https://blog.identitydesign.us/circled-number-lists/">Circled Number Lists (HTML/CSS)</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/css-vertical-align-center/" rel="bookmark" title="CSS Vertical Align Center">CSS Vertical Align Center</a></li>
<li><a href="https://blog.identitydesign.us/simple-javascript-redirect-code/" rel="bookmark" title="Simple JavaScript Redirect Code for HTML">Simple JavaScript Redirect Code for HTML</a></li>
</ol>
</div>
]]></description>
										<content:encoded><![CDATA[<p><a href="http://sleekycase.com/3d-custom-photo-design-matte-case/" rel="attachment wp-att-940 noopener" 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>You can make a circle around your Ordered List, <code>&lt;ol&gt;</code> as below without using image formats like JPG or PNG, so this way you can reduce the developing and loading time for your site.</p>
<h2>DEMO: How It Looks</h2>
<div class="board">
<h3 style="color:#fe862c;">Circle Around Numbers in Steps (HTML &amp; CSS)</h3>
<ol>
<li>This is the sample draft for circled number bullet points for ordered lists. This sentence is just for a place holder. This is the sample draft for circled number bullet points for ordered lists. This sentence is just for a place holder.</li>
<li>This is the sample draft for circled number bullet points for ordered lists. This sentence is just for a place holder. This is the sample draft for circled number bullet points for ordered lists. This sentence is just for a place holder.</li>
<li>This is the sample draft for circled number bullet points for ordered lists. This sentence is just for a place holder. This is the sample draft for circled number bullet points for ordered lists. This sentence is just for a place holder.</li>
<li>This is the sample draft for circled number bullet points for ordered lists. This sentence is just for a place holder. This is the sample draft for circled number bullet points for ordered lists. This sentence is just for a place holder.</li>
<li>This is the sample draft for circled number bullet points for ordered lists. This sentence is just for a place holder. This is the sample draft for circled number bullet points for ordered lists. This sentence is just for a place holder.</li>
</ol>
</div>

<div class="clear"></div>
<h2>CSS</h2>
<p>Copy the code below and paste into your CSS document.</p>
<pre>
ol {
    counter-reset:item; 
    margin:0; 
    padding-left:0; 
}
ol>li {
    counter-increment:item; 
    list-style:none inside; 
    margin: 40px 0;
    overflow: hidden;
    font-size: 16px !important;
    line-height: 1.3;
}
ol>li:before {
    content:counter(item) ;
    margin-right: 20px;
    padding: 8px;
    display: block;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    width: 65px;
    background: #fe862c;
    color: #fff;
    text-align: center; 
    font: 56px 'Lato', Helvetica, Arial, sans-serif;
    font-weight: 100;
    float: left;
}
</pre>

<div class="clear"></div>
<h2>HTML</h2>
<p>Copy the code below and paste into your HTML document.</p>
<pre>
&lt;ol&gt;<br>
    &lt;li&gt;Lorem ipsum dolor sit amet, felis dui nam, vivamus turpis bibendum et massa.&lt;/li&gt;<br>
    &lt;li&gt;At augue, erat dui odio. Duis lectus, laoreet et, dolor nascetur tellus tellus sit etiam, massa leo dolor. Magna mi vitae et, lectus pellentesque, nec magna et ante, vehicula torquent venenatis tempor eget, elementum condimentum. &lt;/li&gt;<br>
    &lt;li&gt;Integer porttitor donec, justo in, in pede, et leo ornare viverra erat ac. Dui diam, a sed purus, porta penatibus. Magna in, congue quam pulvinar cras malesuada condimentum nunc, vestibulum ut dolor tortor fusce nibh sollicitudin.&lt;/li&gt;<br>
    &lt;li&gt;Vitae in, a pulvinar velit laoreet, tristique nascetur sapien. Placerat nunc a integer tincidunt sem, vivamus turpis, erat pulvinar interdum rhoncus nonummy vitae, etiam eleifend arcu non cras a commodo.&lt;/li&gt;<br>
    &lt;li&gt;Quis mus donec, volutpat placerat nam et eros quam enim, id tincidunt aliquam libero odio, suspendisse a quam tristique ligula.&lt;/li&gt;<br>
&lt;/ol&gt;
</pre>
<p>You can copy both CSS and HTML codes to your file and tweak around as you like. Enjoy coding!</p>
<div class="related-post">
<div class="item"> <a class="image" href="https://blog.identitydesign.us/css-only-modal-lightbox-pop-up-on-page-load/"><img decoding="async" src="https://blog.identitydesign.us/wp-content/uploads/2020/04/300x200-load-popup.jpg" class="attachment-medium size-medium wp-post-image" alt="Pop-up Modal Lightbox" scale="0"></a> <a class="title" href="https://blog.identitydesign.us/css-only-modal-lightbox-pop-up-on-page-load/">CSS Only: Pop-up Modal Lightbox on Page Load</a></div>
<div class="item"> <a class="image" href="https://blog.identitydesign.us/html-css-ribbon-no-image/"><img decoding="async" src="https://blog.identitydesign.us/wp-content/uploads/2018/07/300x200-ribbon-300x200.jpg" class="attachment-medium size-medium wp-post-image" alt="HTML/CSS Ribbon" scale="0"></a> <a class="title" href="https://blog.identitydesign.us/html-css-ribbon-no-image/">How Create a HTML/CSS Ribbon. Simple and Light (None Jpg/Png Image)</a></div>
<div class="item"> <a class="image" href="https://blog.identitydesign.us/css-add-gradient-dark-shade-on-background-images-to-make-the-text-visible/"><img decoding="async" src="https://blog.identitydesign.us/wp-content/uploads/2019/10/300x200-gradient-h.jpg" class="attachment-medium size-medium wp-post-image" alt="Add Gradient Layer" scale="0"></a> <a class="title" 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></div>
</div>

<div class="clear"></div><p>The post <a href="https://blog.identitydesign.us/circled-number-lists/">Circled Number Lists (HTML/CSS)</a> first appeared on <a href="https://blog.identitydesign.us">identity design</a>.</p><p>The post <a href="https://blog.identitydesign.us/circled-number-lists/">Circled Number Lists (HTML/CSS)</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/css-vertical-align-center/" rel="bookmark" title="CSS Vertical Align Center">CSS Vertical Align Center</a></li>
<li><a href="https://blog.identitydesign.us/simple-javascript-redirect-code/" rel="bookmark" title="Simple JavaScript Redirect Code for HTML">Simple JavaScript Redirect Code for HTML</a></li>
</ol>
</div>
]]></content:encoded>
					
					<wfw:commentRss>https://blog.identitydesign.us/circled-number-lists/feed/</wfw:commentRss>
			<slash:comments>3</slash:comments>
		
		
			</item>
		<item>
		<title>Quick Start Guide to MailChimp for WordPress</title>
		<link>https://blog.identitydesign.us/howto-mailchimp-for-wordpress/</link>
					<comments>https://blog.identitydesign.us/howto-mailchimp-for-wordpress/#comments</comments>
		
		<dc:creator><![CDATA[djemals]]></dc:creator>
		<pubDate>Mon, 13 Oct 2014 19:11:30 +0000</pubDate>
				<category><![CDATA[How-To]]></category>
		<category><![CDATA[Resources]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[email]]></category>
		<category><![CDATA[Great-Stuff]]></category>
		<category><![CDATA[Resource]]></category>
		<category><![CDATA[website]]></category>
		<category><![CDATA[wordpress]]></category>
		<guid isPermaLink="false">http://blog.identitydesign.us/?p=636</guid>

					<description><![CDATA[<p>This post will be a quick start guide to MailChimp for WordPress plugin. You might use it to collect massive email data from the visitors of your website in order to send a blast of email for your personal or commercial needs. For beginners, MailChimp is a great place to start with your email campaign [&#8230;]</p>
<p>The post <a href="https://blog.identitydesign.us/howto-mailchimp-for-wordpress/">Quick Start Guide to MailChimp 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/howto-mailchimp-for-wordpress/">Quick Start Guide to MailChimp 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/migrating-joomla-to-wordpress/" rel="bookmark" title="Migrating Joomla to WordPress">Migrating Joomla to WordPress</a></li>
<li><a href="https://blog.identitydesign.us/wordpress-appearing-weird-characterscode/" rel="bookmark" title="WordPress Appearing Strange Weird Characters / Codes">WordPress Appearing Strange Weird Characters / Codes</a></li>
<li><a href="https://blog.identitydesign.us/freebies-christmas-responsive-email-template-business-htmlcss/" rel="bookmark" title="Freebies: Christmas Responsive Email Template for Business (HTML/CSS)">Freebies: Christmas Responsive Email Template for Business (HTML/CSS)</a></li>
</ol>
</div>
]]></description>
										<content:encoded><![CDATA[<p>This post will be a quick start guide to MailChimp for WordPress plugin. You might use it to collect massive email data from the visitors of your website in order to send a blast of email for your personal or commercial needs. For beginners, MailChimp is a great place to start with your email campaign where that is available to &#8220;send 12,000 emails to 2,000 subscribers for free&#8221;. </p>
<ul class="dotted-600">
<li>
<div class="numbering">1</div>
<p>Download the MailChimp for WordPress Plugin. https://wordpress.org/plugins/mailchimp-for-wp/ or go to your WordPress Admin -> Plugins -> Add New -> (Search for) MailChimp for WordPress -> Download &#038; Activate.</li>
<li>
<div class="numbering">2</div>
<p>Sign up MailChimp website for free. http://mailchimp.com/</li>
<li>
<div class="numbering">3</div>
<p>Create and name your list. Go to the &#8216;List&#8217; menu on the sidebar. Create a list.</li>
<li>
<div class="numbering">4</div>
<p>Go to your name at the top of the sidebar and select &#8216;Account&#8217;.
</li>
<li>
<div class="numbering">5</div>
<p>Create API Key. On the top menu click &#8216;Extras&#8217; -> API keys -> &#8216;Create A Key&#8217;</li>
<li>
<div class="numbering">6</div>
<p>Copy the API Key you just created and Paste it onto your &#8216;MailChimp for WP&#8217; (your WordPress Admin -> MailChimp for WordPress -> MailChimp Settings) then &#8216;Save Changes&#8217;</li>
<li>
<div class="numbering">7</div>
<p>Check and make sure you see &#8216;CONNECTED&#8217; sign on &#8216;MailChimp API Settings&#8217;. Click on the button -&#8216;Renew MailChimp lists&#8217;</li>
<li>
<div class="numbering">8</div>
<p>Go to the admin -> &#8216;MailChimp for WP&#8217; -> &#8216;Checkboxes&#8217; and check on the &#8216;MailChimp Lists&#8217; box and save.</li>
<li>
<div class="numbering">9</div>
<p>Go to the admin -> &#8216;MailChimp for WP&#8217; -> &#8216;Forms&#8217;and check on the &#8216;Lists this form subscribes to&#8217; box and save.
</li>
<li>
<div class="numbering">10</div>
<p>On the &#8216;Form&#8217; setting page, copy the form shortcode below &#8216;Form mark-up&#8217; and paste into any posts or pages you want to show your subscriber form, or you can use a MailChimp form widget to subscribe emails. (For widget users, go to the admin -> drag and drop &#8216;MailChimp Sign-Up Form&#8217; to your widget sidebar.</li>
<p><a href="https://blog.identitydesign.us/wp-content/uploads/2014/10/Screen-Shot-2014-10-13-at-12.37.18-AM.jpg"><img loading="lazy" decoding="async" src="https://blog.identitydesign.us/wp-content/uploads/2014/10/Screen-Shot-2014-10-13-at-12.37.18-AM.jpg" alt="Screen Shot 2014-10-13 at 12.37.18 AM" width="521" height="129" class="alignnone size-full wp-image-637" srcset="https://blog.identitydesign.us/wp-content/uploads/2014/10/Screen-Shot-2014-10-13-at-12.37.18-AM.jpg 521w, https://blog.identitydesign.us/wp-content/uploads/2014/10/Screen-Shot-2014-10-13-at-12.37.18-AM-300x74.jpg 300w" sizes="auto, (max-width: 521px) 100vw, 521px" /></a></p>
<li>
<div class="numbering">11</div>
<p>Test your email. Once you actually test subscribing with your email, you would get a successful message &#8220;Thank you, your sign-up request was successful! Please check your e-mail inbox.&#8221;, but if miss any steps from above, you might see a message &#8220;oops. Something went wrong. Please try again later.&#8221;</li>
</ul>
<p>Enjoy the MailChimp for WordPress plugin / widget!</p><p>The post <a href="https://blog.identitydesign.us/howto-mailchimp-for-wordpress/">Quick Start Guide to MailChimp 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/howto-mailchimp-for-wordpress/">Quick Start Guide to MailChimp 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/migrating-joomla-to-wordpress/" rel="bookmark" title="Migrating Joomla to WordPress">Migrating Joomla to WordPress</a></li>
<li><a href="https://blog.identitydesign.us/wordpress-appearing-weird-characterscode/" rel="bookmark" title="WordPress Appearing Strange Weird Characters / Codes">WordPress Appearing Strange Weird Characters / Codes</a></li>
<li><a href="https://blog.identitydesign.us/freebies-christmas-responsive-email-template-business-htmlcss/" rel="bookmark" title="Freebies: Christmas Responsive Email Template for Business (HTML/CSS)">Freebies: Christmas Responsive Email Template for Business (HTML/CSS)</a></li>
</ol>
</div>
]]></content:encoded>
					
					<wfw:commentRss>https://blog.identitydesign.us/howto-mailchimp-for-wordpress/feed/</wfw:commentRss>
			<slash:comments>1</slash:comments>
		
		
			</item>
		<item>
		<title>Responsive Google Adsense is Easy!</title>
		<link>https://blog.identitydesign.us/responsive-google-adsense/</link>
					<comments>https://blog.identitydesign.us/responsive-google-adsense/#comments</comments>
		
		<dc:creator><![CDATA[djemals]]></dc:creator>
		<pubDate>Wed, 24 Sep 2014 21:42:51 +0000</pubDate>
				<category><![CDATA[Google and SEO]]></category>
		<category><![CDATA[How-To]]></category>
		<category><![CDATA[HTML/CSS/PHP/JavaScripts]]></category>
		<category><![CDATA[Pixels]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Website]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[coding]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[Great-Stuff]]></category>
		<category><![CDATA[html5]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[Responsive]]></category>
		<guid isPermaLink="false">http://blog.identitydesign.us/?p=584</guid>

					<description><![CDATA[<p>We are facing a big transition in web design. In recent days, majority of well developed websites are made in responsive websites. Responsive design is the development responding to the environment based on screen size of a device. That being said the content elements must evolve to meet the technology as millions of bloggers are [&#8230;]</p>
<p>The post <a href="https://blog.identitydesign.us/responsive-google-adsense/">Responsive Google Adsense is Easy!</a> first appeared on <a href="https://blog.identitydesign.us">identity design</a>.</p>
<p>The post <a href="https://blog.identitydesign.us/responsive-google-adsense/">Responsive Google Adsense is Easy!</a> appeared first on <a href="https://blog.identitydesign.us">identity design</a>.</p>
<div class='yarpp yarpp-related yarpp-related-rss yarpp-template-list'>
<!-- YARPP List -->
<h3>Related posts:</h3><ol>
<li><a href="https://blog.identitydesign.us/loading-webfonts-https-ssl/" rel="bookmark" title="Resolved! Loading Your Google Fonts Over https (SSL) Sites">Resolved! Loading Your Google Fonts Over https (SSL) Sites</a></li>
<li><a href="https://blog.identitydesign.us/how-to-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/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>We are facing a big transition in web design. In recent days, majority of well developed websites are made in responsive websites. Responsive design is the development responding to the environment based on screen size of a device. That being said the content elements must evolve to meet the technology as millions of bloggers are using Google Adsense technology to monetize their content.</p>
<p>Below is the HOW-TO guide to tweak the current Google Adsense code with the new responsive Google Adsense banners on your site. You don&#8217;t need to have a deep understanding of it&#8217;s frame work. Here&#8217;s an easy way to make it happen.</p>
<p>Our DEMO is here. Just look at the header section of this site. Do you see a wide horizontal banner (728 px x 90 px)? Try resize the browser to make it smaller and reload the page. Try even smaller like you are using a mobile and reload the page. Do you see the size of the ad is changing as it&#8217;s responding?</p>
<p>Let&#8217;s first take a look at your current Google Adsense Code below. You can get this code from <a href="https://www.google.com/adsense/" target="_blank">Google Adsense Site</a> &rarr; My ads (top menu) &rarr; &#8220;Get Code&#8221; from one of your ad unit.</p>
<p>Make sure you select &#8220;asynchronous&#8221; code type from the drop down menu.</p>
<pre>&lt;script async src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"&gt;&lt;/script&gt;
&lt;!-- NAME OF YOUR AD --&gt;
&lt;ins class="adsbygoogle"
     style="display:inline-block;width:728px;height:90px"
     data-ad-client="ca-pub-8255226778912403"
     data-ad-slot="1054112722"&gt;&lt;/ins&gt;
&lt;script&gt;
(adsbygoogle = window.adsbygoogle || []).push({});
&lt;/script&gt;</pre>
<p>1. You simply add a <code>&lt;div&gt;</code> around it.<br />
2. Named the class to <code>responsive-ad</code> on the <code>&lt;div&gt;</code><br />
3. Added the class <code>responsive-ad</code> to <code>&lt;ins&gt;</code>. So it&#8217;s now <code>adsbygoogle responsive-ad</code>.<br />
4. Changed the style to <code>display:block</code><br />
5. You must replace <code>data-ad-client</code> numbers and <code>data-ad-slot</code> numbers with yours..<br />
6. Added <code>data-format="auto"</code> before closing <code>&lt;/ins&gt;</code> tag.<br />
7. Add <code>&lt;style&gt;</code> tags. You can tweak it whatever you want.</p>

<div class="clear"></div>
<pre>&lt;div class="responsive-ad"&gt;	
&lt;script async src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"&gt;&lt;/script&gt;
&lt;!-- NAME OF YOUR AD --&gt;
&lt;ins class="adsbygoogle responsive-ad"
     style="display:block"
     data-ad-client="ca-pub-XXXXXXXXXXXXXXXX"
     data-ad-slot="XXXXXXXXXX"
     data-format="auto"&gt;&lt;/ins&gt;
&lt;script&gt;
(adsbygoogle = window.adsbygoogle || []).push({});
&lt;/script&gt;
&lt;/div&gt;

&lt;style type="text/css"&gt;
.responsive-ad { width: 320px; height: 50px; margin: 0 auto; }
@media (min-width:480px) { .responsive-ad { width: 468px; height: 60px; } }
@media (min-width:768px) { .responsive-ad { width: 728px; height: 90px; } }
&lt;/style&gt;</pre>
<p>The <code>&lt;style&gt;</code> above has set a minimum of 768px (and up) for desktops, a minimum of 480px (and up but below 768px) for tablet, and 320px (and up but below 480px) for mobile. You may feel free to change the numbers of <code>min-width:</code> as your site structure.</p>
<p>Enjoy your blogging and monetizing with the new Responsive Google Adsense!</p><p>The post <a href="https://blog.identitydesign.us/responsive-google-adsense/">Responsive Google Adsense is Easy!</a> first appeared on <a href="https://blog.identitydesign.us">identity design</a>.</p><p>The post <a href="https://blog.identitydesign.us/responsive-google-adsense/">Responsive Google Adsense is Easy!</a> appeared first on <a href="https://blog.identitydesign.us">identity design</a>.</p>
<div class='yarpp yarpp-related yarpp-related-rss yarpp-template-list'>
<!-- YARPP List -->
<h3>Related posts:</h3><ol>
<li><a href="https://blog.identitydesign.us/loading-webfonts-https-ssl/" rel="bookmark" title="Resolved! Loading Your Google Fonts Over https (SSL) Sites">Resolved! Loading Your Google Fonts Over https (SSL) Sites</a></li>
<li><a href="https://blog.identitydesign.us/how-to-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/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/responsive-google-adsense/feed/</wfw:commentRss>
			<slash:comments>1</slash:comments>
		
		
			</item>
		<item>
		<title>Download: Simple Parallax Smooth Scrolling Website Template</title>
		<link>https://blog.identitydesign.us/developing-parallax-smooth-scrolling-website/</link>
					<comments>https://blog.identitydesign.us/developing-parallax-smooth-scrolling-website/#respond</comments>
		
		<dc:creator><![CDATA[djemals]]></dc:creator>
		<pubDate>Thu, 04 Sep 2014 23:01:36 +0000</pubDate>
				<category><![CDATA[Freebies]]></category>
		<category><![CDATA[How-To]]></category>
		<category><![CDATA[HTML/CSS/PHP/JavaScripts]]></category>
		<category><![CDATA[Resources]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Website]]></category>
		<category><![CDATA[coding]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[demo]]></category>
		<category><![CDATA[Download]]></category>
		<category><![CDATA[html5]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[parallax]]></category>
		<category><![CDATA[website]]></category>
		<guid isPermaLink="false">http://blog.identitydesign.us/?p=420</guid>

					<description><![CDATA[<p>With new technologies of HTML5, CSS3 and JavaScript, parallax scrolling is one of the hottest trends in web design industry. Floating with different speed of scrolling background elements could make a website stronger in storytelling. It&#8217;s easy to find parallax resources online, but it&#8217;s hard to find a function with smooth scrolling effect. Here&#8217;s the [&#8230;]</p>
<p>The post <a href="https://blog.identitydesign.us/developing-parallax-smooth-scrolling-website/">Download: Simple Parallax Smooth Scrolling Website Template</a> first appeared on <a href="https://blog.identitydesign.us">identity design</a>.</p>
<p>The post <a href="https://blog.identitydesign.us/developing-parallax-smooth-scrolling-website/">Download: Simple Parallax Smooth Scrolling Website 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/freebies-merry-christmas-gif-animation-template-psd/" rel="bookmark" title="Freebies: Merry Christmas Gif Animation Template (PSD)">Freebies: Merry Christmas Gif Animation Template (PSD)</a></li>
<li><a href="https://blog.identitydesign.us/free-splatter-art-poster/" rel="bookmark" title="Freebies: Paint Splatter High-Res Art Poster Template">Freebies: Paint Splatter High-Res Art Poster Template</a></li>
<li><a href="https://blog.identitydesign.us/simple-javascript-redirect-code/" rel="bookmark" title="Simple JavaScript Redirect Code for HTML">Simple JavaScript Redirect Code for HTML</a></li>
</ol>
</div>
]]></description>
										<content:encoded><![CDATA[<p>With new technologies of HTML5, CSS3 and JavaScript, parallax scrolling is one of the hottest trends in web design industry. Floating with different speed of scrolling background elements could make a website stronger in storytelling. It&#8217;s easy to find parallax resources online, but it&#8217;s hard to find a function with smooth scrolling effect.</p>
<p><a href="https://blog.identitydesign.us/parallax-smooth-scrolling-website/" target="_blank"><img loading="lazy" decoding="async" class="alignnone size-full wp-image-465" alt="parallax-smooth-scrolling" src="https://blog.identitydesign.us/wp-content/uploads/2014/09/parallax-smooth-scrolling.png" width="1446" height="1185" srcset="https://blog.identitydesign.us/wp-content/uploads/2014/09/parallax-smooth-scrolling.png 1446w, https://blog.identitydesign.us/wp-content/uploads/2014/09/parallax-smooth-scrolling-300x245.png 300w, https://blog.identitydesign.us/wp-content/uploads/2014/09/parallax-smooth-scrolling-1024x839.png 1024w, https://blog.identitydesign.us/wp-content/uploads/2014/09/parallax-smooth-scrolling-624x511.png 624w" sizes="auto, (max-width: 1446px) 100vw, 1446px" /></a></p>
<p>Here&#8217;s the parallax website with &#8220;SMOOTH&#8221; scrolling effect for you to download. The website is made of HTML5/CSS/JavaScript. It&#8217;s free to use for your website, but it only works on Google Chrome. For other browsers everything works perfectly except for the smooth scrolling effect.</p>

<div class="btn-group">
<a href="https://blog.identitydesign.us/parallax-smooth-scrolling-website/" target="_blank" class="btn" onClick="_gaq.push(['_trackEvent', 'Parallax', 'Demo', 'https://blog.identitydesign.us/wp-content/uploads/2014/09/parallax-smooth-scrolling-website.zip']);">DEMO</a><a href="https://blog.identitydesign.us/wp-content/uploads/2014/09/parallax-smooth-scrolling-website.zip" class="btn" onClick="_gaq.push(['_trackEvent', 'Parallax', 'Download', 'https://blog.identitydesign.us/wp-content/uploads/2014/09/parallax-smooth-scrolling-website.zip']);">Download</a></div><p>The post <a href="https://blog.identitydesign.us/developing-parallax-smooth-scrolling-website/">Download: Simple Parallax Smooth Scrolling Website Template</a> first appeared on <a href="https://blog.identitydesign.us">identity design</a>.</p><p>The post <a href="https://blog.identitydesign.us/developing-parallax-smooth-scrolling-website/">Download: Simple Parallax Smooth Scrolling Website 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/freebies-merry-christmas-gif-animation-template-psd/" rel="bookmark" title="Freebies: Merry Christmas Gif Animation Template (PSD)">Freebies: Merry Christmas Gif Animation Template (PSD)</a></li>
<li><a href="https://blog.identitydesign.us/free-splatter-art-poster/" rel="bookmark" title="Freebies: Paint Splatter High-Res Art Poster Template">Freebies: Paint Splatter High-Res Art Poster Template</a></li>
<li><a href="https://blog.identitydesign.us/simple-javascript-redirect-code/" rel="bookmark" title="Simple JavaScript Redirect Code for HTML">Simple JavaScript Redirect Code for HTML</a></li>
</ol>
</div>
]]></content:encoded>
					
					<wfw:commentRss>https://blog.identitydesign.us/developing-parallax-smooth-scrolling-website/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>How to Remove or Uninstall Plugins like Phantasm in Adobe Illustrator?</title>
		<link>https://blog.identitydesign.us/how-to-remove-or-uninstall-plugins-like-phantasm-in-adobe-illustrator/</link>
					<comments>https://blog.identitydesign.us/how-to-remove-or-uninstall-plugins-like-phantasm-in-adobe-illustrator/#comments</comments>
		
		<dc:creator><![CDATA[djemals]]></dc:creator>
		<pubDate>Mon, 23 Jun 2014 19:27:55 +0000</pubDate>
				<category><![CDATA[How-To]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[illustrator]]></category>
		<guid isPermaLink="false">http://blog.identitydesign.us/?p=356</guid>

					<description><![CDATA[<p>Plugins are great for Adobe Illustrator. There are many open shared plugins and it&#8217;s free to use. But sometimes a plugin has a trial period for 15 to 30 days, and it asks you to pay for the software and you just don&#8217;t want to purchase it, like Astute Graphics in my case (It&#8217;s a [&#8230;]</p>
<p>The post <a href="https://blog.identitydesign.us/how-to-remove-or-uninstall-plugins-like-phantasm-in-adobe-illustrator/">How to Remove or Uninstall Plugins like Phantasm in Adobe Illustrator?</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-or-uninstall-plugins-like-phantasm-in-adobe-illustrator/">How to Remove or Uninstall Plugins like Phantasm in Adobe Illustrator?</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/howto-mailchimp-for-wordpress/" rel="bookmark" title="Quick Start Guide to MailChimp for WordPress">Quick Start Guide to MailChimp for WordPress</a></li>
<li><a href="https://blog.identitydesign.us/migrating-joomla-to-wordpress/" rel="bookmark" title="Migrating Joomla to WordPress">Migrating Joomla to 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>
</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>Plugins are great for Adobe Illustrator. There are many open shared plugins and it&#8217;s free to use. But sometimes a plugin has a trial period for 15 to 30 days, and it asks you to pay for the software and you just don&#8217;t want to purchase it, like Astute Graphics in my case (It&#8217;s a great plugin and would recommend to use, but for me, I found a way to change group of hue adjustments with my Adobe Illustrator CC built-in function so I no longer needed the plugin). When the trial period has expired, a pop-up window shows up every time when I open Adobe Illustrator, like this, and it&#8217;s a bit annoying:</p>
<p><a href="https://blog.identitydesign.us/wp-content/uploads/2014/06/Screen-shot-2014-06-23-at-11.55.28-AM.png"><img loading="lazy" decoding="async" width="680" height="631" src="https://blog.identitydesign.us/wp-content/uploads/2014/06/Screen-shot-2014-06-23-at-11.55.28-AM.png" alt="Astute Graphics Phantasm" class="alignnone size-full wp-image-359" srcset="https://blog.identitydesign.us/wp-content/uploads/2014/06/Screen-shot-2014-06-23-at-11.55.28-AM.png 680w, https://blog.identitydesign.us/wp-content/uploads/2014/06/Screen-shot-2014-06-23-at-11.55.28-AM-300x278.png 300w, https://blog.identitydesign.us/wp-content/uploads/2014/06/Screen-shot-2014-06-23-at-11.55.28-AM-624x579.png 624w" sizes="auto, (max-width: 680px) 100vw, 680px" /></a></p>
<p>After you&#8217;ve select the &#8216;continue&#8217; button, you can check to see the Phantasm plugin has been installed to your system by going to the top menu &#8216;illustor&#8217; -> &#8216;About Phantasm&#8217;.</p>
<p><a href="https://blog.identitydesign.us/wp-content/uploads/2014/06/Screen-shot-2014-06-23-at-11.56.23-AM.png"><img loading="lazy" decoding="async" src="https://blog.identitydesign.us/wp-content/uploads/2014/06/Screen-shot-2014-06-23-at-11.56.23-AM.png" alt="About Phantasm" width="213" height="242" class="alignnone size-full wp-image-360" /></a></p>
<p>Let&#8217;s close the Adobe illustrator by go to the top menu &#8216;Illustrator&#8217; -> &#8216;Quit Illustrator&#8217;. </p>
<p>Okay, here&#8217;s what you should do to remove/uninstall the plugin:</p>
<p>1. Go to Applications folder: Finder -> Go -> Applications (or Shift + Commend + A)</p>
<p><a href="https://blog.identitydesign.us/wp-content/uploads/2014/06/Screen-shot-2014-06-23-at-11.54.37-AM.png"><img loading="lazy" decoding="async" src="https://blog.identitydesign.us/wp-content/uploads/2014/06/Screen-shot-2014-06-23-at-11.54.37-AM.png" alt="Trash the Plugin" width="552" height="423" class="alignnone size-full wp-image-357" srcset="https://blog.identitydesign.us/wp-content/uploads/2014/06/Screen-shot-2014-06-23-at-11.54.37-AM.png 552w, https://blog.identitydesign.us/wp-content/uploads/2014/06/Screen-shot-2014-06-23-at-11.54.37-AM-300x229.png 300w" sizes="auto, (max-width: 552px) 100vw, 552px" /></a></p>
<p>2. Go to Adobe Illustrator -> Plug-ins -> Trash &#8216;Phantasm.aip&#8217; the plugin.</p>
<p>Done!</p>
<p><a href="https://blog.identitydesign.us/wp-content/uploads/2014/06/Screen-shot-2014-06-23-at-11.57.06-AM.png"><img loading="lazy" decoding="async" src="https://blog.identitydesign.us/wp-content/uploads/2014/06/Screen-shot-2014-06-23-at-11.57.06-AM.png" alt="Top menu" width="213" height="223" class="alignnone size-full wp-image-358" /></a></p>
<p>Go and open Adobe Illustrator and check if the plugin has been removed completely by going to the top menu &#8216;illustor&#8217; (you won&#8217;t see &#8216;About Phantasm&#8217; anymore).</p><p>The post <a href="https://blog.identitydesign.us/how-to-remove-or-uninstall-plugins-like-phantasm-in-adobe-illustrator/">How to Remove or Uninstall Plugins like Phantasm in Adobe Illustrator?</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-or-uninstall-plugins-like-phantasm-in-adobe-illustrator/">How to Remove or Uninstall Plugins like Phantasm in Adobe Illustrator?</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/howto-mailchimp-for-wordpress/" rel="bookmark" title="Quick Start Guide to MailChimp for WordPress">Quick Start Guide to MailChimp for WordPress</a></li>
<li><a href="https://blog.identitydesign.us/migrating-joomla-to-wordpress/" rel="bookmark" title="Migrating Joomla to WordPress">Migrating Joomla to 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>
</ol>
</div>
]]></content:encoded>
					
					<wfw:commentRss>https://blog.identitydesign.us/how-to-remove-or-uninstall-plugins-like-phantasm-in-adobe-illustrator/feed/</wfw:commentRss>
			<slash:comments>3</slash:comments>
		
		
			</item>
	</channel>
</rss>
