<?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>codes - identity design</title>
	<atom:link href="https://blog.identitydesign.us/tag/codes/feed/" rel="self" type="application/rss+xml" />
	<link>https://blog.identitydesign.us/tag/codes/</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>codes - identity design</title>
	<link>https://blog.identitydesign.us/tag/codes/</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>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>Freebies: Christmas Responsive Email Template for Business (HTML/CSS)</title>
		<link>https://blog.identitydesign.us/freebies-christmas-responsive-email-template-business-htmlcss/</link>
					<comments>https://blog.identitydesign.us/freebies-christmas-responsive-email-template-business-htmlcss/#respond</comments>
		
		<dc:creator><![CDATA[djemals]]></dc:creator>
		<pubDate>Sat, 28 Nov 2015 08:01:39 +0000</pubDate>
				<category><![CDATA[Freebies]]></category>
		<category><![CDATA[HTML/CSS/PHP/JavaScripts]]></category>
		<category><![CDATA[Photoshop]]></category>
		<category><![CDATA[Resources]]></category>
		<category><![CDATA[Website]]></category>
		<category><![CDATA[codes]]></category>
		<category><![CDATA[coding]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[Download]]></category>
		<category><![CDATA[email]]></category>
		<category><![CDATA[freebies]]></category>
		<category><![CDATA[Great-Stuff]]></category>
		<category><![CDATA[Resource]]></category>
		<category><![CDATA[website]]></category>
		<guid isPermaLink="false">http://blog.identitydesign.us/?p=711</guid>

					<description><![CDATA[<p>Christmas Promotional Email Template (HTML/CSS) by Identity Design was designed in Responsive HTML and CSS. The main banner and the Call-To-Action button are compressed in PSD so it&#8217;s fully customizable. This Responsive HTML/CSS Email template with PSD is available for a free download. Terms All iiiji.com freebies can be used for both personal and commercial [&#8230;]</p>
<p>The post <a href="https://blog.identitydesign.us/freebies-christmas-responsive-email-template-business-htmlcss/">Freebies: Christmas Responsive Email Template for Business (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/freebies-christmas-responsive-email-template-business-htmlcss/">Freebies: Christmas Responsive Email Template for Business (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/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-foodie-website-design-mockup-template/" rel="bookmark" title="Freebies: Foodie Website Mock Up Template (PSD)">Freebies: Foodie Website Mock Up 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>
</ol>
</div>
]]></description>
										<content:encoded><![CDATA[<p>Christmas Promotional Email Template (HTML/CSS) by <a href="http://identitydesign.us/" target="_blank">Identity Design</a> was designed in Responsive HTML and CSS. The main banner and the Call-To-Action button are compressed in PSD so it&#8217;s fully customizable. This Responsive HTML/CSS Email template with PSD is available for a free download. </p>
<p><a href="https://blog.identitydesign.us/wp-content/uploads/2015/11/Christmas-email.jpg"><img decoding="async" src="https://blog.identitydesign.us/wp-content/uploads/2015/11/Christmas-email.jpg" alt="Christmas Responsive Email Template" width="628" height="1056" class="alignnone size-full wp-image-712" srcset="https://blog.identitydesign.us/wp-content/uploads/2015/11/Christmas-email.jpg 628w, https://blog.identitydesign.us/wp-content/uploads/2015/11/Christmas-email-178x300.jpg 178w, https://blog.identitydesign.us/wp-content/uploads/2015/11/Christmas-email-624x1049.jpg 624w" sizes="(max-width: 628px) 100vw, 628px" /></a></p>
<h5>Terms</h5>
<ul>
<li>All iiiji.com freebies can be used for both <strong>personal</strong> and <strong>commercial use</strong>.</li>
<li>You may not redistribute or resell iiiji.com freebies in any shape or form.</li>
</ul>

<div class="btn-group"><a class="btn" onclick="_gaq.push(['_trackEvent', 'Freebies', 'ChristmasEmailTemp', 'https://blog.identitydesign.us/wp-content/uploads/2015/11/Christmas_Email_Template_Responsive.zip']);" href="https://blog.identitydesign.us/wp-content/uploads/2015/11/Christmas_Email_Template_Responsive.zip">Download</a></div><p>The post <a href="https://blog.identitydesign.us/freebies-christmas-responsive-email-template-business-htmlcss/">Freebies: Christmas Responsive Email Template for Business (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/freebies-christmas-responsive-email-template-business-htmlcss/">Freebies: Christmas Responsive Email Template for Business (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/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-foodie-website-design-mockup-template/" rel="bookmark" title="Freebies: Foodie Website Mock Up Template (PSD)">Freebies: Foodie Website Mock Up 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>
</ol>
</div>
]]></content:encoded>
					
					<wfw:commentRss>https://blog.identitydesign.us/freebies-christmas-responsive-email-template-business-htmlcss/feed/</wfw:commentRss>
			<slash:comments>0</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 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>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>
	</channel>
</rss>
