<?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>TechieDrill &#187; color</title>
	<atom:link href="http://techiedrill.com/tag/color/feed/" rel="self" type="application/rss+xml" />
	<link>http://techiedrill.com</link>
	<description>Your World Of Technical Tutorials</description>
	<lastBuildDate>Tue, 05 Jan 2010 16:50:11 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.5</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>How to get Text Link With Mouseover Colored Text?</title>
		<link>http://techiedrill.com/2009/11/how-to-get-text-link-with-mouseover-colored-text/</link>
		<comments>http://techiedrill.com/2009/11/how-to-get-text-link-with-mouseover-colored-text/#comments</comments>
		<pubDate>Tue, 10 Nov 2009 13:57:17 +0000</pubDate>
		<dc:creator>Venkatesh Viswanathan</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[color]]></category>
		<category><![CDATA[link]]></category>
		<category><![CDATA[mouseover]]></category>
		<category><![CDATA[text]]></category>
		<category><![CDATA[text link]]></category>
		<category><![CDATA[textcolor]]></category>

		<guid isPermaLink="false">http://techiedrill.com/?p=128</guid>
		<description><![CDATA[To get the Text Link With Mouseover Colored Text you have to do is just simply add the CSS code as shown.
&#60;style type=&#8221;text/css&#8221;&#62;
 &#60;!&#8211;
A:hover { color: #000 }
&#8211;&#62;
&#60;/style&#62;
The CSS code is to be  added in the Head section of your script.
Say for Eg:
&#60;html&#62;
&#60;head&#62;
&#60;title&#62;Text Link With Mouseover Colored Text&#60;/title&#62;
&#60;style type=&#8221;text/css&#8221;&#62;
&#60;!&#8211;
A:hover { color: #000 }
&#8211;&#62;
&#60;/style&#62;
&#60;/head&#62;
&#60;body&#62;
&#60;center&#62;
&#60;a href=&#8221;Url here&#8221;&#62;&#60;b&#62;Text [...]]]></description>
			<content:encoded><![CDATA[<p>To get the Text Link With Mouseover Colored Text you have to do is just simply add the CSS code as shown.</p>
<p><strong>&lt;style type=&#8221;text/css&#8221;&gt;</strong><br />
<strong> &lt;!&#8211;<br />
A:hover { color: </strong><strong>#000</strong><strong> }<br />
&#8211;&gt;<br />
&lt;/style&gt;</strong></p>
<p>The CSS code is to be  added in the Head section of your script.</p>
<p><strong>Say for Eg:</strong></p>
<p><strong>&lt;html&gt;<br />
&lt;head&gt;<br />
&lt;title&gt;Text Link With Mouseover Colored Text&lt;/title&gt;<br />
&lt;style type=&#8221;text/css&#8221;&gt;<br />
&lt;!&#8211;<br />
A:hover { color: #000 }<br />
&#8211;&gt;<br />
&lt;/style&gt;<br />
&lt;/head&gt;<br />
&lt;body&gt;<br />
&lt;center&gt;<br />
&lt;a href=&#8221;Url here&#8221;&gt;&lt;b&gt;Text Link With Mouseover Colored Text&lt;/b&gt;&lt;/a&gt;<br />
&lt;/center&gt;<br />
&lt;/body&gt;<br />
&lt;/html&gt;</strong></p>
<p>displays you the link “Text Link With Mouseover Colored Text”  With Mouseover Colored Text as shown below</p>
<p><html><br />
<head></p>
<style type="text/css">
<!--
A:hover { color: #000 }
-->
</style>
<p></head><br />
<body><br />
<center><br />
<a href="http://techiedrill.com/2009/11/how-to-get-text-link-with-mouseover-colored-text/"><b>Text Link With Mouseover Colored Text</b></a><br />
</center><br />
</body><br />
</html></p>
]]></content:encoded>
			<wfw:commentRss>http://techiedrill.com/2009/11/how-to-get-text-link-with-mouseover-colored-text/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to add Background Color Highlight in Text Link?</title>
		<link>http://techiedrill.com/2009/11/how-to-add-background-color-highlight-in-text-link/</link>
		<comments>http://techiedrill.com/2009/11/how-to-add-background-color-highlight-in-text-link/#comments</comments>
		<pubDate>Tue, 10 Nov 2009 13:27:01 +0000</pubDate>
		<dc:creator>Venkatesh Viswanathan</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[background]]></category>
		<category><![CDATA[color]]></category>
		<category><![CDATA[highlight]]></category>
		<category><![CDATA[link]]></category>
		<category><![CDATA[text]]></category>
		<category><![CDATA[text link]]></category>

		<guid isPermaLink="false">http://techiedrill.com/?p=123</guid>
		<description><![CDATA[You can add Background Color Highlight in the Text Link by using the CSS code
A:hover { color: some color; background-color: some color; }
You have to add the CSS code to your script in the Head section
&#60;style type=&#8221;text/css&#8221;&#62;
&#60;!&#8211;
A:hover { color:#000; background-color:#F00; }
&#8211;&#62;
&#60;/style&#62;
By adding the CSS code you can add Background Color Highlight in Text Link.
Say for [...]]]></description>
			<content:encoded><![CDATA[<p>You can add Background Color Highlight in the Text Link by using the CSS code<br />
<strong>A:hover { color: some color; background-color: some color; }</strong><br />
You have to add the CSS code to your script in the Head section</p>
<p><strong>&lt;style type=&#8221;text/css&#8221;&gt;<br />
&lt;!&#8211;<br />
A:hover { color:#000; background-color:#F00; }<br />
&#8211;&gt;<br />
&lt;/style&gt;</strong></p>
<p>By adding the CSS code you can add Background Color Highlight in Text Link.</p>
<p><strong>Say for Eg:</strong></p>
<p><strong>&lt;html&gt;<br />
&lt;head&gt;<br />
&lt;title&gt;Text Link With Background Color Highlight&lt;/title&gt;<br />
&lt;style type=&#8221;text/css&#8221;&gt;<br />
&lt;!&#8211;<br />
A:hover { color:#000; background-color:#F00; }<br />
&#8211;&gt;<br />
&lt;/style&gt;<br />
&lt;/head&gt;<br />
&lt;body&gt;<br />
&lt;center&gt;<br />
&lt;a href=&#8221;Url here&#8221;&gt;&lt;b&gt;Text Link With Background Color Highlight&lt;/b&gt;&lt;/a&gt;<br />
&lt;/center&gt;<br />
&lt;/body&gt;<br />
&lt;/html&gt;</strong></p>
<p>displays you the link “Text Link With Background Color Highlight”  With Background Color Highlight as shown below</p>
<p><html><br />
<head></p>
<style type="text/css">
<!--
A:hover { color:#000; background-color:#F00; }
-->
</style>
<p></head><br />
<body><br />
<center><br />
<a href="http://techiedrill.com/2009/11/how-to-add-background-color-highlight-in-text-link/"><b>Text Link With Background Color Highlight</b></a><br />
</center><br />
</body><br />
</html></p>
]]></content:encoded>
			<wfw:commentRss>http://techiedrill.com/2009/11/how-to-add-background-color-highlight-in-text-link/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
