<?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>Video - identity design</title>
	<atom:link href="https://blog.identitydesign.us/tag/video/feed/" rel="self" type="application/rss+xml" />
	<link>https://blog.identitydesign.us/tag/video/</link>
	<description>Web Tips &#38; Free Templates</description>
	<lastBuildDate>Thu, 07 Jan 2016 18:58: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>Video - identity design</title>
	<link>https://blog.identitydesign.us/tag/video/</link>
	<width>32</width>
	<height>32</height>
</image> 
	<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>
