<?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: In web page design, what do you call the little window that pops up when you put your cursor over something?</title>
	<atom:link href="http://promoonlympe.com/web-page-design/in-web-page-design-what-do-you-call-the-little-window-that-pops-up-when-you-put-your-cursor-over-something/feed" rel="self" type="application/rss+xml" />
	<link>http://promoonlympe.com/web-page-design/in-web-page-design-what-do-you-call-the-little-window-that-pops-up-when-you-put-your-cursor-over-something</link>
	<description></description>
	<lastBuildDate>Wed, 17 Nov 2010 12:45:59 -0500</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Sweet Samara</title>
		<link>http://promoonlympe.com/web-page-design/in-web-page-design-what-do-you-call-the-little-window-that-pops-up-when-you-put-your-cursor-over-something/comment-page-1#comment-3483</link>
		<dc:creator>Sweet Samara</dc:creator>
		<pubDate>Sun, 29 Nov 2009 23:10:59 +0000</pubDate>
		<guid isPermaLink="false">http://promoonlympe.com/web-page-design/in-web-page-design-what-do-you-call-the-little-window-that-pops-up-when-you-put-your-cursor-over-something#comment-3483</guid>
		<description>You must add the &quot;title&quot; tag to a text link and if it&#039;s an image you add the &quot;alt&quot; tag. So within your text link you would put:

&lt;a href=&quot;YOURLINK&quot; title=&quot;DESCRIPTION&quot;&gt; 

With an image you&#039;d use the following:

&lt;a href=&quot;IMAGEURL&quot; alt=&quot;DESCRIPTION&quot; /&gt; 

For more web design help, visit my website at http://strawberry.sweetvanillasugar.com

I hope this helps.&lt;br&gt;&lt;b&gt;References : &lt;/b&gt;&lt;br&gt;</description>
		<content:encoded><![CDATA[<p>You must add the &quot;title&quot; tag to a text link and if it&#8217;s an image you add the &quot;alt&quot; tag. So within your text link you would put:</p>
<p>&lt;a href=&quot;YOURLINK&quot; title=&quot;DESCRIPTION&quot;&gt; </p>
<p>With an image you&#8217;d use the following:</p>
<p>&lt;a href=&quot;IMAGEURL&quot; alt=&quot;DESCRIPTION&quot; /&gt; </p>
<p>For more web design help, visit my website at <a href="http://strawberry.sweetvanillasugar.com" rel="nofollow">http://strawberry.sweetvanillasugar.com</a></p>
<p>I hope this helps.<br /><b>References : </b></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: AnalProgrammer</title>
		<link>http://promoonlympe.com/web-page-design/in-web-page-design-what-do-you-call-the-little-window-that-pops-up-when-you-put-your-cursor-over-something/comment-page-1#comment-3482</link>
		<dc:creator>AnalProgrammer</dc:creator>
		<pubDate>Sun, 29 Nov 2009 22:36:59 +0000</pubDate>
		<guid isPermaLink="false">http://promoonlympe.com/web-page-design/in-web-page-design-what-do-you-call-the-little-window-that-pops-up-when-you-put-your-cursor-over-something#comment-3482</guid>
		<description>Whilst it is not a full window that you are talking about it is still a pop-up.

I would call it a 
pop-up text layer 
because it will probably be created using a div tag.&lt;br&gt;&lt;b&gt;References : &lt;/b&gt;&lt;br&gt;</description>
		<content:encoded><![CDATA[<p>Whilst it is not a full window that you are talking about it is still a pop-up.</p>
<p>I would call it a<br />
pop-up text layer<br />
because it will probably be created using a div tag.<br /><b>References : </b></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Steve D</title>
		<link>http://promoonlympe.com/web-page-design/in-web-page-design-what-do-you-call-the-little-window-that-pops-up-when-you-put-your-cursor-over-something/comment-page-1#comment-3481</link>
		<dc:creator>Steve D</dc:creator>
		<pubDate>Sun, 29 Nov 2009 22:03:59 +0000</pubDate>
		<guid isPermaLink="false">http://promoonlympe.com/web-page-design/in-web-page-design-what-do-you-call-the-little-window-that-pops-up-when-you-put-your-cursor-over-something#comment-3481</guid>
		<description>It&#039;s often called a &quot;tooltip.&quot; While there are more complex implementations using CSS, there&#039;s actually a very simple way to accomplish it that works in most browsers. Just add a &quot;title&quot; property to your tag. You can do this for a link, a button, or an image, among others. Here&#039;s an example for a link:

&lt;a href=&quot;http://somewebpage.com&quot; title=&quot;Here&#039;s where the tooltip text goes&quot;&gt;Some text&lt;/a&gt;

This will render as &quot;Some text&quot; with a link to somwebpage.com. When the user hovers over the link, a tooltip will pop up that says &quot;Here&#039;s where the tooltip text goes.&quot;

I hope this helps.&lt;br&gt;&lt;b&gt;References : &lt;/b&gt;&lt;br&gt;</description>
		<content:encoded><![CDATA[<p>It&#8217;s often called a &quot;tooltip.&quot; While there are more complex implementations using CSS, there&#8217;s actually a very simple way to accomplish it that works in most browsers. Just add a &quot;title&quot; property to your tag. You can do this for a link, a button, or an image, among others. Here&#8217;s an example for a link:</p>
<p>&lt;a href=&quot;http://somewebpage.com&quot; title=&quot;Here&#8217;s where the tooltip text goes&quot;&gt;Some text&lt;/a&gt;</p>
<p>This will render as &quot;Some text&quot; with a link to somwebpage.com. When the user hovers over the link, a tooltip will pop up that says &quot;Here&#8217;s where the tooltip text goes.&quot;</p>
<p>I hope this helps.<br /><b>References : </b></p>
]]></content:encoded>
	</item>
</channel>
</rss>

