<?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>@media screen &#8211; Sibeesh Passion</title>
	<atom:link href="https://www.sibeeshpassion.com/tag/media-screen/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.sibeeshpassion.com</link>
	<description>My passion towards life</description>
	<lastBuildDate>Fri, 17 Jul 2015 12:27:26 +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>/wp-content/uploads/2017/04/Sibeesh_Passion_Logo_Small.png</url>
	<title>@media screen &#8211; Sibeesh Passion</title>
	<link>https://www.sibeeshpassion.com</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>How to hide a DIV when the website view in Mobile</title>
		<link>https://www.sibeeshpassion.com/how-to-hide-a-div-when-the-website-view-in-mobile/</link>
					<comments>https://www.sibeeshpassion.com/how-to-hide-a-div-when-the-website-view-in-mobile/#disqus_thread</comments>
		
		<dc:creator><![CDATA[SibeeshVenu]]></dc:creator>
		<pubDate>Mon, 01 Jun 2015 13:20:02 +0000</pubDate>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[CSS3]]></category>
		<category><![CDATA[Mobile]]></category>
		<category><![CDATA[@media]]></category>
		<category><![CDATA[@media only screen]]></category>
		<category><![CDATA[@media screen]]></category>
		<category><![CDATA[Mobile CSS]]></category>
		<guid isPermaLink="false">http://sibeecst_passion.com/?p=4141</guid>

					<description><![CDATA[Introduction Hi All, Hope you are fine. Today we will learn how we can hide a particular DIV element when the site is viewed in Mobile. I hope you will like this. Background For the past few days I was working in my personal website. Suddenly I found out an issue that my site&#8217;s footer is bothering when the same is viewed in mobile. So I started working on this issue and I could resolve it. So here I am going to share the fix you need to do. Using the code Previously whenever I view my website in mobile, [&#8230;]]]></description>
										<content:encoded><![CDATA[<p><strong>Introduction</strong></p>
<p>Hi All, Hope you are fine. Today we will learn how we can hide a particular DIV element when the site is viewed in Mobile. I hope you will like this.</p>
<p><strong>Background</strong></p>
<p>For the past few days I was working in my personal website. Suddenly I found out an issue that my site&#8217;s footer is bothering when the same is viewed in mobile. So I started working on this issue and I could resolve it. So here I am going to share the fix you need to do.</p>
<p><strong>Using the code</strong></p>
<p>Previously whenever I view my website in mobile, I got a view as shown in the below image, Which makes my site&#8217;s reputation go down. And as you all know now a days we are seeing everything in mobile. So it is must that we make our site looks better in mobiles also. What I am doing is whenever a user view my site in mobile, I will just hide my footer div which contains social plugins. </p>
<p><img decoding="async" src="http://www.c-sharpcorner.com/UploadFile/65794e/ho-to-hide-a-div-when-the-website-view-in-mobile/Images/hide1.PNG" alt="" /></p>
<p>Here I will share you the CSS you need to implement.<br />
[css]<br />
@media only screen and (max-width: 480px) {<br />
body {<br />
max-width: 480px;<br />
}<br />
.myfootershare  {<br />
display: none<br />
}<br />
}<br />
[/css]</p>
<p>What we do in the above CSS is, we are checking the width of the screen by using the @media query in CSS.<br />
[css]<br />
@media only screen and (max-width: 480px)<br />
[/css]</p>
<p>So when the scree size is below 480 px, we will just hide the element  (with class name myfootershare).<br />
Once you include this to your CSS, you can see the output as follows when you see the site in Mobile .</p>
<p> <img decoding="async" src="http://www.c-sharpcorner.com/UploadFile/65794e/ho-to-hide-a-div-when-the-website-view-in-mobile/Images/hide2.PNG" alt="" /></p>
<p>That is all for the day. I hope you enjoyed reading.</p>
<p><strong>Conclusion</strong></p>
<p>Please share me your feedback.</p>
<p>Kindest Regards<br />
Sibeesh Venu </p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.sibeeshpassion.com/how-to-hide-a-div-when-the-website-view-in-mobile/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
