<?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>CSS &#8211; Techawaken</title>
	<atom:link href="https://www.techawaken.com/category/css/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.techawaken.com</link>
	<description>Techawaken shares articles and experience in PHP, MySql, Magento,Joomla, Wordpress, JQuery, Javascript etc.</description>
	<lastBuildDate>Mon, 20 Aug 2018 19:54:57 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	
	<item>
		<title>How to disable textarea resizing</title>
		<link>https://www.techawaken.com/disable-textarea-resizing/</link>
				<comments>https://www.techawaken.com/disable-textarea-resizing/#respond</comments>
				<pubDate>Sat, 24 Dec 2016 21:43:58 +0000</pubDate>
		<dc:creator><![CDATA[Pawan]]></dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[resize]]></category>
		<category><![CDATA[textarea]]></category>

		<guid isPermaLink="false">http://www.techawaken.com/?p=792</guid>
				<description><![CDATA[<p>If we add a simple textarea in a HTML form then we see that we can resize it by clicking on the bottom right corner of the textarea and dragging the mouse.</p>

<pre>
&#60;textarea id=&#34;txt1&#34; name=&#34;txt1&#34; rows=&#34;5&#34; cols=&#34;50&#34;&#62;&#60;/textarea&#62;
</pre>




<p>If we want to stop this resize then you have to just add a simple css as shown below.</p>

<pre>
textarea {
    resize: none;
}
</pre>

<div class='yarpp-related-rss'>
<div id="related">
You Might Also Like<ol>
<li><a href="https://www.techawaken.com/limit-number-characters-entered-textarea-input-field/" rel="bookmark" title="How to limit the number of characters that can be entered in a textarea or input field?">How to limit the number of characters that can be entered in a textarea or input field? </a></li>
<li><a href="https://www.techawaken.com/add-smooth-page-scroll-top-jquery/" rel="bookmark" title="How to Add Smooth Page Scroll to Top using jQuery">How to Add Smooth Page Scroll to Top using jQuery </a></li>
</ol></div>
</div>
]]></description>
						<wfw:commentRss>https://www.techawaken.com/disable-textarea-resizing/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
							</item>
		<item>
		<title>How to Add Smooth Page Scroll to Top using jQuery</title>
		<link>https://www.techawaken.com/add-smooth-page-scroll-top-jquery/</link>
				<comments>https://www.techawaken.com/add-smooth-page-scroll-top-jquery/#comments</comments>
				<pubDate>Mon, 30 Dec 2013 19:44:00 +0000</pubDate>
		<dc:creator><![CDATA[Pawan]]></dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[Scroll]]></category>

		<guid isPermaLink="false">http://www.techawaken.com/?p=440</guid>
				<description><![CDATA[You would have come across websites that provide an easy way to scroll to the top of the webpage as you move down the page, its really a good idea if the webpage is long and you want to provide a better user experience. In this article, we will show you how to add a smooth scroll to top effect using jQuery.

We will create a button on the footer of the page which when clicked will scroll the page to the top smoothly, we will use css to postion the button at a fixed position on the bottom right of the page and jQuery to provide the scrolling effect and make the button visible only if the page is scrolled down, instead of being always visible.

<strong>Step 1: Add button link</strong>
Place the following code just before the closing &#60;/body&#62; HMTL tag

<pre>
&#60;a href="#" id="scrolltotop" title="Back to top"&#62;Back to top&#60;/a&#62;
</pre>

<div class='yarpp-related-rss'>
<div id="related">
You Might Also Like<ol>
<li><a href="https://www.techawaken.com/ie7-issues-with-jquery-removeattr-method/" rel="bookmark" title="IE7 issues with jQuery removeAttr method">IE7 issues with jQuery removeAttr method </a></li>
<li><a href="https://www.techawaken.com/disabling-the-form-submit-on-press-of-enter-key/" rel="bookmark" title="Disabling the form submit on press of ENTER key">Disabling the form submit on press of ENTER key </a></li>
<li><a href="https://www.techawaken.com/magento-serve-css-files-system-file-paths-urls/" rel="bookmark" title="Magento trying serve CSS files using the system file paths instead of URLs">Magento trying serve CSS files using the system file paths instead of URLs </a></li>
</ol></div>
</div>
]]></description>
						<wfw:commentRss>https://www.techawaken.com/add-smooth-page-scroll-top-jquery/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
							</item>
	</channel>
</rss>
