<?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 for Bloggerrific</title>
	<atom:link href="http://www.davidjrush.com/blog/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.davidjrush.com/blog</link>
	<description>A blog written about web design, CSS, and coding for beginners</description>
	<lastBuildDate>Thu, 24 Dec 2009 02:35:14 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>Comment on Javascript: Changing Class Names to Alter CSS by David</title>
		<link>http://www.davidjrush.com/blog/2009/05/javascript-changing-class-names-to-alter-css/comment-page-1/#comment-4730</link>
		<dc:creator>David</dc:creator>
		<pubDate>Thu, 24 Dec 2009 02:35:14 +0000</pubDate>
		<guid isPermaLink="false">http://www.davidjrush.com/blog/?p=122#comment-4730</guid>
		<description>I&#039;ve never had problems with this in IE6. In fact, the className lines are meant specifically for Internet Explorer. If nothing is actually happening visibly, check to make sure your CSS is being applied correctly. I&#039;m not sure what else would cause the line to execute and change the class name, but then not display it notably on the screen...</description>
		<content:encoded><![CDATA[<p>I&#8217;ve never had problems with this in IE6. In fact, the className lines are meant specifically for Internet Explorer. If nothing is actually happening visibly, check to make sure your CSS is being applied correctly. I&#8217;m not sure what else would cause the line to execute and change the class name, but then not display it notably on the screen&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Javascript: Changing Class Names to Alter CSS by Jo</title>
		<link>http://www.davidjrush.com/blog/2009/05/javascript-changing-class-names-to-alter-css/comment-page-1/#comment-4682</link>
		<dc:creator>Jo</dc:creator>
		<pubDate>Mon, 21 Dec 2009 05:40:15 +0000</pubDate>
		<guid isPermaLink="false">http://www.davidjrush.com/blog/?p=122#comment-4682</guid>
		<description>I can&#039;t get this to work in IE6.
Is there a trick to it?

It seems to change the class name ok (when echoing it through getAttribute), but does not actually apply the new class on the screen.</description>
		<content:encoded><![CDATA[<p>I can&#8217;t get this to work in IE6.<br />
Is there a trick to it?</p>
<p>It seems to change the class name ok (when echoing it through getAttribute), but does not actually apply the new class on the screen.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on CSS Rollover Button by Mugur Marculescu</title>
		<link>http://www.davidjrush.com/blog/2009/01/css-rollover-button/comment-page-1/#comment-3805</link>
		<dc:creator>Mugur Marculescu</dc:creator>
		<pubDate>Sun, 15 Nov 2009 04:09:57 +0000</pubDate>
		<guid isPermaLink="false">http://www.davidjrush.com/blog/?p=14#comment-3805</guid>
		<description>David, 
Thanks for the reply; I double checked my css code and found the mistake. Simply forgot to target the A and was setting the properties for the DIV instead.</description>
		<content:encoded><![CDATA[<p>David,<br />
Thanks for the reply; I double checked my css code and found the mistake. Simply forgot to target the A and was setting the properties for the DIV instead.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on CSS Rollover Button by David</title>
		<link>http://www.davidjrush.com/blog/2009/01/css-rollover-button/comment-page-1/#comment-3803</link>
		<dc:creator>David</dc:creator>
		<pubDate>Sun, 15 Nov 2009 03:46:46 +0000</pubDate>
		<guid isPermaLink="false">http://www.davidjrush.com/blog/?p=14#comment-3803</guid>
		<description>Mugur, the workaround shouldn&#039;t be necessary. If you look at the CSS closely, it applies to the a tag, and not to the div surrounding it. The div is what contains the class and ID information that identifies the correct a tag to apply the CSS to, but technically you can bypass the need for the div and apply a class and/or ID to the a tag directly.</description>
		<content:encoded><![CDATA[<p>Mugur, the workaround shouldn&#8217;t be necessary. If you look at the CSS closely, it applies to the a tag, and not to the div surrounding it. The div is what contains the class and ID information that identifies the correct a tag to apply the CSS to, but technically you can bypass the need for the div and apply a class and/or ID to the a tag directly.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on CSS Rollover Button by Mugur Marculescu</title>
		<link>http://www.davidjrush.com/blog/2009/01/css-rollover-button/comment-page-1/#comment-3792</link>
		<dc:creator>Mugur Marculescu</dc:creator>
		<pubDate>Sat, 14 Nov 2009 20:06:27 +0000</pubDate>
		<guid isPermaLink="false">http://www.davidjrush.com/blog/?p=14#comment-3792</guid>
		<description>Very simple and to the point. 

I do have one issue and workaround. When I try this, the hit area that activates the roll over is the parent div (which is correct) but the hit area for the link is only the space taken up by the &quot;a&quot; tag, which depends on the size of the font, line-height and who knows what else; if it&#039;s small, it may not be anywhere near the size of your button.

I simply set the padding of the specific &quot;a&quot; tag manually to fill the parent box. Any ideas on why this is happening. Maybe there&#039;s something I could be doing to prevent the need for the fix.
Thanks for the example.</description>
		<content:encoded><![CDATA[<p>Very simple and to the point. </p>
<p>I do have one issue and workaround. When I try this, the hit area that activates the roll over is the parent div (which is correct) but the hit area for the link is only the space taken up by the &#8220;a&#8221; tag, which depends on the size of the font, line-height and who knows what else; if it&#8217;s small, it may not be anywhere near the size of your button.</p>
<p>I simply set the padding of the specific &#8220;a&#8221; tag manually to fill the parent box. Any ideas on why this is happening. Maybe there&#8217;s something I could be doing to prevent the need for the fix.<br />
Thanks for the example.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
