<?xml version="1.0" encoding="utf-8"?><!-- generator="wordpress/2.3.2" -->
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	>
<channel>
	<title>Comments on: Nice Titles Here!</title>
	<link>http://climbtothestars.org/archives/2003/02/25/nice-titles-here/</link>
	<description>More than just a blog.</description>
	<pubDate>Sat, 05 Jul 2008 05:10:01 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.3.2</generator>
		<item>
		<title>By: Stephanie</title>
		<link>http://climbtothestars.org/archives/2003/02/25/nice-titles-here/#comment-813</link>
		<dc:creator>Stephanie</dc:creator>
		<pubDate>Tue, 30 Nov 1999 00:00:00 +0000</pubDate>
		<guid>http://climbtothestars.org/archives/2003/02/25/nice-titles-here/#comment-813</guid>
		<description>&lt;p&gt;I'm not sure they are really orthodox, but let's see what happens...&lt;/p&gt;</description>
		<content:encoded><![CDATA[<p>I&#8217;m not sure they are really orthodox, but let&#8217;s see what happens&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Grtrzs</title>
		<link>http://climbtothestars.org/archives/2003/02/25/nice-titles-here/#comment-814</link>
		<dc:creator>Grtrzs</dc:creator>
		<pubDate>Tue, 30 Nov 1999 00:00:00 +0000</pubDate>
		<guid>http://climbtothestars.org/archives/2003/02/25/nice-titles-here/#comment-814</guid>
		<description>&lt;p&gt;Nul.&lt;/p&gt;</description>
		<content:encoded><![CDATA[<p>Nul.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Delf</title>
		<link>http://climbtothestars.org/archives/2003/02/25/nice-titles-here/#comment-815</link>
		<dc:creator>Delf</dc:creator>
		<pubDate>Tue, 30 Nov 1999 00:00:00 +0000</pubDate>
		<guid>http://climbtothestars.org/archives/2003/02/25/nice-titles-here/#comment-815</guid>
		<description>&lt;p&gt;Arg. When I do a mouse gesture on a link to open it in a new window, the "nice title" doesn't 
disappear, and I have to reload the page to be able to read what's written underneath... 
Weird. I won't do any mouse gesture here then...&lt;/p&gt;

&lt;p&gt;It looks like what I'm using on my blog for some of my links, but I don't use any javascript, 
only css. I'll try to steal some ideas to improve my own code! ^o^&lt;/p&gt;</description>
		<content:encoded><![CDATA[<p>Arg. When I do a mouse gesture on a link to open it in a new window, the &#8220;nice title&#8221; doesn&#8217;t<br />
disappear, and I have to reload the page to be able to read what&#8217;s written underneath&#8230;<br />
Weird. I won&#8217;t do any mouse gesture here then&#8230;</p>
<p>It looks like what I&#8217;m using on my blog for some of my links, but I don&#8217;t use any javascript,<br />
only css. I&#8217;ll try to steal some ideas to improve my own code! ^o^</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sam</title>
		<link>http://climbtothestars.org/archives/2003/02/25/nice-titles-here/#comment-816</link>
		<dc:creator>Sam</dc:creator>
		<pubDate>Tue, 30 Nov 1999 00:00:00 +0000</pubDate>
		<guid>http://climbtothestars.org/archives/2003/02/25/nice-titles-here/#comment-816</guid>
		<description>&lt;p&gt;Very interesting, actually. The good :
 - finally a tooltip where you get to see the text in its entirety! Display of the URL in the 
same box is a valuable bonus;
 - the cool looks allowed by CSS. Makes you feel like you own a Mac!&lt;/p&gt;

&lt;p&gt;The bad :
 - tooltips for your right nav bar show up on the left of the screen
 - Some 'backlinks' links tooltips show URL+URL... Well, that's not bad per se, that's just 
not neat. lol
 - usefulness of semi-transparent PNG is questionable: so it's "cool", but transparency 
doesn't work in IE, AND the pic hides the rounded corners in Mozilla. Moreover, 
semi-transparency noticeably impedes legibility. So I suggest your use regular GIF background, 
or maybe just my quick, image-less proposal. Tweaks include colors closer to your scheme, and 
relative font sizes.&lt;/p&gt;

&lt;p&gt;div.nicetitle {
     position: absolute;
     padding: 0.5em;
     top: 0px;
     left: 0px;
     color: #666;
     font-size: 0.7em;
     font-family: Verdana, Helvetica, Arial, sans-serif;
     font-weight: normal;
     width: 25em;
     background: #EEE;
     border-top: 1px solid #DDD;
     border-left: 1px solid #DDD;
     border-bottom: 1px solid #AAA;
     border-right: 1px solid #AAA;&lt;/p&gt;

&lt;pre&gt;&lt;code&gt; /* Mozilla proprietary */
-moz-border-radius: 7px;
&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;}
 div.nicetitle p {
     margin: 0; padding: 0 3px;
 }
 div.nicetitle p.destination {
     font-size: 0.9em;
     text-align: left;
     padding-top: 0.3em;
     font-weight: bold;
     color: #666;
 }&lt;/p&gt;</description>
		<content:encoded><![CDATA[<p>Very interesting, actually. The good :<br />
 - finally a tooltip where you get to see the text in its entirety! Display of the URL in the<br />
same box is a valuable bonus;<br />
 - the cool looks allowed by CSS. Makes you feel like you own a Mac!</p>
<p>The bad :<br />
 - tooltips for your right nav bar show up on the left of the screen<br />
 - Some &#8216;backlinks&#8217; links tooltips show URL+URL&#8230; Well, that&#8217;s not bad per se, that&#8217;s just<br />
not neat. lol<br />
 - usefulness of semi-transparent PNG is questionable: so it&#8217;s &#8220;cool&#8221;, but transparency<br />
doesn&#8217;t work in IE, AND the pic hides the rounded corners in Mozilla. Moreover,<br />
semi-transparency noticeably impedes legibility. So I suggest your use regular GIF background,<br />
or maybe just my quick, image-less proposal. Tweaks include colors closer to your scheme, and<br />
relative font sizes.</p>
<p>div.nicetitle {<br />
     position: absolute;<br />
     padding: 0.5em;<br />
     top: 0px;<br />
     left: 0px;<br />
     color: #666;<br />
     font-size: 0.7em;<br />
     font-family: Verdana, Helvetica, Arial, sans-serif;<br />
     font-weight: normal;<br />
     width: 25em;<br />
     background: #EEE;<br />
     border-top: 1px solid #DDD;<br />
     border-left: 1px solid #DDD;<br />
     border-bottom: 1px solid #AAA;<br />
     border-right: 1px solid #AAA;</p>
<pre><code> /* Mozilla proprietary */
-moz-border-radius: 7px;
</code></pre>
<p>}<br />
 div.nicetitle p {<br />
     margin: 0; padding: 0 3px;<br />
 }<br />
 div.nicetitle p.destination {<br />
     font-size: 0.9em;<br />
     text-align: left;<br />
     padding-top: 0.3em;<br />
     font-weight: bold;<br />
     color: #666;<br />
 }</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sam</title>
		<link>http://climbtothestars.org/archives/2003/02/25/nice-titles-here/#comment-817</link>
		<dc:creator>Sam</dc:creator>
		<pubDate>Tue, 30 Nov 1999 00:00:00 +0000</pubDate>
		<guid>http://climbtothestars.org/archives/2003/02/25/nice-titles-here/#comment-817</guid>
		<description>&lt;p&gt;Oh yeah, when I right-click on a link, its tooltip just freezes until page is reloaded.&lt;/p&gt;</description>
		<content:encoded><![CDATA[<p>Oh yeah, when I right-click on a link, its tooltip just freezes until page is reloaded.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Steph</title>
		<link>http://climbtothestars.org/archives/2003/02/25/nice-titles-here/#comment-818</link>
		<dc:creator>Steph</dc:creator>
		<pubDate>Tue, 30 Nov 1999 00:00:00 +0000</pubDate>
		<guid>http://climbtothestars.org/archives/2003/02/25/nice-titles-here/#comment-818</guid>
		<description>&lt;p&gt;I've told Stuart about the "stickytitles" problem, he's looking into it.&lt;/p&gt;

&lt;p&gt;I like your aesthetic tweaks, though I boosted up the font size a bit.&lt;/p&gt;

&lt;p&gt;For pompage, what I saw looked good. I'll try to have a closer look this evening, but "no news 
is good news" in this case, just keep on at it! :-)&lt;/p&gt;</description>
		<content:encoded><![CDATA[<p>I&#8217;ve told Stuart about the &#8220;stickytitles&#8221; problem, he&#8217;s looking into it.</p>
<p>I like your aesthetic tweaks, though I boosted up the font size a bit.</p>
<p>For pompage, what I saw looked good. I&#8217;ll try to have a closer look this evening, but &#8220;no news<br />
is good news&#8221; in this case, just keep on at it! <img src='http://climbtothestars.org/wp/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Steph</title>
		<link>http://climbtothestars.org/archives/2003/02/25/nice-titles-here/#comment-819</link>
		<dc:creator>Steph</dc:creator>
		<pubDate>Tue, 30 Nov 1999 00:00:00 +0000</pubDate>
		<guid>http://climbtothestars.org/archives/2003/02/25/nice-titles-here/#comment-819</guid>
		<description>&lt;p&gt;actually, I'm thinking of making them more like "normal" tooltips... &lt;em&gt;thinks&lt;/em&gt;&lt;/p&gt;</description>
		<content:encoded><![CDATA[<p>actually, I&#8217;m thinking of making them more like &#8220;normal&#8221; tooltips&#8230; <em>thinks</em></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Steph</title>
		<link>http://climbtothestars.org/archives/2003/02/25/nice-titles-here/#comment-820</link>
		<dc:creator>Steph</dc:creator>
		<pubDate>Tue, 30 Nov 1999 00:00:00 +0000</pubDate>
		<guid>http://climbtothestars.org/archives/2003/02/25/nice-titles-here/#comment-820</guid>
		<description>&lt;p&gt;I've gone for something closer to the "normal" windows look... what do you think? is it 
shocking on other platforms?&lt;/p&gt;</description>
		<content:encoded><![CDATA[<p>I&#8217;ve gone for something closer to the &#8220;normal&#8221; windows look&#8230; what do you think? is it<br />
shocking on other platforms?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sam</title>
		<link>http://climbtothestars.org/archives/2003/02/25/nice-titles-here/#comment-821</link>
		<dc:creator>Sam</dc:creator>
		<pubDate>Tue, 30 Nov 1999 00:00:00 +0000</pubDate>
		<guid>http://climbtothestars.org/archives/2003/02/25/nice-titles-here/#comment-821</guid>
		<description>&lt;p&gt;Well it &lt;em&gt;is&lt;/em&gt; shocking, because of all the possibilities implied by CSS, you chose to make the 
tooltip ressemble Good Old Basic Windows! lol But maybe it's just me, I'm so fed up with that 
boring yellow background.&lt;/p&gt;</description>
		<content:encoded><![CDATA[<p>Well it <em>is</em> shocking, because of all the possibilities implied by CSS, you chose to make the<br />
tooltip ressemble Good Old Basic Windows! lol But maybe it&#8217;s just me, I&#8217;m so fed up with that<br />
boring yellow background.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Delf</title>
		<link>http://climbtothestars.org/archives/2003/02/25/nice-titles-here/#comment-822</link>
		<dc:creator>Delf</dc:creator>
		<pubDate>Tue, 30 Nov 1999 00:00:00 +0000</pubDate>
		<guid>http://climbtothestars.org/archives/2003/02/25/nice-titles-here/#comment-822</guid>
		<description>&lt;p&gt;I just love the round corners!&lt;/p&gt;</description>
		<content:encoded><![CDATA[<p>I just love the round corners!</p>
]]></content:encoded>
	</item>
</channel>
</rss>
