<?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>wordpress - identity design</title>
	<atom:link href="https://blog.identitydesign.us/tag/wordpress-2/feed/" rel="self" type="application/rss+xml" />
	<link>https://blog.identitydesign.us/tag/wordpress-2/</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>wordpress - identity design</title>
	<link>https://blog.identitydesign.us/tag/wordpress-2/</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>Make Clickable Link with JavaScript instead of HTML Anchor</title>
		<link>https://blog.identitydesign.us/make-clickable-link-javascript-instead-html-anchor/</link>
					<comments>https://blog.identitydesign.us/make-clickable-link-javascript-instead-html-anchor/#comments</comments>
		
		<dc:creator><![CDATA[djemals]]></dc:creator>
		<pubDate>Tue, 23 Aug 2016 00:08:29 +0000</pubDate>
				<category><![CDATA[How-To]]></category>
		<category><![CDATA[HTML/CSS/PHP/JavaScripts]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Website]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[codes]]></category>
		<category><![CDATA[coding]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[website]]></category>
		<category><![CDATA[wordpress]]></category>
		<guid isPermaLink="false">http://blog.identitydesign.us/?p=871</guid>

					<description><![CDATA[<p>Sometimes you just can&#8217;t edit the HTML but still need to make the div clickable. Here&#8217;s how with using JavaScript. *Jquery needs to be installed. &#60;script&#62;  $('.YOUR-CLASS-NAME').each(function() { var link = $(this).html(); $(this).contents().wrap('&#60;a href="YOUR-URL-LINK"&#62;&#60;/a&#62;'); }); &#60;/script&#62; You need to replace .YOUR-CLASS-NAME with your div&#8217;s class and replace "YOUR-URL-LINK" with your destination link. Pretty simple, heh?</p>
<p>The post <a href="https://blog.identitydesign.us/make-clickable-link-javascript-instead-html-anchor/">Make Clickable Link with JavaScript instead of HTML Anchor</a> first appeared on <a href="https://blog.identitydesign.us">identity design</a>.</p>
<p>The post <a href="https://blog.identitydesign.us/make-clickable-link-javascript-instead-html-anchor/">Make Clickable Link with JavaScript instead of HTML Anchor</a> appeared first on <a href="https://blog.identitydesign.us">identity design</a>.</p>
<div 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/simple-javascript-redirect-code/" rel="bookmark" title="Simple JavaScript Redirect Code for HTML">Simple JavaScript Redirect Code for HTML</a></li>
<li><a href="https://blog.identitydesign.us/force-the-anchor-tag-not-clickable-with-css/" rel="bookmark" title="Force an Anchor Tag Not Clickable with CSS">Force an Anchor Tag Not Clickable with CSS</a></li>
</ol>
</div>
]]></description>
										<content:encoded><![CDATA[<p>Sometimes you just can&#8217;t edit the HTML but still need to make the <code>div</code> clickable. Here&#8217;s how with using JavaScript. *Jquery needs to be installed.</p>
<pre>&lt;script&gt; 
$('.YOUR-CLASS-NAME').each(function() {
var link = $(this).html();
$(this).contents().wrap('&lt;a href="YOUR-URL-LINK"&gt;&lt;/a&gt;');
});
&lt;/script&gt;</pre>
<p>You need to replace <code>.YOUR-CLASS-NAME</code> with your div&#8217;s class and replace <code>"YOUR-URL-LINK"</code> with your destination link. Pretty simple, heh?</p><p>The post <a href="https://blog.identitydesign.us/make-clickable-link-javascript-instead-html-anchor/">Make Clickable Link with JavaScript instead of HTML Anchor</a> first appeared on <a href="https://blog.identitydesign.us">identity design</a>.</p><p>The post <a href="https://blog.identitydesign.us/make-clickable-link-javascript-instead-html-anchor/">Make Clickable Link with JavaScript instead of HTML Anchor</a> appeared first on <a href="https://blog.identitydesign.us">identity design</a>.</p>
<div 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/simple-javascript-redirect-code/" rel="bookmark" title="Simple JavaScript Redirect Code for HTML">Simple JavaScript Redirect Code for HTML</a></li>
<li><a href="https://blog.identitydesign.us/force-the-anchor-tag-not-clickable-with-css/" rel="bookmark" title="Force an Anchor Tag Not Clickable with CSS">Force an Anchor Tag Not Clickable with CSS</a></li>
</ol>
</div>
]]></content:encoded>
					
					<wfw:commentRss>https://blog.identitydesign.us/make-clickable-link-javascript-instead-html-anchor/feed/</wfw:commentRss>
			<slash:comments>1</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>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>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>WordPress Appearing Strange Weird Characters / Codes</title>
		<link>https://blog.identitydesign.us/wordpress-appearing-weird-characterscode/</link>
					<comments>https://blog.identitydesign.us/wordpress-appearing-weird-characterscode/#respond</comments>
		
		<dc:creator><![CDATA[djemals]]></dc:creator>
		<pubDate>Thu, 12 Jun 2014 22:22:57 +0000</pubDate>
				<category><![CDATA[How-To]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[characters]]></category>
		<category><![CDATA[codes]]></category>
		<category><![CDATA[strange]]></category>
		<category><![CDATA[website]]></category>
		<category><![CDATA[wordpress]]></category>
		<guid isPermaLink="false">http://blog.identitydesign.us/?p=348</guid>

					<description><![CDATA[<p>This was pretty shocking moments when seeing the weird strange codes on my WordPress website. I was looking all over to resolve the issue and it worked for me. This could has happened because you have upload your plugin directly through FTP and didn&#8217;t go through the backend and install it proper way. Which I [&#8230;]</p>
<p>The post <a href="https://blog.identitydesign.us/wordpress-appearing-weird-characterscode/">WordPress Appearing Strange Weird Characters / Codes</a> first appeared on <a href="https://blog.identitydesign.us">identity design</a>.</p>
<p>The post <a href="https://blog.identitydesign.us/wordpress-appearing-weird-characterscode/">WordPress Appearing Strange Weird Characters / Codes</a> appeared first on <a href="https://blog.identitydesign.us">identity design</a>.</p>
<div 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/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>
</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 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>This was pretty shocking moments when seeing the weird strange codes on my WordPress website. I was looking all over to resolve the issue and it worked for me. This could has happened because you have upload your plugin directly through FTP and didn&#8217;t go through the backend and install it proper way.</p>
<p>Which I did to make all this mess. I uploaded my files directly through FTP. </p>
<p><a href="https://blog.identitydesign.us/wp-content/uploads/2014/05/weirdcode.jpg"><img loading="lazy" decoding="async" src="https://blog.identitydesign.us/wp-content/uploads/2014/05/weirdcode.jpg" alt="weirdcodes" width="1211" height="672" class="alignnone size-full wp-image-349" srcset="https://blog.identitydesign.us/wp-content/uploads/2014/05/weirdcode.jpg 1211w, https://blog.identitydesign.us/wp-content/uploads/2014/05/weirdcode-300x166.jpg 300w, https://blog.identitydesign.us/wp-content/uploads/2014/05/weirdcode-1024x568.jpg 1024w, https://blog.identitydesign.us/wp-content/uploads/2014/05/weirdcode-624x346.jpg 624w" sizes="auto, (max-width: 1211px) 100vw, 1211px" /></a></p>
<p>I had back ups files, but these weird strange characters were showing up on top of every pages I go even I replaced it with my backed up files. </p>

<p>If you see the similar things showing, just de-activate the plugin that causing the issue, or you can delete the plugin folder directly from your FTP. And here&#8217;s what you should do next, re-install the plugin through the WordPress backend (admin) panel. It worked like a charm.</p>
<p>You might still see after, but don&#8217;t go crazy. There is a good chance your browser&#8217;s cache might need to be refreshed. Hit &#8220;Reload&#8221; the browser or Shift + &#8220;Reload&#8221; and it should work fine.</p><p>The post <a href="https://blog.identitydesign.us/wordpress-appearing-weird-characterscode/">WordPress Appearing Strange Weird Characters / Codes</a> first appeared on <a href="https://blog.identitydesign.us">identity design</a>.</p><p>The post <a href="https://blog.identitydesign.us/wordpress-appearing-weird-characterscode/">WordPress Appearing Strange Weird Characters / Codes</a> appeared first on <a href="https://blog.identitydesign.us">identity design</a>.</p>
<div 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/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>
</ol>
</div>
]]></content:encoded>
					
					<wfw:commentRss>https://blog.identitydesign.us/wordpress-appearing-weird-characterscode/feed/</wfw:commentRss>
			<slash:comments>0</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>
	</channel>
</rss>
