<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
	
	>
<channel>
	<title>
	Comments on: CSS Disable Text Selection Example	</title>
	<atom:link href="https://theextremewebdesigns.com/blog/css-disable-text-selection/feed/" rel="self" type="application/rss+xml" />
	<link>https://theextremewebdesigns.com/blog/css-disable-text-selection/</link>
	<description>Web Design and Web Development</description>
	<lastBuildDate>Fri, 28 Dec 2012 18:46:29 +0000</lastBuildDate>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.7.5</generator>
	<item>
		<title>
		By: Robert		</title>
		<link>https://theextremewebdesigns.com/blog/css-disable-text-selection/#comment-122</link>

		<dc:creator><![CDATA[Robert]]></dc:creator>
		<pubDate>Fri, 28 Dec 2012 18:46:29 +0000</pubDate>
		<guid isPermaLink="false">https://theextremewebdesigns.com/blog/?p=376#comment-122</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://theextremewebdesigns.com/blog/css-disable-text-selection/#comment-121&quot;&gt;Ovee&lt;/a&gt;.

I am afraid there&#039;s no way to do it via CSS only, AFAIK . You are better off with a JavaScript solution.]]></description>
			<content:encoded><![CDATA[<p>In reply to <a href="https://theextremewebdesigns.com/blog/css-disable-text-selection/#comment-121">Ovee</a>.</p>
<p>I am afraid there&#8217;s no way to do it via CSS only, AFAIK . You are better off with a JavaScript solution.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Ovee		</title>
		<link>https://theextremewebdesigns.com/blog/css-disable-text-selection/#comment-121</link>

		<dc:creator><![CDATA[Ovee]]></dc:creator>
		<pubDate>Fri, 28 Dec 2012 15:22:09 +0000</pubDate>
		<guid isPermaLink="false">https://theextremewebdesigns.com/blog/?p=376#comment-121</guid>

					<description><![CDATA[Nice! But can we disable keyboard key (Ctrl+A/Ctrl+C) with CSS?]]></description>
			<content:encoded><![CDATA[<p>Nice! But can we disable keyboard key (Ctrl+A/Ctrl+C) with CSS?</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Robert		</title>
		<link>https://theextremewebdesigns.com/blog/css-disable-text-selection/#comment-120</link>

		<dc:creator><![CDATA[Robert]]></dc:creator>
		<pubDate>Tue, 18 Sep 2012 05:31:03 +0000</pubDate>
		<guid isPermaLink="false">https://theextremewebdesigns.com/blog/?p=376#comment-120</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://theextremewebdesigns.com/blog/css-disable-text-selection/#comment-119&quot;&gt;Chathu&lt;/a&gt;.

Hi Chathu,
Yes, this method is better than using JS especially because it does not have the overhead of running JS functions, etc.

Here are the answers for your questions:
1. Addition of this code will not have any effect on SEO. Disabling text selection is for the users, not for search engines. The text and all of the contents of the page can be disabled for search engines (if you want) by using the following meta tag within the head tag of the webpage:
META NAME=&quot;ROBOTS&quot; CONTENT=&quot;NOINDEX, NOFOLLOW&quot;

2. This won&#039;t work on previous versions of IE. That said, I believe it should work IE8+. I don&#039;t think IE7 supports CSS3, so you might want to check it. IE6? Forget it!

3. Put the code in your stylesheet. You might be using it already. Just look for a file that ends in .css and included in the page that you are running &amp; add it in that stylesheet.

4. Possibly. You might want to Google that for more info.

Hope that helps.]]></description>
			<content:encoded><![CDATA[<p>In reply to <a href="https://theextremewebdesigns.com/blog/css-disable-text-selection/#comment-119">Chathu</a>.</p>
<p>Hi Chathu,<br />
Yes, this method is better than using JS especially because it does not have the overhead of running JS functions, etc.</p>
<p>Here are the answers for your questions:<br />
1. Addition of this code will not have any effect on SEO. Disabling text selection is for the users, not for search engines. The text and all of the contents of the page can be disabled for search engines (if you want) by using the following meta tag within the head tag of the webpage:<br />
META NAME=&#8221;ROBOTS&#8221; CONTENT=&#8221;NOINDEX, NOFOLLOW&#8221;</p>
<p>2. This won&#8217;t work on previous versions of IE. That said, I believe it should work IE8+. I don&#8217;t think IE7 supports CSS3, so you might want to check it. IE6? Forget it!</p>
<p>3. Put the code in your stylesheet. You might be using it already. Just look for a file that ends in .css and included in the page that you are running &#038; add it in that stylesheet.</p>
<p>4. Possibly. You might want to Google that for more info.</p>
<p>Hope that helps.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Chathu		</title>
		<link>https://theextremewebdesigns.com/blog/css-disable-text-selection/#comment-119</link>

		<dc:creator><![CDATA[Chathu]]></dc:creator>
		<pubDate>Mon, 17 Sep 2012 06:08:55 +0000</pubDate>
		<guid isPermaLink="false">https://theextremewebdesigns.com/blog/?p=376#comment-119</guid>

					<description><![CDATA[I think this is better than java script, am i correct? 

I&#039;m not familiar with jQuery, CSS etc. I have blogger platform blog. I have four question.
 
1). If we added this code is it affect the SEO of our blogs? Can search engine read our blog post text without any issue?

2). This method work on all the web browsers? I only tested Firefox and IE (next I&#039;m going to test it chrome). 

3). We need to put this code? 

 Try selecting all this text. You will see that all of it is unselectable.

If so where? 

4). Are there any way to easy disable this code to our reader, like java scripts?


Thanks!]]></description>
			<content:encoded><![CDATA[<p>I think this is better than java script, am i correct? </p>
<p>I&#8217;m not familiar with jQuery, CSS etc. I have blogger platform blog. I have four question.</p>
<p>1). If we added this code is it affect the SEO of our blogs? Can search engine read our blog post text without any issue?</p>
<p>2). This method work on all the web browsers? I only tested Firefox and IE (next I&#8217;m going to test it chrome). </p>
<p>3). We need to put this code? </p>
<p> Try selecting all this text. You will see that all of it is unselectable.</p>
<p>If so where? </p>
<p>4). Are there any way to easy disable this code to our reader, like java scripts?</p>
<p>Thanks!</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Jailbreak		</title>
		<link>https://theextremewebdesigns.com/blog/css-disable-text-selection/#comment-118</link>

		<dc:creator><![CDATA[Jailbreak]]></dc:creator>
		<pubDate>Fri, 30 Mar 2012 21:36:14 +0000</pubDate>
		<guid isPermaLink="false">https://theextremewebdesigns.com/blog/?p=376#comment-118</guid>

					<description><![CDATA[salutations from across the world. interesting article I will return for more.]]></description>
			<content:encoded><![CDATA[<p>salutations from across the world. interesting article I will return for more.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Robert		</title>
		<link>https://theextremewebdesigns.com/blog/css-disable-text-selection/#comment-117</link>

		<dc:creator><![CDATA[Robert]]></dc:creator>
		<pubDate>Wed, 21 Mar 2012 11:39:27 +0000</pubDate>
		<guid isPermaLink="false">https://theextremewebdesigns.com/blog/?p=376#comment-117</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://theextremewebdesigns.com/blog/css-disable-text-selection/#comment-116&quot;&gt;Wilfredo Neuhart&lt;/a&gt;.

Hi Wilfredo,
Yes, most of the comments that are received are spam and I just simply delete them. I don&#039;t understand why spammers waste their time as all comments are moderated. I think if they spend at least half of the time in developing their own website, they will earn a better recognition.

You are welcome to use the &quot;Contact Us&quot; link at the top of the page and send us any suggestions you have may for the offer that you have made to me.]]></description>
			<content:encoded><![CDATA[<p>In reply to <a href="https://theextremewebdesigns.com/blog/css-disable-text-selection/#comment-116">Wilfredo Neuhart</a>.</p>
<p>Hi Wilfredo,<br />
Yes, most of the comments that are received are spam and I just simply delete them. I don&#8217;t understand why spammers waste their time as all comments are moderated. I think if they spend at least half of the time in developing their own website, they will earn a better recognition.</p>
<p>You are welcome to use the &#8220;Contact Us&#8221; link at the top of the page and send us any suggestions you have may for the offer that you have made to me.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Wilfredo Neuhart		</title>
		<link>https://theextremewebdesigns.com/blog/css-disable-text-selection/#comment-116</link>

		<dc:creator><![CDATA[Wilfredo Neuhart]]></dc:creator>
		<pubDate>Tue, 20 Mar 2012 10:01:13 +0000</pubDate>
		<guid isPermaLink="false">https://theextremewebdesigns.com/blog/?p=376#comment-116</guid>

					<description><![CDATA[Do you have a spam problem on this blog; I also am a blogger, and I was wanting to know your situation; many of us have developed some nice procedures and we are looking to trade strategies with others, why not shoot me an email if interested.]]></description>
			<content:encoded><![CDATA[<p>Do you have a spam problem on this blog; I also am a blogger, and I was wanting to know your situation; many of us have developed some nice procedures and we are looking to trade strategies with others, why not shoot me an email if interested.</p>
]]></content:encoded>
		
			</item>
	</channel>
</rss>
