<?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; text</title>
	<atom:link href="http://techiedrill.com/tag/text/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>
		<item>
		<title>How to put Lines Above And Below in Text Link?</title>
		<link>http://techiedrill.com/2009/11/how-to-put-lines-above-and-below-in-text-links/</link>
		<comments>http://techiedrill.com/2009/11/how-to-put-lines-above-and-below-in-text-links/#comments</comments>
		<pubDate>Tue, 10 Nov 2009 13:13:48 +0000</pubDate>
		<dc:creator>Venkatesh Viswanathan</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[lines]]></category>
		<category><![CDATA[lines above]]></category>
		<category><![CDATA[lines below]]></category>
		<category><![CDATA[link]]></category>
		<category><![CDATA[text]]></category>
		<category><![CDATA[text link]]></category>

		<guid isPermaLink="false">http://techiedrill.com/?p=119</guid>
		<description><![CDATA[To know how to put the Text links with lines above and below you have to do is just simply add the A:hover in the CSS code. You can easily do it by providing the CSS code in your scripts. What you have to do is to just add the CSS code to your script [...]]]></description>
			<content:encoded><![CDATA[<p>To know how to put the Text links with lines above and below you have to do is just simply add the A:hover in the CSS code. You can easily do it by providing the CSS code in your scripts. What you have to do is to just 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 {text-decoration: overline underline}<br />
&#8211;&gt;<br />
&lt;/style&gt;</strong></p>
<p>By adding the CSS code you can put Lines Above And Below in Text Links.</p>
<p><strong>Say for Eg:</strong></p>
<p><strong>&lt;html&gt;<br />
&lt;head&gt;<br />
&lt;title&gt;Text Links With Lines Above And Below&lt;/title&gt;<br />
&lt;style type=&#8221;text/css&#8221;&gt;<br />
&lt;!&#8211;<br />
A:hover {text-decoration: overline underline}<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 Links With Lines Above And Below&lt;/b&gt;&lt;/a&gt;&lt;/center&gt;<br />
&lt;/body&gt;<br />
&lt;/html&gt;</strong></p>
<p>displays you the link “Text Links With Lines Above And Below”  with the Lines Above And Below in Text Link as shown below</p>
<p><html><br />
<head></p>
<style type="text/css">
<!--
A:hover {text-decoration: overline underline}
-->
</style>
<p></head><br />
<body><br />
<center><br />
<a href="http://techiedrill.com/2009/11/how-to-put-lines-above-and-below-in-text-links/"><b>Text Links With Lines Above And Below</b></a></center><br />
</body><br />
</html></p>
]]></content:encoded>
			<wfw:commentRss>http://techiedrill.com/2009/11/how-to-put-lines-above-and-below-in-text-links/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Wrap text around picture in Microsoft Word</title>
		<link>http://techiedrill.com/2009/11/wrap-text-around-picture-in-microsoft-word/</link>
		<comments>http://techiedrill.com/2009/11/wrap-text-around-picture-in-microsoft-word/#comments</comments>
		<pubDate>Fri, 06 Nov 2009 15:31:24 +0000</pubDate>
		<dc:creator>marke</dc:creator>
				<category><![CDATA[MS Word]]></category>
		<category><![CDATA[microsoft]]></category>
		<category><![CDATA[microsoft word]]></category>
		<category><![CDATA[Microsoft word 2007]]></category>
		<category><![CDATA[Msword 2007]]></category>
		<category><![CDATA[text]]></category>
		<category><![CDATA[text around picture]]></category>
		<category><![CDATA[word]]></category>
		<category><![CDATA[word 2007]]></category>
		<category><![CDATA[wrap]]></category>
		<category><![CDATA[Wrap text around picture]]></category>

		<guid isPermaLink="false">http://techiedrill.com/?p=59</guid>
		<description><![CDATA[
To download this youtube video, Click Here
This tip actually works in any word processor, but is often overlooked. For you &#8220;advanced&#8221; users, the end of the tip has something you might not know&#8230; 
]]></description>
			<content:encoded><![CDATA[<p><object width="445" height="364"><param name="movie" value="http://www.youtube.com/v/7m3iQZ9SLtU&#038;hl=en&#038;fs=1&#038;color1=0x234900&#038;color2=0x4e9e00&#038;border=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/7m3iQZ9SLtU&#038;hl=en&#038;fs=1&#038;color1=0x234900&#038;color2=0x4e9e00&#038;border=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="445" height="364"></embed></object></p>
<p><strong>To download this youtube video</strong>,<a href="http://www.keephd.com/watch?v=7m3iQZ9SLtU"> Click Here</a></p>
<p>This tip actually works in any word processor, but is often overlooked. For you &#8220;advanced&#8221; users, the end of the tip has something you might not know&#8230; </p>
]]></content:encoded>
			<wfw:commentRss>http://techiedrill.com/2009/11/wrap-text-around-picture-in-microsoft-word/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
