<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
		>
<channel>
	<title>Comments for DevHints</title>
	<atom:link href="http://devhints.wordpress.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://devhints.wordpress.com</link>
	<description>Tips and Hints for Website Developers</description>
	<lastBuildDate>Fri, 07 Aug 2009 21:30:35 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>Comment on CSS: Links With Different Color Underlines by Corey</title>
		<link>http://devhints.wordpress.com/2006/10/24/css-links-with-different-color-underlines/#comment-46</link>
		<dc:creator>Corey</dc:creator>
		<pubDate>Fri, 07 Aug 2009 21:30:35 +0000</pubDate>
		<guid isPermaLink="false">http://devhints.wordpress.com/2006/10/24/css-links-with-different-color-underlines/#comment-46</guid>
		<description>Sergio, 

The solution you&#039;ve proposed is less semantic, requires additional markup and CSS, and introduces nothing additional. 

I&#039;ve updated the article to show changing the color on hover.</description>
		<content:encoded><![CDATA[<p>Sergio, </p>
<p>The solution you&#8217;ve proposed is less semantic, requires additional markup and CSS, and introduces nothing additional. </p>
<p>I&#8217;ve updated the article to show changing the color on hover.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on CSS: Links With Different Color Underlines by sergiozambrano</title>
		<link>http://devhints.wordpress.com/2006/10/24/css-links-with-different-color-underlines/#comment-45</link>
		<dc:creator>sergiozambrano</dc:creator>
		<pubDate>Fri, 07 Aug 2009 21:26:50 +0000</pubDate>
		<guid isPermaLink="false">http://devhints.wordpress.com/2006/10/24/css-links-with-different-color-underlines/#comment-45</guid>
		<description>You only need an extra tag for your different outline color.

e.g.

b tag inside your link to hover to a different underline color.

[code]
&lt;a&gt;&lt;b&gt;text here&lt;/b&gt;&lt;/a&gt;

a {
color: #0000ff;
text-decoration: underline;
}
a:hover {
color: #cc0000;
text-decoration: underline;
}
a:hover b {
color: #0000ff;
}
[/code]

You should be seeing a blue link which underline becomes red on rollover.
Basically you just change the whole font color and then set the b tag back to its original color. Underline color won&#039;t revert since it&#039;s applied by the parent tag, not by the b one.

I&#039;m using it in a few places in my site http://seosumo.com/design</description>
		<content:encoded><![CDATA[<p>You only need an extra tag for your different outline color.</p>
<p>e.g.</p>
<p>b tag inside your link to hover to a different underline color.</p>
<pre class="brush: plain;">
&lt;a&gt;&lt;b&gt;text here&lt;/b&gt;&lt;/a&gt;

a {
color: #0000ff;
text-decoration: underline;
}
a:hover {
color: #cc0000;
text-decoration: underline;
}
a:hover b {
color: #0000ff;
}
</pre>
<p>You should be seeing a blue link which underline becomes red on rollover.<br />
Basically you just change the whole font color and then set the b tag back to its original color. Underline color won&#8217;t revert since it&#8217;s applied by the parent tag, not by the b one.</p>
<p>I&#8217;m using it in a few places in my site <a href="http://seosumo.com/design" rel="nofollow">http://seosumo.com/design</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Web Developer on Firefox 3.* (incl. Minefield) by A Noted Path - Personal blog of Theodore Nguyen-Cao &#8212; Where inspiration meets aspiration &#187; Firefox 3.0 Beta, Web Developer, Firebug</title>
		<link>http://devhints.wordpress.com/2007/12/01/web-developer-on-firefox-3-incl-minefield/#comment-37</link>
		<dc:creator>A Noted Path - Personal blog of Theodore Nguyen-Cao &#8212; Where inspiration meets aspiration &#187; Firefox 3.0 Beta, Web Developer, Firebug</dc:creator>
		<pubDate>Sat, 12 Jan 2008 20:13:26 +0000</pubDate>
		<guid isPermaLink="false">http://devhints.wordpress.com/2007/12/01/web-developer-on-firefox-3-incl-minefield/#comment-37</guid>
		<description>[...] Web Developer for FireFox 3 - DevHints [...]</description>
		<content:encoded><![CDATA[<p>[...] Web Developer for FireFox 3 &#8211; DevHints [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Web Developer on Firefox 3.* (incl. Minefield) by enaverniouk</title>
		<link>http://devhints.wordpress.com/2007/12/01/web-developer-on-firefox-3-incl-minefield/#comment-30</link>
		<dc:creator>enaverniouk</dc:creator>
		<pubDate>Sat, 29 Dec 2007 06:00:34 +0000</pubDate>
		<guid isPermaLink="false">http://devhints.wordpress.com/2007/12/01/web-developer-on-firefox-3-incl-minefield/#comment-30</guid>
		<description>Awesome.

One problem. You can close the sidebar which opens when you Edit, or View Style information. The close button doesn&#039;t work, and you&#039;re stuck with that annoying sidebar...

Any idea how to fix that?</description>
		<content:encoded><![CDATA[<p>Awesome.</p>
<p>One problem. You can close the sidebar which opens when you Edit, or View Style information. The close button doesn&#8217;t work, and you&#8217;re stuck with that annoying sidebar&#8230;</p>
<p>Any idea how to fix that?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Web Developer on Firefox 3.* (incl. Minefield) by sshrdp</title>
		<link>http://devhints.wordpress.com/2007/12/01/web-developer-on-firefox-3-incl-minefield/#comment-27</link>
		<dc:creator>sshrdp</dc:creator>
		<pubDate>Tue, 25 Dec 2007 19:29:32 +0000</pubDate>
		<guid isPermaLink="false">http://devhints.wordpress.com/2007/12/01/web-developer-on-firefox-3-incl-minefield/#comment-27</guid>
		<description>timot1: The url in the post is wrong, Use this url:
http://files.mybannermaker.com/personal/WebDev_3.xpi
He forgot to put http:// in front of the url and browsers convert it to:
http://devhints.wordpress.com/2007/12/01/web-developer-on-firefox-3-incl-minefield/files.mybannermaker.com/personal/WebDev_3.xpi</description>
		<content:encoded><![CDATA[<p>timot1: The url in the post is wrong, Use this url:<br />
<a href="http://files.mybannermaker.com/personal/WebDev_3.xpi" rel="nofollow">http://files.mybannermaker.com/personal/WebDev_3.xpi</a><br />
He forgot to put http:// in front of the url and browsers convert it to:<br />
<a href="http://devhints.wordpress.com/2007/12/01/web-developer-on-firefox-3-incl-minefield/files.mybannermaker.com/personal/WebDev_3.xpi" rel="nofollow">http://devhints.wordpress.com/2007/12/01/web-developer-on-firefox-3-incl-minefield/files.mybannermaker.com/personal/WebDev_3.xpi</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Web Developer on Firefox 3.* (incl. Minefield) by timot1</title>
		<link>http://devhints.wordpress.com/2007/12/01/web-developer-on-firefox-3-incl-minefield/#comment-24</link>
		<dc:creator>timot1</dc:creator>
		<pubDate>Sun, 23 Dec 2007 10:53:19 +0000</pubDate>
		<guid isPermaLink="false">http://devhints.wordpress.com/2007/12/01/web-developer-on-firefox-3-incl-minefield/#comment-24</guid>
		<description>hi  - this quickened my heart for a moment.. FF3b2 is a truley great leap forward, 2 had become unusable, but 3 absolutely needs WD ext.  Unfortunately I couldn&#039;t get your modded version to work. i got:

Firefox could not install the file at 
file:///Users/tim/Documents/My%20Downloads/WebDev_3.xpi
because: Not a valid install package
-207

[OS 10.4.11, ppc, firefox 3.0 b2]

any ideas?</description>
		<content:encoded><![CDATA[<p>hi  &#8211; this quickened my heart for a moment.. FF3b2 is a truley great leap forward, 2 had become unusable, but 3 absolutely needs WD ext.  Unfortunately I couldn&#8217;t get your modded version to work. i got:</p>
<p>Firefox could not install the file at<br />
file:///Users/tim/Documents/My%20Downloads/WebDev_3.xpi<br />
because: Not a valid install package<br />
-207</p>
<p>[OS 10.4.11, ppc, firefox 3.0 b2]</p>
<p>any ideas?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Web Developer on Firefox 3.* (incl. Minefield) by &#60;h1&#62;sshrdp&#60;/h1&#62;</title>
		<link>http://devhints.wordpress.com/2007/12/01/web-developer-on-firefox-3-incl-minefield/#comment-22</link>
		<dc:creator>&#60;h1&#62;sshrdp&#60;/h1&#62;</dc:creator>
		<pubDate>Sat, 22 Dec 2007 17:40:37 +0000</pubDate>
		<guid isPermaLink="false">http://devhints.wordpress.com/2007/12/01/web-developer-on-firefox-3-incl-minefield/#comment-22</guid>
		<description>Thanks for sharing!
(You forgot to put http:// in front of download link.)</description>
		<content:encoded><![CDATA[<p>Thanks for sharing!<br />
(You forgot to put http:// in front of download link.)</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on CSS: Make it all Uppercase/Lowercase by Any plugins or methods on spreadsheet? - Graphic Design Forum and Web Design Forum</title>
		<link>http://devhints.wordpress.com/2006/11/01/css-make-it-all-uppercaselowercase/#comment-9</link>
		<dc:creator>Any plugins or methods on spreadsheet? - Graphic Design Forum and Web Design Forum</dc:creator>
		<pubDate>Mon, 05 Nov 2007 10:02:22 +0000</pubDate>
		<guid isPermaLink="false">http://devhints.wordpress.com/2006/11/01/css-make-it-all-uppercaselowercase/#comment-9</guid>
		<description></description>
		<content:encoded><![CDATA[<p>[...] sure if this will help  CSS: Make it all Uppercase/Lowercase « DevHints    __________________ Colour Printing and Integrated Cards || Graphic Design &amp; Colour Printers [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Safari Isn&#8217;t the Beauty That Apple Likes To Claim by trucex</title>
		<link>http://devhints.wordpress.com/2007/03/09/safari-isnt-the-beauty-that-apple-likes-to-claim/#comment-7</link>
		<dc:creator>trucex</dc:creator>
		<pubDate>Wed, 20 Jun 2007 03:19:24 +0000</pubDate>
		<guid isPermaLink="false">http://devhints.wordpress.com/2007/03/09/safari-isnt-the-beauty-that-apple-likes-to-claim/#comment-7</guid>
		<description>Mmm...this is coming from someone whose website is a complete mess. How typical. 

Oh so I have to tell Safari to do what is expected of it? I&#039;m all for AI, but I don&#039;t think I should have to train a browser that the tab key should move focus to the next element. It&#039;s been around for a while...it&#039;s just Apple being stubborn about not liking selection rectangles appearing on their pretty little child that&#039;s a moron.

Safari doesn&#039;t have anything to manage cookies. Safari doesn&#039;t let me write my own scripts to execute on websites that match an expression. Safari doesn&#039;t let me modify global styles through a CSS stylesheet. Safari doesn&#039;t give me the ability to resize my browser window to specific dimensions for testing websites. Safari doesn&#039;t let me outline specific elements for debugging HTML. Safari doesn&#039;t let me swap between different sets of cookies. Safari doesn&#039;t let me see my AdSense earnings updated all day and night. Safari doesn&#039;t show me the time a website took to load. Safari doesn&#039;t let me snap a screenshot of the entire website. Safari doesn&#039;t update itself. I could go on all day.

Safari doesn&#039;t let me use a lot of standard JavaScript. In fact, until Safari 3, WebKit/AppleWebKit would screw up all over the place on Google Docs. The way Safari handles various padding and margin situations with float is incorrect, also (Safari 2, I&#039;m not sure of 3).

Safari has tabs, but they&#039;re not enabled by default. IE 7 has tabs, and they actually work with the keyboard (ctrl+tab) unlike Safari&#039;s. 

You say you&#039;ve used Firefox and Opera and Safari is better. Since better is relative to your usage, I&#039;m assuming you&#039;re just another brat that can&#039;t stand to have something look a little bit off so that it is functional...like handles on the doors of cars. Sure, safari looks nice and clean, but all that &quot;clutter&quot; has immense functionality.

PS: Safari has &quot;plug-ins&quot; instead of extensions. Apparently you&#039;re another amateur that doesn&#039;t realize exactly how his browser works.</description>
		<content:encoded><![CDATA[<p>Mmm&#8230;this is coming from someone whose website is a complete mess. How typical. </p>
<p>Oh so I have to tell Safari to do what is expected of it? I&#8217;m all for AI, but I don&#8217;t think I should have to train a browser that the tab key should move focus to the next element. It&#8217;s been around for a while&#8230;it&#8217;s just Apple being stubborn about not liking selection rectangles appearing on their pretty little child that&#8217;s a moron.</p>
<p>Safari doesn&#8217;t have anything to manage cookies. Safari doesn&#8217;t let me write my own scripts to execute on websites that match an expression. Safari doesn&#8217;t let me modify global styles through a CSS stylesheet. Safari doesn&#8217;t give me the ability to resize my browser window to specific dimensions for testing websites. Safari doesn&#8217;t let me outline specific elements for debugging HTML. Safari doesn&#8217;t let me swap between different sets of cookies. Safari doesn&#8217;t let me see my AdSense earnings updated all day and night. Safari doesn&#8217;t show me the time a website took to load. Safari doesn&#8217;t let me snap a screenshot of the entire website. Safari doesn&#8217;t update itself. I could go on all day.</p>
<p>Safari doesn&#8217;t let me use a lot of standard JavaScript. In fact, until Safari 3, WebKit/AppleWebKit would screw up all over the place on Google Docs. The way Safari handles various padding and margin situations with float is incorrect, also (Safari 2, I&#8217;m not sure of 3).</p>
<p>Safari has tabs, but they&#8217;re not enabled by default. IE 7 has tabs, and they actually work with the keyboard (ctrl+tab) unlike Safari&#8217;s. </p>
<p>You say you&#8217;ve used Firefox and Opera and Safari is better. Since better is relative to your usage, I&#8217;m assuming you&#8217;re just another brat that can&#8217;t stand to have something look a little bit off so that it is functional&#8230;like handles on the doors of cars. Sure, safari looks nice and clean, but all that &#8220;clutter&#8221; has immense functionality.</p>
<p>PS: Safari has &#8220;plug-ins&#8221; instead of extensions. Apparently you&#8217;re another amateur that doesn&#8217;t realize exactly how his browser works.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Safari Isn&#8217;t the Beauty That Apple Likes To Claim by Supernite</title>
		<link>http://devhints.wordpress.com/2007/03/09/safari-isnt-the-beauty-that-apple-likes-to-claim/#comment-6</link>
		<dc:creator>Supernite</dc:creator>
		<pubDate>Tue, 19 Jun 2007 15:49:42 +0000</pubDate>
		<guid isPermaLink="false">http://devhints.wordpress.com/2007/03/09/safari-isnt-the-beauty-that-apple-likes-to-claim/#comment-6</guid>
		<description>Safari works better with CSS than Firefox. Two words: inline-block.
Tab doesn&#039;t select links because you haven&#039;t told it to. Right now, I just went down the whole page, link by link.
If you don&#039;t like the mouse, get a new one. Mine cost me Â£5, and it works just fine.
Website design is easy as hell in Safari. I think you might be confused with IE, here.
It does have tabs. You wanna find those in Internet Explorer?
It doesn&#039;t have extensions. Good. Now, I don&#039;t have to waste my time searching for an added extra that does something Firefox probably should have done in the first place.

You need to actually use the damn thing. I&#039;ve gone through Firefox, Camino, Opera, SeaMonkey, and OmniWeb, and Safari is still better.</description>
		<content:encoded><![CDATA[<p>Safari works better with CSS than Firefox. Two words: inline-block.<br />
Tab doesn&#8217;t select links because you haven&#8217;t told it to. Right now, I just went down the whole page, link by link.<br />
If you don&#8217;t like the mouse, get a new one. Mine cost me Â£5, and it works just fine.<br />
Website design is easy as hell in Safari. I think you might be confused with IE, here.<br />
It does have tabs. You wanna find those in Internet Explorer?<br />
It doesn&#8217;t have extensions. Good. Now, I don&#8217;t have to waste my time searching for an added extra that does something Firefox probably should have done in the first place.</p>
<p>You need to actually use the damn thing. I&#8217;ve gone through Firefox, Camino, Opera, SeaMonkey, and OmniWeb, and Safari is still better.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
