<?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>Stephen Lacy &#187; CSS</title>
	<atom:link href="http://www.lacy.ie/tag/css/feed" rel="self" type="application/rss+xml" />
	<link>http://www.lacy.ie</link>
	<description>Impressions as an ASP.Net Developer</description>
	<lastBuildDate>Mon, 05 Jul 2010 09:26:28 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Changing the cursor using javascript in chrome without the mouse moving</title>
		<link>http://www.lacy.ie/changing-the-cursor-using-javascript-in-chrome-without-the-mouse-moving</link>
		<comments>http://www.lacy.ie/changing-the-cursor-using-javascript-in-chrome-without-the-mouse-moving#comments</comments>
		<pubDate>Fri, 21 May 2010 10:52:39 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[Javascript]]></category>

		<guid isPermaLink="false">http://www.lacy.ie/?p=290</guid>
		<description><![CDATA[I had a DIV html element absolute positioned, transparent and with an astronomical z-index. Whenever I want to show that the web page is contacting the server and that the user should be patient I would change the css display value to the default and the cursor to progress. This stopped the user from causing [...]


Related posts:<ol><li><a href='http://www.lacy.ie/cant-register-javascript-for-invisible-control' rel='bookmark' title='Permanent Link: Can&#039;t Register Javascript for Invisible Control'>Can&#039;t Register Javascript for Invisible Control</a> <small>I was writing an ASP.Net Dialog Control and I overwrote...</small></li>
</ol>

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p>I had a DIV html element absolute positioned, transparent and with an astronomical z-index.</p>
<p>Whenever I want to show that the web page is contacting the server and that the user should be patient I would change the css display value to the default and the cursor to progress. This stopped the user from causing other server requests like clicking on the same button multiple times while also giving them a sense that the application is working.</p>
<p>However in while in IE and firefox once I set display to none and the cursor back to the default the progress cursor would disappear, in chrome the progress cursor would remain until the cursor was moved by the user. This meant that the user might not be aware that the webpage request was complete and possibly eventually think that the application had crashed.</p>
<p>The solution was simple, change the z-index to -1 when the request was complete and chrome would behave as the other browsers had done previously.</p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.lacy.ie%2Fchanging-the-cursor-using-javascript-in-chrome-without-the-mouse-moving&amp;linkname=Changing%20the%20cursor%20using%20javascript%20in%20chrome%20without%20the%20mouse%20moving"><img src="http://www.lacy.ie/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a> </p>

<p>Related posts:<ol><li><a href='http://www.lacy.ie/cant-register-javascript-for-invisible-control' rel='bookmark' title='Permanent Link: Can&#039;t Register Javascript for Invisible Control'>Can&#039;t Register Javascript for Invisible Control</a> <small>I was writing an ASP.Net Dialog Control and I overwrote...</small></li>
</ol></p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.lacy.ie/changing-the-cursor-using-javascript-in-chrome-without-the-mouse-moving/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Calendar Extender arrows in IE8 bug</title>
		<link>http://www.lacy.ie/calendar-extender-arrows-in-ie8-bug</link>
		<comments>http://www.lacy.ie/calendar-extender-arrows-in-ie8-bug#comments</comments>
		<pubDate>Tue, 25 Aug 2009 12:21:33 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[Troubleshooting]]></category>
		<category><![CDATA[Ajax.Net]]></category>
		<category><![CDATA[AjaxControlToolkit]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[IE8]]></category>

		<guid isPermaLink="false">http://lacy.ie/?p=185</guid>
		<description><![CDATA[.ajax__calendar_title {width:150px; margin:auto; padding:3px;} Taken from here: http://forums.asp.net/p/1395899/3000757.aspx If you are finding that you can&#8217;t click on the arrows on the Calendar Extender in IE 8 try using the following css. .ajax__calendar_title{width:150px; margin:auto; padding:3px;} It stops the calendar title from extending over the arrows. No related posts. Related posts brought to you by Yet Another Related [...]


No related posts.

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<div id="_mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">.ajax__calendar_title</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">{width:150px; margin:auto; padding:3px;}</div>
<p>Taken from here: <a href="http://forums.asp.net/p/1395899/3000757.aspx">http://forums.asp.net/p/1395899/3000757.aspx</a></p>
<p>If you are finding that you can&#8217;t click on the arrows on the Calendar Extender in IE 8 try using the following css.</p>
<p>.ajax__calendar_title{width:150px; margin:auto; padding:3px;}</p>
<p>It stops the calendar title from extending over the arrows.</p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.lacy.ie%2Fcalendar-extender-arrows-in-ie8-bug&amp;linkname=Calendar%20Extender%20arrows%20in%20IE8%20bug"><img src="http://www.lacy.ie/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a> </p>

<p>No related posts.</p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.lacy.ie/calendar-extender-arrows-in-ie8-bug/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>
<!-- WP Super Cache is installed but broken. The path to wp-cache-phase1.php in wp-content/advanced-cache.php must be fixed! -->