<?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>How-To - identity design</title>
	<atom:link href="https://blog.identitydesign.us/tag/how-to/feed/" rel="self" type="application/rss+xml" />
	<link>https://blog.identitydesign.us/tag/how-to/</link>
	<description>Web Tips &#38; Free Templates</description>
	<lastBuildDate>Wed, 02 Feb 2022 00:36:57 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.9.4</generator>

<image>
	<url>https://blog.identitydesign.us/wp-content/uploads/2020/08/Screen-Shot-2020-08-08-at-1.08.24-AM-120x120.jpg</url>
	<title>How-To - identity design</title>
	<link>https://blog.identitydesign.us/tag/how-to/</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>Remove Proudly powered by WordPress Theme and Replace with Your Own &#169; Copyright Information</title>
		<link>https://blog.identitydesign.us/remove-proudly-powered-by-wordpress-on-wordpress-twenty-sixteen-theme-replace-copyright/</link>
					<comments>https://blog.identitydesign.us/remove-proudly-powered-by-wordpress-on-wordpress-twenty-sixteen-theme-replace-copyright/#comments</comments>
		
		<dc:creator><![CDATA[djemals]]></dc:creator>
		<pubDate>Tue, 04 Oct 2016 20:32:26 +0000</pubDate>
				<category><![CDATA[How-To]]></category>
		<category><![CDATA[HTML/CSS/PHP/JavaScripts]]></category>
		<category><![CDATA[Website]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[codes]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[html5]]></category>
		<category><![CDATA[website]]></category>
		<category><![CDATA[wordpress]]></category>
		<guid isPermaLink="false">http://blog.identitydesign.us/?p=912</guid>

					<description><![CDATA[<p>WordPress Theme users, let&#8217;s remove &#8220;Proudly powered by WordPress&#8221; from the footer of your website. It&#8217;s pretty simple. A line of CSS would do the job. Remove &#8220;Proudly powered by WordPress&#8221; on Twenty Sixteen, Twenty Seventeen, Twenty Nineteen, Twenty Twenty-One Theme Open Up the CSS Editor: (Go to the Backend page -&#62; Appearance -&#62; Editor) [&#8230;]</p>
<p>The post <a href="https://blog.identitydesign.us/remove-proudly-powered-by-wordpress-on-wordpress-twenty-sixteen-theme-replace-copyright/">Remove Proudly powered by WordPress Theme and Replace with Your Own © Copyright Information</a> first appeared on <a href="https://blog.identitydesign.us">identity design</a>.</p>
<p>The post <a href="https://blog.identitydesign.us/remove-proudly-powered-by-wordpress-on-wordpress-twenty-sixteen-theme-replace-copyright/">Remove Proudly powered by WordPress Theme and Replace with Your Own &copy; Copyright Information</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>WordPress Theme users, let&#8217;s remove &#8220;Proudly powered by WordPress&#8221; from the footer of your website. It&#8217;s pretty simple. A line of CSS would do the job.</p>
<h2>Remove &#8220;Proudly powered by WordPress&#8221; on Twenty Sixteen, Twenty Seventeen, Twenty Nineteen, Twenty Twenty-One Theme</h2>
<p>Open Up the CSS Editor:<br />
(Go to the Backend page -&gt; Appearance -&gt; Editor)</p>
<pre>footer .site-info { 
 display: none !important; 
}
footer.site-footer:after {
 content: "© YOUR WEBSITE NAME";
}</pre>
<p>Replace <code>YOUR WEBSITE NAME</code> as you like. </p>
<pre>footer.site-footer:after {
 content: "© YOUR WEBSITE NAME";
 margin: auto;
}</pre>
<p>If you want to center align the Copyright line, add <code>margin:auto</code> like below:</p>
<!-- Widget Shortcode --><div id="custom_html-2" class="widget_text widget widget_custom_html widget-shortcode area-arbitrary "><div class="textwidget custom-html-widget"><script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-8255226778912403"
     crossorigin="anonymous"></script>
<!-- iiiji_CTA_468 -->
<ins class="adsbygoogle"
     style="display:inline-block;width:468px;height:60px"
     data-ad-client="ca-pub-8255226778912403"
     data-ad-slot="6320733927"></ins>
<script>
     (adsbygoogle = window.adsbygoogle || []).push({});
</script></div></div><!-- /Widget Shortcode -->
<h2 class="mtop80">Remove &#8220;Powered by WordPress&#8221; on Twenty Twenty Theme</h2>
<p>Open Up the CSS Editor:<br />
(Go to the Backend page -&gt; Appearance -&gt; Editor)</p>
<pre>.powered-by-wordpress {
    display: none;
}</pre>
<!-- Widget Shortcode --><div id="custom_html-2" class="widget_text widget widget_custom_html widget-shortcode area-arbitrary "><div class="textwidget custom-html-widget"><script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-8255226778912403"
     crossorigin="anonymous"></script>
<!-- iiiji_CTA_468 -->
<ins class="adsbygoogle"
     style="display:inline-block;width:468px;height:60px"
     data-ad-client="ca-pub-8255226778912403"
     data-ad-slot="6320733927"></ins>
<script>
     (adsbygoogle = window.adsbygoogle || []).push({});
</script></div></div><!-- /Widget Shortcode -->
<h2 class="mtop80">Remove &#8220;Proudly Powered by WordPress&#8221; on Twenty Twenty-Two Theme</h2>
<p>Open Up the CSS Editor:<br />
(Go to the Backend page -&gt; Appearance -&gt; Editor)</p>
<pre>.has-text-align-right {
    display: none;
}</pre>
<p>Now it&#8217;s all good!</p><p>The post <a href="https://blog.identitydesign.us/remove-proudly-powered-by-wordpress-on-wordpress-twenty-sixteen-theme-replace-copyright/">Remove Proudly powered by WordPress Theme and Replace with Your Own © Copyright Information</a> first appeared on <a href="https://blog.identitydesign.us">identity design</a>.</p><p>The post <a href="https://blog.identitydesign.us/remove-proudly-powered-by-wordpress-on-wordpress-twenty-sixteen-theme-replace-copyright/">Remove Proudly powered by WordPress Theme and Replace with Your Own &copy; Copyright Information</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-proudly-powered-by-wordpress-on-wordpress-twenty-sixteen-theme-replace-copyright/feed/</wfw:commentRss>
			<slash:comments>6</slash:comments>
		
		
			</item>
		<item>
		<title>Remove &#8220;Storefront designed by WooThemes&#8221; on Woocommerce Storefront Theme</title>
		<link>https://blog.identitydesign.us/woocommerce-storefront-theme-remove-storefront-woothemes-credits/</link>
					<comments>https://blog.identitydesign.us/woocommerce-storefront-theme-remove-storefront-woothemes-credits/#respond</comments>
		
		<dc:creator><![CDATA[djemals]]></dc:creator>
		<pubDate>Thu, 08 Sep 2016 00:06:22 +0000</pubDate>
				<category><![CDATA[How-To]]></category>
		<category><![CDATA[HTML/CSS/PHP/JavaScripts]]></category>
		<category><![CDATA[Website]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[codes]]></category>
		<category><![CDATA[coding]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[Great-Stuff]]></category>
		<category><![CDATA[html5]]></category>
		<category><![CDATA[website]]></category>
		<category><![CDATA[woocommerce]]></category>
		<category><![CDATA[wordpress]]></category>
		<guid isPermaLink="false">http://blog.identitydesign.us/?p=877</guid>

					<description><![CDATA[<p>Woocommerce offers a well designed free template for everyone called, the Storefront. By adding the CSS codes below, you can remove the credits, &#8220;Storefront designed by WooThemes&#8221; without editing or deleting a line of the core programmings. So instead of deleting anything, you are just hiding the text actually. So it&#8217;s a risk free, easy [&#8230;]</p>
<p>The post <a href="https://blog.identitydesign.us/woocommerce-storefront-theme-remove-storefront-woothemes-credits/">Remove “Storefront designed by WooThemes” on Woocommerce 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/woocommerce-storefront-theme-remove-storefront-woothemes-credits/">Remove &#8220;Storefront designed by WooThemes&#8221; on Woocommerce 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/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/remove-copyright-storefront/" rel="bookmark" title="Remove &#8216;Built with Storefront &#038; WooCommerce&#8217; with CSS lines on WordPress Storefront Theme">Remove &#8216;Built with Storefront &#038; WooCommerce&#8217; with CSS lines on WordPress Storefront Theme</a></li>
<li><a href="https://blog.identitydesign.us/remove-proudly-powered-by-wordpress-on-wordpress-twenty-sixteen-theme-replace-copyright/" rel="bookmark" title="Remove Proudly powered by WordPress Theme and Replace with Your Own &copy; Copyright Information">Remove Proudly powered by WordPress Theme and Replace with Your Own &copy; Copyright Information</a></li>
</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 fetchpriority="high" 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="(max-width: 940px) 100vw, 940px" /></a></p>
<p>Woocommerce offers a well designed free template for everyone called, the <strong>Storefront</strong>. By adding the CSS codes below, you can remove the credits, &#8220;Storefront designed by WooThemes&#8221; without editing or deleting a line of the core programmings. So instead of deleting anything, you are just hiding the text actually. So it&#8217;s a risk free, easy and fast!</p>
<h2>Remove &#8220;Storefront designed by WooThemes&#8221; Credits</h2>
<p>Place the CSS line on the WordPress backend where CSS is located:<br />
(Go to the Backend page -&gt; Appearance -&gt; Editor)</p>
<pre>footer .site-info { 
 display: none !important; 
}
footer .col-full:after { 
 content: "© YOUR COMPANY NAME";
 font-size: 15px;
 color: #777;
 line-height: 140%;
 text-align: center;
 display: block;
 margin: 20px auto;
}</pre>
<p>Now you&#8217;ll see the line, &#8220;Storefront designed by WooThemes&#8221; is gone. Feel free to edit the <code>font-size</code> and <code>color</code> of your own.</p><p>The post <a href="https://blog.identitydesign.us/woocommerce-storefront-theme-remove-storefront-woothemes-credits/">Remove “Storefront designed by WooThemes” on Woocommerce 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/woocommerce-storefront-theme-remove-storefront-woothemes-credits/">Remove &#8220;Storefront designed by WooThemes&#8221; on Woocommerce 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/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/remove-copyright-storefront/" rel="bookmark" title="Remove &#8216;Built with Storefront &#038; WooCommerce&#8217; with CSS lines on WordPress Storefront Theme">Remove &#8216;Built with Storefront &#038; WooCommerce&#8217; with CSS lines on WordPress Storefront Theme</a></li>
<li><a href="https://blog.identitydesign.us/remove-proudly-powered-by-wordpress-on-wordpress-twenty-sixteen-theme-replace-copyright/" rel="bookmark" title="Remove Proudly powered by WordPress Theme and Replace with Your Own &copy; Copyright Information">Remove Proudly powered by WordPress Theme and Replace with Your Own &copy; Copyright Information</a></li>
</ol>
</div>
]]></content:encoded>
					
					<wfw:commentRss>https://blog.identitydesign.us/woocommerce-storefront-theme-remove-storefront-woothemes-credits/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>Remove Product Description and Reviews Tabs in Woocommerce Storefront Theme</title>
		<link>https://blog.identitydesign.us/remove-product-description-and-reviews-tabs-woocommerce-storefront-theme/</link>
					<comments>https://blog.identitydesign.us/remove-product-description-and-reviews-tabs-woocommerce-storefront-theme/#respond</comments>
		
		<dc:creator><![CDATA[djemals]]></dc:creator>
		<pubDate>Thu, 21 Jan 2016 00:02:54 +0000</pubDate>
				<category><![CDATA[How-To]]></category>
		<category><![CDATA[HTML/CSS/PHP/JavaScripts]]></category>
		<category><![CDATA[Website]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[codes]]></category>
		<category><![CDATA[coding]]></category>
		<category><![CDATA[Great-Stuff]]></category>
		<category><![CDATA[website]]></category>
		<category><![CDATA[woocommerce]]></category>
		<category><![CDATA[wordpress]]></category>
		<guid isPermaLink="false">http://blog.identitydesign.us/?p=904</guid>

					<description><![CDATA[<p>Wocommerce offers the tabs: &#8220;Product Description&#8221;, &#8220;Reviews and/or &#8220;Additional Information&#8221; in the product detail page. Let&#8217;s find a way to remove or disable the tabs while you are using in the &#8220;Storefront&#8221; theme. Remove &#8220;Product Description&#8221;, &#8220;Reviews&#8221; and &#8220;Additional Information&#8221; Tabs Go to the backend -&#62; Appearance -&#62; Editor -&#62; Find &#8220;storefront-functions.php&#8221; on the right. [&#8230;]</p>
<p>The post <a href="https://blog.identitydesign.us/remove-product-description-and-reviews-tabs-woocommerce-storefront-theme/">Remove Product Description and Reviews Tabs in Woocommerce 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-product-description-and-reviews-tabs-woocommerce-storefront-theme/">Remove Product Description and Reviews Tabs in Woocommerce 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-copyright-storefront/" rel="bookmark" title="Remove &#8216;Built with Storefront &#038; WooCommerce&#8217; with CSS lines on WordPress Storefront Theme">Remove &#8216;Built with Storefront &#038; WooCommerce&#8217; with CSS lines on WordPress Storefront Theme</a></li>
<li><a href="https://blog.identitydesign.us/remove-proudly-powered-by-wordpress-on-wordpress-twenty-sixteen-theme-replace-copyright/" rel="bookmark" title="Remove Proudly powered by WordPress Theme and Replace with Your Own &copy; Copyright Information">Remove Proudly powered by WordPress Theme and Replace with Your Own &copy; Copyright Information</a></li>
</ol>
</div>
]]></description>
										<content:encoded><![CDATA[<p>Wocommerce offers the tabs: &#8220;Product Description&#8221;, &#8220;Reviews and/or &#8220;Additional Information&#8221; in the product detail page. Let&#8217;s find a way to remove or disable the tabs while you are using in the &#8220;Storefront&#8221; theme.</p>
<h2>Remove &#8220;Product Description&#8221;, &#8220;Reviews&#8221; and &#8220;Additional Information&#8221; Tabs</h2>
<p>Go to the backend -&gt; Appearance -&gt; Editor -&gt; Find &#8220;storefront-functions.php&#8221; on the right. Input below code in the very bottom. &#8220;Update File&#8221; after adding the codes.</p>
<pre>
add_filter( 'woocommerce_product_tabs', 'woo_remove_product_tabs', 98 );

function woo_remove_product_tabs( $tabs ) {

unset( $tabs['description'] ); // Remove the description tab
unset( $tabs['reviews'] ); // Remove the reviews tab
unset( $tabs['additional_information'] ); // Remove the additional information tab

return $tabs;

}</pre>
<p>If you wish to keep one or two of the three tabs, just remove the corresponding line from the codes. Enjoy woocommerce!</p><p>The post <a href="https://blog.identitydesign.us/remove-product-description-and-reviews-tabs-woocommerce-storefront-theme/">Remove Product Description and Reviews Tabs in Woocommerce 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-product-description-and-reviews-tabs-woocommerce-storefront-theme/">Remove Product Description and Reviews Tabs in Woocommerce 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-copyright-storefront/" rel="bookmark" title="Remove &#8216;Built with Storefront &#038; WooCommerce&#8217; with CSS lines on WordPress Storefront Theme">Remove &#8216;Built with Storefront &#038; WooCommerce&#8217; with CSS lines on WordPress Storefront Theme</a></li>
<li><a href="https://blog.identitydesign.us/remove-proudly-powered-by-wordpress-on-wordpress-twenty-sixteen-theme-replace-copyright/" rel="bookmark" title="Remove Proudly powered by WordPress Theme and Replace with Your Own &copy; Copyright Information">Remove Proudly powered by WordPress Theme and Replace with Your Own &copy; Copyright Information</a></li>
</ol>
</div>
]]></content:encoded>
					
					<wfw:commentRss>https://blog.identitydesign.us/remove-product-description-and-reviews-tabs-woocommerce-storefront-theme/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 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="(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 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="(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>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>
		<item>
		<title>A Simple Way to Hide Featured Image inside Post with CSS</title>
		<link>https://blog.identitydesign.us/a-simple-way-to-hide-featured-image-inside-post-with-css/</link>
					<comments>https://blog.identitydesign.us/a-simple-way-to-hide-featured-image-inside-post-with-css/#comments</comments>
		
		<dc:creator><![CDATA[djemals]]></dc:creator>
		<pubDate>Fri, 27 Dec 2013 05:46:14 +0000</pubDate>
				<category><![CDATA[How-To]]></category>
		<category><![CDATA[HTML/CSS/PHP/JavaScripts]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[Animation]]></category>
		<category><![CDATA[coding]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[Great-Stuff]]></category>
		<category><![CDATA[html5]]></category>
		<category><![CDATA[Photoshop]]></category>
		<category><![CDATA[Video]]></category>
		<category><![CDATA[website]]></category>
		<category><![CDATA[wordpress]]></category>
		<guid isPermaLink="false">http://blog.identitydesign.us/?p=181</guid>

					<description><![CDATA[<p>Here&#8217;s a very simple way to hide your featured image inside your post area, and it does NOT affect your actual featured image on your site&#8217;s front-page or the thumbnail image from the list. You are not deleting anything but simply hiding! This post was originally for the theme &#8220;TwentyTwelve&#8221;, however, as many people have [&#8230;]</p>
<p>The post <a href="https://blog.identitydesign.us/a-simple-way-to-hide-featured-image-inside-post-with-css/">A Simple Way to Hide Featured Image inside Post 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/a-simple-way-to-hide-featured-image-inside-post-with-css/">A Simple Way to Hide Featured Image inside Post 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/css-vertical-align-center/" rel="bookmark" title="CSS Vertical Align Center">CSS Vertical Align Center</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>
<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>Here&#8217;s a very simple way to hide your featured image inside your post area, and it does NOT affect your actual featured image on your site&#8217;s front-page or the thumbnail image from the list. You are not deleting anything but simply hiding!</p>
<p>This post was originally for the theme &#8220;TwentyTwelve&#8221;, however, as many people have asked about other recent themes, I have organized the codes for the default WordPress themes from &#8220;Twenty Twelve&#8221; to &#8220;Twenty Sixteen&#8221;.</p>
<h2>For Twenty Twelve</h2>
<p>Copy the code below and paste into your CSS document.</p>
<pre>.attachment-post-thumbnail { display:none; }</pre>

<div class="clear"></div>
<h2>For Twenty Thirteen</h2>
<p>Copy the code below and paste into your CSS document.</p>
<pre>.entry-thumbnail { display:none; }</pre>

<div class="clear"></div>
<h2>For Twenty Fourteen</h2>
<p>Copy the code below and paste into your CSS document.</p>
<pre>
.post-thumbnail { display:none; }
.site-content .hentry.has-post-thumbnail:first-child { margin-top: 48px; }
</pre>
<p>For &#8220;Twenty Fourteen&#8221; theme, the margin of the top header gets weird after hiding the featured image. Adding the second line, <code>margin-top: 48px</code> will fix the issue.</p>

<div class="clear"></div>
<h2>For Twenty Thirteen</h2>
<p>Copy the code below and paste into your CSS document.</p>
<pre>
.post-thumbnail { display:none; }
.hentry.has-post-thumbnail { padding-top: 8.3333%; }
</pre>
<p>For &#8220;Twenty Fourteen&#8221; theme, the margin of the top header gets weird after hiding the featured image. Adding the second line, <code>padding-top: 8.3333%</code> will fix the issue.</p>

<div class="clear"></div>
<h2>For Twenty Sixteen</h2>
<p>Copy the code below and paste into your CSS document.</p>
<pre>.post-thumbnail { display:none; }</pre>
<p>For any questions, please leave a comment. Enjoy blogging!</p><p>The post <a href="https://blog.identitydesign.us/a-simple-way-to-hide-featured-image-inside-post-with-css/">A Simple Way to Hide Featured Image inside Post 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/a-simple-way-to-hide-featured-image-inside-post-with-css/">A Simple Way to Hide Featured Image inside Post 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/css-vertical-align-center/" rel="bookmark" title="CSS Vertical Align Center">CSS Vertical Align Center</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>
<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/a-simple-way-to-hide-featured-image-inside-post-with-css/feed/</wfw:commentRss>
			<slash:comments>44</slash:comments>
		
		
			</item>
		<item>
		<title>Download PSD: Photoshop Hatched Slash Diagonal Pattern</title>
		<link>https://blog.identitydesign.us/psd-hatched-slash-diagonal-pattern/</link>
					<comments>https://blog.identitydesign.us/psd-hatched-slash-diagonal-pattern/#comments</comments>
		
		<dc:creator><![CDATA[djemals]]></dc:creator>
		<pubDate>Mon, 23 Dec 2013 06:18:33 +0000</pubDate>
				<category><![CDATA[Freebies]]></category>
		<category><![CDATA[How-To]]></category>
		<category><![CDATA[Photoshop]]></category>
		<category><![CDATA[Pixels]]></category>
		<category><![CDATA[Resources]]></category>
		<category><![CDATA[Great-Stuff]]></category>
		<category><![CDATA[Resource]]></category>
		<guid isPermaLink="false">http://blog.identitydesign.us/blog/?p=151</guid>

					<description><![CDATA[<p>Hatched/slash pattern makes slick feel to your art work. Here&#8217;s an easy way of doing it in Photoshop. Create a &#8220;New&#8221; canvas (go to &#8220;File&#8221; -&#62; &#8220;New&#8221;). Set 6 pixels on both &#8220;Width&#8221; and &#8220;Height&#8221;. Open &#8220;Layer&#8221; palette (go to &#8220;Window&#8221; -&#62; &#8220;Layer&#8221;). Delete existing background layer so it&#8217;s now &#8220;Transparency&#8221;. Blow the view all [&#8230;]</p>
<p>The post <a href="https://blog.identitydesign.us/psd-hatched-slash-diagonal-pattern/">Download PSD: Photoshop Hatched Slash Diagonal Pattern</a> first appeared on <a href="https://blog.identitydesign.us">identity design</a>.</p>
<p>The post <a href="https://blog.identitydesign.us/psd-hatched-slash-diagonal-pattern/">Download PSD: Photoshop Hatched Slash Diagonal Pattern</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/freebies-new-year-new-you-infographic/" rel="bookmark" title="Freebies: New Year New You Infographic Template (PSD)">Freebies: New Year New You Infographic Template (PSD)</a></li>
<li><a href="https://blog.identitydesign.us/freebies-grunge-poster-template/" rel="bookmark" title="Freebies: The Gloria Revival Grunge Poster Template">Freebies: The Gloria Revival Grunge Poster Template</a></li>
</ol>
</div>
]]></description>
										<content:encoded><![CDATA[<p style="text-align: left;">Hatched/slash pattern makes slick feel to your art work. Here&#8217;s an easy way of doing it in Photoshop.</p>
<ol>
<li>Create a &#8220;New&#8221; canvas (go to &#8220;File&#8221; -&gt; &#8220;New&#8221;). Set 6 pixels on both &#8220;Width&#8221; and &#8220;Height&#8221;.</li>
<li>Open &#8220;Layer&#8221; palette (go to &#8220;Window&#8221; -&gt; &#8220;Layer&#8221;). Delete existing background layer so it&#8217;s now &#8220;Transparency&#8221;.</li>
<li>Blow the view all the way up to 3200% by select Magnifying Glass Icon from the &#8220;Tools&#8221;. Draw a line diagonally with &#8220;Pencil&#8221; tool (Like below).</li>
</ol>
<p style="text-align: left;"><a href="https://blog.identitydesign.us/wp-content/uploads/2013/12/6x6_GreyDots.png"><img loading="lazy" decoding="async" class="alignnone size-full wp-image-155" alt="Dotted Line" src="https://blog.identitydesign.us/wp-content/uploads/2013/12/6x6_GreyDots.png" width="192" height="192" srcset="https://blog.identitydesign.us/wp-content/uploads/2013/12/6x6_GreyDots.png 192w, https://blog.identitydesign.us/wp-content/uploads/2013/12/6x6_GreyDots-150x150.png 150w" sizes="auto, (max-width: 192px) 100vw, 192px" /></a></p>
<p style="text-align: left;">Feel free to customize yourself with making different colors, directions, and even different sizes like 3 x 3 pixel or 2 x 2 pixel. You can also download PSD here:</p>

<p><a class="btn" onclick="_gaq.push(['_trackEvent', 'Pixel', 'PSD_Hatched', 'https://blog.identitydesign.us/wp-content/uploads/2014/09/parallax-smooth-scrolling-website.zip']);" href="https://blog.identitydesign.us/wp-content/uploads/2013/12/PSD_hatch_pattern.zip">Download PSD</a></p>
<h3 style="text-align: left;">Application</h3>
<ol start="4">
<li>Lets continue with what we have, or simply open the PSD above.</li>
<li>Go to &#8220;Edit&#8221; -&gt; &#8220;Define Pattern&#8221; to and name your pattern as you like. Now, we are done with defining the pattern. Let&#8217;s apply the pattern to the image.</li>
<li>Place a background less image by &#8220;File&#8221; -&gt; &#8220;Place&#8221; and select your image. I&#8217;ve placed a chocolate donut png image.</li>
</ol>
<p style="text-align: left;"><a href="https://blog.identitydesign.us/wp-content/uploads/2013/12/bglessdonut.png"><img loading="lazy" decoding="async" class="alignnone size-full wp-image-154" alt="Background Less Donut Image" src="https://blog.identitydesign.us/wp-content/uploads/2013/12/bglessdonut.png" width="161" height="140" /></a></p>
<ol start="7">
<li>Create a new layer (green arrow on right), fill a color as you like (I chose WHITE), and drag to place the layer below the &#8220;donut&#8221; layer.</li>
</ol>
<p style="text-align: left;"><a href="https://blog.identitydesign.us/wp-content/uploads/2013/12/layerstylea740.png"><img loading="lazy" decoding="async" class="alignnone size-full wp-image-156" alt="Layer Style" src="https://blog.identitydesign.us/wp-content/uploads/2013/12/layerstylea740.png" width="690" height="373" srcset="https://blog.identitydesign.us/wp-content/uploads/2013/12/layerstylea740.png 690w, https://blog.identitydesign.us/wp-content/uploads/2013/12/layerstylea740-300x162.png 300w, https://blog.identitydesign.us/wp-content/uploads/2013/12/layerstylea740-624x337.png 624w" sizes="auto, (max-width: 690px) 100vw, 690px" /></a></p>
<ol start="8">
<li>Let&#8217;s add a layer style to the background layer (Mine is &#8220;white bg&#8221;) by click on the &#8220;fx&#8221; button (the yellow arrow) shown above. Then, on the &#8220;Layer Style&#8221; window, click &#8220;Pattern&#8221; button (the red arrow) and choose your Hatched / Slash / Diagonal Pattern you made.</li>
</ol>
<p style="text-align: left;">FINAL WORK:</p>
<p style="text-align: left;"><a href="https://blog.identitydesign.us/wp-content/uploads/2013/12/hatched-donuts.jpg"><img loading="lazy" decoding="async" class="alignnone size-full wp-image-157" alt="Final Hatched Donut Image" src="https://blog.identitydesign.us/wp-content/uploads/2013/12/hatched-donuts.jpg" width="300" height="300" srcset="https://blog.identitydesign.us/wp-content/uploads/2013/12/hatched-donuts.jpg 300w, https://blog.identitydesign.us/wp-content/uploads/2013/12/hatched-donuts-150x150.jpg 150w" sizes="auto, (max-width: 300px) 100vw, 300px" /></a></p><p>The post <a href="https://blog.identitydesign.us/psd-hatched-slash-diagonal-pattern/">Download PSD: Photoshop Hatched Slash Diagonal Pattern</a> first appeared on <a href="https://blog.identitydesign.us">identity design</a>.</p><p>The post <a href="https://blog.identitydesign.us/psd-hatched-slash-diagonal-pattern/">Download PSD: Photoshop Hatched Slash Diagonal Pattern</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/freebies-new-year-new-you-infographic/" rel="bookmark" title="Freebies: New Year New You Infographic Template (PSD)">Freebies: New Year New You Infographic Template (PSD)</a></li>
<li><a href="https://blog.identitydesign.us/freebies-grunge-poster-template/" rel="bookmark" title="Freebies: The Gloria Revival Grunge Poster Template">Freebies: The Gloria Revival Grunge Poster Template</a></li>
</ol>
</div>
]]></content:encoded>
					
					<wfw:commentRss>https://blog.identitydesign.us/psd-hatched-slash-diagonal-pattern/feed/</wfw:commentRss>
			<slash:comments>5</slash:comments>
		
		
			</item>
		<item>
		<title>Google, Yahoo and All Major Search Engine Tips</title>
		<link>https://blog.identitydesign.us/google-yahoo-and-all-major-search-engine-tips/</link>
					<comments>https://blog.identitydesign.us/google-yahoo-and-all-major-search-engine-tips/#comments</comments>
		
		<dc:creator><![CDATA[djemals]]></dc:creator>
		<pubDate>Sun, 22 Dec 2013 06:24:58 +0000</pubDate>
				<category><![CDATA[Google and SEO]]></category>
		<category><![CDATA[How-To]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[Great-Stuff]]></category>
		<guid isPermaLink="false">http://blog.identitydesign.us/blog/?p=134</guid>

					<description><![CDATA[<p>Inputting &#8220;KEYWORDS&#8221; into the search engine box would be your first attempt while finding what you are looking for in the world wide web. There are a few tips that make your searching even faster adding some indicated codes to your search input box: [&#8220;&#8221;] DOUBLE QUOTATION Finding Exact Word with Order: wrap double quotation [&#8230;]</p>
<p>The post <a href="https://blog.identitydesign.us/google-yahoo-and-all-major-search-engine-tips/">Google, Yahoo and All Major Search Engine Tips</a> first appeared on <a href="https://blog.identitydesign.us">identity design</a>.</p>
<p>The post <a href="https://blog.identitydesign.us/google-yahoo-and-all-major-search-engine-tips/">Google, Yahoo and All Major Search Engine Tips</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/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/migrating-joomla-to-wordpress/" rel="bookmark" title="Migrating Joomla to WordPress">Migrating Joomla to WordPress</a></li>
</ol>
</div>
]]></description>
										<content:encoded><![CDATA[<p>Inputting &#8220;KEYWORDS&#8221; into the search engine box would be your first attempt while finding what you are looking for in the world wide web. There are a few tips that make your searching even faster adding some indicated codes to your search input box:</p>
<h2>[&#8220;&#8221;] DOUBLE QUOTATION</h2>
<p>Finding Exact Word with Order: wrap double quotation marks (&#8220;&#8221;) to your search words. In example, &#8220;cool free photoshop brushes&#8221; would only find cool free photoshop brushes NOT best free photoshop brushes or awesome free photoshop brushes.</p>
<h2>[-] Negative/Minus CODE</h2>
<p>Words You Want to Exclude: Add a negative/minus code immediately before the world you want to exclude without space. In example, abstract background image -jpg would find you all abstract related background images but not in jpg extension. (JPEG will shown in the search results)</p>
<h2>[filetype:]</h2>
<p>A Specific File Type Search: Input &#8220;filetype:(with colon)&#8221; in front of the file type name such as &#8220;jpg&#8221; or &#8220;pdf&#8221; to search that exact file type with the keywords. In example, &#8220;filetype:pdf design&#8221; would find you all PDF files that related to the word DESIGN.</p>
<h2>[site:]</h2>
<p>To Find Within a Site: Input &#8220;site:(with colon)&#8221; before any website such as &#8220;iiiji.com&#8221; follow by the keywords would let you find the subject within the website you&#8217;ve indicated. In example, &#8220;site:iiiji.com tutorial&#8221; would find articles about TUTORIAL within the site iiiji.com.</p>
<h2>[*]</h2>
<p>A Placeholder: The code &#8220;*&#8221; in between keywords be treated as a placeholder, so &#8220;Freelance * Design&#8221; will find you Freelance Graphic Design, , Freelance UI/UX Design, and so on.</p>
<h2>[OR]</h2>
<p>To Find Either One of Several Words: If you want to search for something either one of its kinds such as &#8220;design award 2010 OR 2011&#8221; will get you a result within these two years of resources. (OR must be ALL-CAP)</p><p>The post <a href="https://blog.identitydesign.us/google-yahoo-and-all-major-search-engine-tips/">Google, Yahoo and All Major Search Engine Tips</a> first appeared on <a href="https://blog.identitydesign.us">identity design</a>.</p><p>The post <a href="https://blog.identitydesign.us/google-yahoo-and-all-major-search-engine-tips/">Google, Yahoo and All Major Search Engine Tips</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/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/migrating-joomla-to-wordpress/" rel="bookmark" title="Migrating Joomla to WordPress">Migrating Joomla to WordPress</a></li>
</ol>
</div>
]]></content:encoded>
					
					<wfw:commentRss>https://blog.identitydesign.us/google-yahoo-and-all-major-search-engine-tips/feed/</wfw:commentRss>
			<slash:comments>22</slash:comments>
		
		
			</item>
		<item>
		<title>Migrating Joomla to WordPress</title>
		<link>https://blog.identitydesign.us/migrating-joomla-to-wordpress/</link>
					<comments>https://blog.identitydesign.us/migrating-joomla-to-wordpress/#comments</comments>
		
		<dc:creator><![CDATA[djemals]]></dc:creator>
		<pubDate>Tue, 10 Dec 2013 02:08:50 +0000</pubDate>
				<category><![CDATA[How-To]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[ActionScript]]></category>
		<category><![CDATA[Animation]]></category>
		<category><![CDATA[Great-Stuff]]></category>
		<category><![CDATA[Joomla]]></category>
		<category><![CDATA[Photoshop]]></category>
		<guid isPermaLink="false">http://blog.identitydesign.us/blog/?p=87</guid>

					<description><![CDATA[<p>Here&#8217;s the a way to migrate Joomla users to WordPress users. I&#8217;ve used Joomla for some years and I still thinking it&#8217;s a great Content Management System. But however, I&#8217;m so much liking using WordPress for my site building I definitely needed to bring users from Joomla to WordPress. If you have hundreds of articles [&#8230;]</p>
<p>The post <a href="https://blog.identitydesign.us/migrating-joomla-to-wordpress/">Migrating Joomla to WordPress</a> first appeared on <a href="https://blog.identitydesign.us">identity design</a>.</p>
<p>The post <a href="https://blog.identitydesign.us/migrating-joomla-to-wordpress/">Migrating Joomla to 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/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/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/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>
</ol>
</div>
]]></description>
										<content:encoded><![CDATA[<p>Here&#8217;s the a way to migrate Joomla users to WordPress users. I&#8217;ve used Joomla for some years and I still thinking it&#8217;s a great Content Management System. But however, I&#8217;m so much liking using WordPress for my site building I definitely needed to bring users from Joomla to WordPress. If you have hundreds of articles and migrating one from another it&#8217;s pain but still possible and manually doable, but when migrating users data, it just can&#8217;t.</p>
<p>I&#8217;ve tried to follow other tutorials, but for some reason it didn&#8217;t work out for me. So I&#8217;ve done some other testings and finally it worked out! Now, let me introduce to how to migrate Joomla users to WordPress users. The versions I&#8217;ve used is Joomla 1.5 to WordPress 3. Here&#8217;s how as simple as:</p>
<h2>1. On your Joomla site, export users to a CSV file.</h2>
<p>To export Joomla users data, use &#8216;ARRA User Export Import&#8217; plugin.</p>
<ul>
<li>Install plugin and go to the plugin page (Admin &#8211; Components &#8211; ARRA User Export Import)<br />
<a href="https://blog.identitydesign.us/wp-content/uploads/2013/12/Screen-Shot-2013-12-18-at-8.07.02-AM.png"><img loading="lazy" decoding="async" class="alignnone size-full wp-image-100  border-img" alt="Joomla Components" src="https://blog.identitydesign.us/wp-content/uploads/2013/12/Screen-Shot-2013-12-18-at-8.07.02-AM.png" width="483" height="237" srcset="https://blog.identitydesign.us/wp-content/uploads/2013/12/Screen-Shot-2013-12-18-at-8.07.02-AM.png 483w, https://blog.identitydesign.us/wp-content/uploads/2013/12/Screen-Shot-2013-12-18-at-8.07.02-AM-300x147.png 300w" sizes="auto, (max-width: 483px) 100vw, 483px" /></a></li>
<li>Click on &#8216;User Export&#8217;, mark the following check boxes, and &#8220;Export&#8221;!<br />
<a href="https://blog.identitydesign.us/wp-content/uploads/2013/12/Screen-Shot-2013-12-18-at-8.12.52-AM.png"><img loading="lazy" decoding="async" class="alignnone size-full wp-image-102" alt="ARRA User Export Import" src="https://blog.identitydesign.us/wp-content/uploads/2013/12/Screen-Shot-2013-12-18-at-8.12.52-AM.png" width="1241" height="689" srcset="https://blog.identitydesign.us/wp-content/uploads/2013/12/Screen-Shot-2013-12-18-at-8.12.52-AM.png 1241w, https://blog.identitydesign.us/wp-content/uploads/2013/12/Screen-Shot-2013-12-18-at-8.12.52-AM-300x166.png 300w, https://blog.identitydesign.us/wp-content/uploads/2013/12/Screen-Shot-2013-12-18-at-8.12.52-AM-1024x568.png 1024w, https://blog.identitydesign.us/wp-content/uploads/2013/12/Screen-Shot-2013-12-18-at-8.12.52-AM-624x346.png 624w" sizes="auto, (max-width: 1241px) 100vw, 1241px" /></a></li>
<li>You&#8217;ll get a &#8220;CSV&#8221; file.</li>
</ul>

<h2>2. Tweak the CSV file before import to your WordPress site.</h2>
<ul>
<li>You can open the file with Dreamweaver, Microsoft Excel, or one of the text editors you already have.</li>
<li>Just need to change very top row.<br />
<a href="https://blog.identitydesign.us/wp-content/uploads/2013/12/Screen-shot-2013-12-18-at-9.32.27-AM.png"><img loading="lazy" decoding="async" class="alignnone size-full wp-image-109" alt="Modify from Text Editor" src="https://blog.identitydesign.us/wp-content/uploads/2013/12/Screen-shot-2013-12-18-at-9.32.27-AM.png" width="1026" height="192" srcset="https://blog.identitydesign.us/wp-content/uploads/2013/12/Screen-shot-2013-12-18-at-9.32.27-AM.png 1026w, https://blog.identitydesign.us/wp-content/uploads/2013/12/Screen-shot-2013-12-18-at-9.32.27-AM-300x56.png 300w, https://blog.identitydesign.us/wp-content/uploads/2013/12/Screen-shot-2013-12-18-at-9.32.27-AM-1024x191.png 1024w, https://blog.identitydesign.us/wp-content/uploads/2013/12/Screen-shot-2013-12-18-at-9.32.27-AM-624x116.png 624w" sizes="auto, (max-width: 1026px) 100vw, 1026px" /></a>Edit text as the following table (Top to Bottom) and save.</p>
<table class="xtable" cellpadding="0" cellspacing="0" border="1">
<tr>
<td>first name</td>
<td>last name</td>
<td>username</td>
<td>email</td>
<td>password</td>
<td>usertype</td>
</tr>
<tr>
<td>first_name</td>
<td>last_name</td>
<td>user_login</td>
<td>user_email</td>
<td>joomlapass</td>
<td>role</td>
</tr>
</table>
<p>*Sometimes Microsoft Excel won&#8217;t save it right. I recommend Dreamweaver.</li>
</ul>
<h2>3. Import the CSV file to your WordPress site.</h2>
<ul>
<li>To install plugin, on your wordpress site, go to Admin &#8211; Plugins &#8211; Add new.<br />
<a href="https://blog.identitydesign.us/wp-content/uploads/2013/12/Screen-shot-2013-12-18-at-9.27.56-AM.png"><img loading="lazy" decoding="async" class="alignnone size-full wp-image-103" alt="Wordpress Plugin" src="https://blog.identitydesign.us/wp-content/uploads/2013/12/Screen-shot-2013-12-18-at-9.27.56-AM.png" width="356" height="164" srcset="https://blog.identitydesign.us/wp-content/uploads/2013/12/Screen-shot-2013-12-18-at-9.27.56-AM.png 356w, https://blog.identitydesign.us/wp-content/uploads/2013/12/Screen-shot-2013-12-18-at-9.27.56-AM-300x138.png 300w" sizes="auto, (max-width: 356px) 100vw, 356px" /></a></li>
<li>Search for &#8216;Import Users from CSV&#8217;,<br />
<a href="https://blog.identitydesign.us/wp-content/uploads/2013/12/Screen-shot-2013-12-18-at-9.28.37-AM.png"><img loading="lazy" decoding="async" class="alignnone size-full wp-image-104" alt="Import Users from CSV" src="https://blog.identitydesign.us/wp-content/uploads/2013/12/Screen-shot-2013-12-18-at-9.28.37-AM.png" width="367" height="137" srcset="https://blog.identitydesign.us/wp-content/uploads/2013/12/Screen-shot-2013-12-18-at-9.28.37-AM.png 367w, https://blog.identitydesign.us/wp-content/uploads/2013/12/Screen-shot-2013-12-18-at-9.28.37-AM-300x111.png 300w" sizes="auto, (max-width: 367px) 100vw, 367px" /></a><br />
&#8216;Install Now&#8217;, and &#8216;Activate Plugin&#8217;.<br />
<a href="https://blog.identitydesign.us/wp-content/uploads/2013/12/Screen-shot-2013-12-18-at-9.29.16-AM.png"><img loading="lazy" decoding="async" class="alignnone size-full wp-image-105" alt="Activate Plugin" src="https://blog.identitydesign.us/wp-content/uploads/2013/12/Screen-shot-2013-12-18-at-9.29.16-AM.png" width="231" height="139" /></a></li>
<li>Go to &#8216;Users&#8217; &#8211; &#8216;Import from CSV&#8217;<br />
<a href="https://blog.identitydesign.us/wp-content/uploads/2013/12/Screen-shot-2013-12-18-at-9.29.38-AM.png"><img loading="lazy" decoding="async" class="alignnone size-full wp-image-106" alt="Import From CSV" src="https://blog.identitydesign.us/wp-content/uploads/2013/12/Screen-shot-2013-12-18-at-9.29.38-AM.png" width="348" height="156" srcset="https://blog.identitydesign.us/wp-content/uploads/2013/12/Screen-shot-2013-12-18-at-9.29.38-AM.png 348w, https://blog.identitydesign.us/wp-content/uploads/2013/12/Screen-shot-2013-12-18-at-9.29.38-AM-300x134.png 300w" sizes="auto, (max-width: 348px) 100vw, 348px" /></a></li>
<li>Drag your updated &#8216;.CSV&#8217; file to the &#8216;Choose File&#8217; filed, &#8220;Import&#8221;!<br />
<a href="https://blog.identitydesign.us/wp-content/uploads/2013/12/Screen-shot-2013-12-18-at-9.30.19-AM.png"><img loading="lazy" decoding="async" class="alignnone size-full wp-image-107" alt="Import users from a CSV file" src="https://blog.identitydesign.us/wp-content/uploads/2013/12/Screen-shot-2013-12-18-at-9.30.19-AM.png" width="541" height="274" srcset="https://blog.identitydesign.us/wp-content/uploads/2013/12/Screen-shot-2013-12-18-at-9.30.19-AM.png 541w, https://blog.identitydesign.us/wp-content/uploads/2013/12/Screen-shot-2013-12-18-at-9.30.19-AM-300x151.png 300w" sizes="auto, (max-width: 541px) 100vw, 541px" /></a></li>
<li>Check your &#8216;Users&#8217; &#8211; &#8216;All Users&#8221; page to see everything looks right!<br />
<a href="https://blog.identitydesign.us/wp-content/uploads/2013/12/Screen-shot-2013-12-18-at-9.37.11-AM.png"><img loading="lazy" decoding="async" class="alignnone size-full wp-image-108" alt="Check Users page" src="https://blog.identitydesign.us/wp-content/uploads/2013/12/Screen-shot-2013-12-18-at-9.37.11-AM.png" width="1061" height="466" srcset="https://blog.identitydesign.us/wp-content/uploads/2013/12/Screen-shot-2013-12-18-at-9.37.11-AM.png 1061w, https://blog.identitydesign.us/wp-content/uploads/2013/12/Screen-shot-2013-12-18-at-9.37.11-AM-300x131.png 300w, https://blog.identitydesign.us/wp-content/uploads/2013/12/Screen-shot-2013-12-18-at-9.37.11-AM-1024x449.png 1024w, https://blog.identitydesign.us/wp-content/uploads/2013/12/Screen-shot-2013-12-18-at-9.37.11-AM-624x274.png 624w" sizes="auto, (max-width: 1061px) 100vw, 1061px" /></a></li>
</ul><p>The post <a href="https://blog.identitydesign.us/migrating-joomla-to-wordpress/">Migrating Joomla to WordPress</a> first appeared on <a href="https://blog.identitydesign.us">identity design</a>.</p><p>The post <a href="https://blog.identitydesign.us/migrating-joomla-to-wordpress/">Migrating Joomla to 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/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/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/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>
</ol>
</div>
]]></content:encoded>
					
					<wfw:commentRss>https://blog.identitydesign.us/migrating-joomla-to-wordpress/feed/</wfw:commentRss>
			<slash:comments>4</slash:comments>
		
		
			</item>
	</channel>
</rss>
