<?xml version="1.0"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom">
	<channel>
		<title>Forum posts to 'All other Modules'</title>
		<link>http://www.silverstripe.org/all-other-modules/rss</link>
		<atom:link href="http://www.silverstripe.org/all-other-modules/rss" rel="self" type="application/rss+xml" />
		<description></description>

		
		<item>
			<title>Re: Lightwindow not working properly in IE!</title>
			<link>http://www.silverstripe.org/all-other-modules/show/251991?start=8#post276624</link>
			<description>&lt;p&gt;Just wanted to add that lennie's fix worked for me as well - I had lightwindow working with flickrservice in Firefox but not IE, but the fix works like a charm.&lt;/p&gt;&lt;p&gt;Many thanks!&lt;/p&gt;&lt;br&gt;&lt;br&gt;Posted to: Lightwindow not working properly in IE! &lt;a href=&quot;http://www.silverstripe.org/all-other-modules/show/251991?start=8#post276624&quot;&gt;Show Thread&lt;/a&gt; | &lt;a href=&quot;http://www.silverstripe.org/all-other-modules/reply/251991?start=8#post276624&quot;&gt;Post Reply&lt;/a&gt;</description>
			<pubDate>Mon, 11 Jan 2010 11:23:01 +1300</pubDate>
			<dc:creator>LoopyLarry</dc:creator>
			<guid>http://www.silverstripe.org/all-other-modules/show/251991?start=8#post276624</guid>
		</item>
		
		<item>
			<title>Re: Lightwindow not working properly in IE!</title>
			<link>http://www.silverstripe.org/all-other-modules/show/251991?start=8#post275695</link>
			<description>&lt;p&gt;Good Job lennie,&lt;br /&gt;This code worked for me. Thanks for the expertise.&lt;/p&gt;&lt;br&gt;&lt;br&gt;Posted to: Lightwindow not working properly in IE! &lt;a href=&quot;http://www.silverstripe.org/all-other-modules/show/251991?start=8#post275695&quot;&gt;Show Thread&lt;/a&gt; | &lt;a href=&quot;http://www.silverstripe.org/all-other-modules/reply/251991?start=8#post275695&quot;&gt;Post Reply&lt;/a&gt;</description>
			<pubDate>Fri, 18 Dec 2009 13:51:30 +1300</pubDate>
			<dc:creator>danqxx</dc:creator>
			<guid>http://www.silverstripe.org/all-other-modules/show/251991?start=8#post275695</guid>
		</item>
		
		<item>
			<title>Re: Lightwindow not working properly in IE!</title>
			<link>http://www.silverstripe.org/all-other-modules/show/251991?start=0#post272968</link>
			<description>&lt;p&gt;Yep I had the same issue and the 100% fix did not work.  here is what to do&lt;/p&gt;&lt;p&gt;Replace:&lt;/p&gt;&lt;p&gt;this.checkImage&lt;em&gt; = new PeriodicalExecuter(function(i) {&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;if (!(typeof $('lightwindow_image_'+i).naturalWidth != &quot;undefined&quot; &amp;amp;&amp;amp; $('lightwindow_image_'+i).naturalWidth == 0)) {&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;this.checkImage&lt;em&gt;.stop();&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;var imageHeight = $('lightwindow_image_'+i).getHeight();&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;if (imageHeight &amp;gt; this.resizeTo.height) {&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;this.resizeTo.height = imageHeight;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;}&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;this.resizeTo.width += $('lightwindow_image_'+i).getWidth();&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;this.imageCount--;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;$('lightwindow_image_'+i).setStyle({&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;height: '100%', width: '100%'&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;});&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;if (this.imageCount == 0) {&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;this._processWindow();&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;}&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;}&lt;/p&gt;&lt;p&gt;}.bind(this, i), 1);&lt;/p&gt;&lt;p&gt;With:&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;// We have to do this instead of .onload &lt;br /&gt;var ie = (document.all)?1:0;&lt;br /&gt;this.checkImage&lt;em&gt; = new PeriodicalExecuter(function(i) {&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;if(ie){ //THE BROWSER IS IE&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;if ( $('lightwindow_image_'+i).complete &amp;amp;&amp;amp; !(typeof $('lightwindow_image_'+i).naturalWidth != &quot;undefined&quot; &amp;amp;&amp;amp; $('lightwindow_image_'+i).naturalWidth == 0)) {&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;this.checkImage&lt;em&gt;.stop();&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;var imageHeight = $('lightwindow_image_'+i).getHeight();&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;if (imageHeight &amp;gt; this.resizeTo.height) {&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;this.resizeTo.height = imageHeight;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;}&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;this.resizeTo.width += $('lightwindow_image_'+i).getWidth();&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;this.imageCount--;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;$('lightwindow_image_'+i).setStyle({&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;height: '100%', width: '100%'&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;});&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;if (this.imageCount == 0) {&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;this._processWindow();&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;}&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;//alert('IE has been detected')&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;}&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;}&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;else&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;{//NOT IE, PROBABLY FF, OPERA, OTHER&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;//this line works for all other browsers&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;if ($('lightwindow_image_'+i).complete &amp;amp;&amp;amp; !(typeof $('lightwindow_image_'+i).naturalWidth != &quot;undefined&quot; &amp;amp;&amp;amp; $('lightwindow_image_'+i).naturalWidth == 0)) {&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;this.checkImage&lt;em&gt;.stop();&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;var imageHeight = $('lightwindow_image_'+i).getHeight();&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;if (imageHeight &amp;gt; this.resizeTo.height) {&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;this.resizeTo.height = imageHeight;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;}&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;this.resizeTo.width += $('lightwindow_image_'+i).getWidth();&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;this.imageCount--;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;$('lightwindow_image_'+i).setStyle({&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;height: '100%', width: '100%'&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;});&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;if (this.imageCount == 0) {&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;this._processWindow();&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;}&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;}&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;}&lt;/p&gt;&lt;p&gt;}.bind(this, i), 1);&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/p&gt;&lt;p&gt;see this post &lt;br /&gt;&lt;a href=&quot;http://www.rtraction.com/blog/devit/lightwindow-image-sizing-bug-in-ie6-on-first-click-of-gallery.html&quot;&gt;http://www.rtraction.com/blog/devit/lightwindow-image-sizing-bug-in-ie6-on-first-click-of-gallery.html&lt;/a&gt;&lt;/p&gt;&lt;p&gt;it will work now&lt;/em&gt;&lt;/em&gt;&lt;/em&gt;&lt;/em&gt;&lt;/em&gt;&lt;/p&gt;&lt;br&gt;&lt;br&gt;Posted to: Lightwindow not working properly in IE! &lt;a href=&quot;http://www.silverstripe.org/all-other-modules/show/251991?start=0#post272968&quot;&gt;Show Thread&lt;/a&gt; | &lt;a href=&quot;http://www.silverstripe.org/all-other-modules/reply/251991?start=0#post272968&quot;&gt;Post Reply&lt;/a&gt;</description>
			<pubDate>Tue, 10 Nov 2009 11:43:14 +1300</pubDate>
			<dc:creator>lennie</dc:creator>
			<guid>http://www.silverstripe.org/all-other-modules/show/251991?start=0#post272968</guid>
		</item>
		
		<item>
			<title>Re: Lightwindow not working properly in IE!</title>
			<link>http://www.silverstripe.org/all-other-modules/show/251991?start=0#post267945</link>
			<description>&lt;p&gt;I am having the same problems with IE (7.0) and Lightbox as described over. Guilleard's fix doesn't work here. I'm running SS 2.3.2 and Flickrservice 0.3-module.&lt;/p&gt;&lt;p&gt;Any one have a clue?&lt;/p&gt;&lt;br&gt;&lt;br&gt;Posted to: Lightwindow not working properly in IE! &lt;a href=&quot;http://www.silverstripe.org/all-other-modules/show/251991?start=0#post267945&quot;&gt;Show Thread&lt;/a&gt; | &lt;a href=&quot;http://www.silverstripe.org/all-other-modules/reply/251991?start=0#post267945&quot;&gt;Post Reply&lt;/a&gt;</description>
			<pubDate>Mon, 31 Aug 2009 01:18:07 +1200</pubDate>
			<dc:creator>Oyster</dc:creator>
			<guid>http://www.silverstripe.org/all-other-modules/show/251991?start=0#post267945</guid>
		</item>
		
		<item>
			<title>Re: Lightwindow not working properly in IE!</title>
			<link>http://www.silverstripe.org/all-other-modules/show/251991?start=0#post257253</link>
			<description>&lt;p&gt;Thanks guillearg!  This fix worked like a charm!!&lt;/p&gt;&lt;br&gt;&lt;br&gt;Posted to: Lightwindow not working properly in IE! &lt;a href=&quot;http://www.silverstripe.org/all-other-modules/show/251991?start=0#post257253&quot;&gt;Show Thread&lt;/a&gt; | &lt;a href=&quot;http://www.silverstripe.org/all-other-modules/reply/251991?start=0#post257253&quot;&gt;Post Reply&lt;/a&gt;</description>
			<pubDate>Sat, 28 Mar 2009 14:30:15 +1300</pubDate>
			<dc:creator>jimmijammit</dc:creator>
			<guid>http://www.silverstripe.org/all-other-modules/show/251991?start=0#post257253</guid>
		</item>
		
		<item>
			<title>Re: Lightwindow not working properly in IE!</title>
			<link>http://www.silverstripe.org/all-other-modules/show/251991?start=0#post255280</link>
			<description>&lt;p&gt;I had the same problem, and after doing some research found this: &lt;br /&gt;&lt;a href=&quot;http://www.trilodge.de/blog/2007/11/04/lightwindow-ie-fix/&quot;&gt;http://www.trilodge.de/blog/2007/11/04/lightwindow-ie-fix/&lt;/a&gt;&lt;/p&gt;&lt;p&gt;The page is in german (looks like), it tells you to replace a line in the lightwindow.js file&lt;/p&gt;&lt;p&gt;This part of the code:&lt;/p&gt;&lt;p&gt;$(’lightwindow_image_’+i).setStyle({&lt;br /&gt;height: ‘100%’&lt;br /&gt;});&lt;/p&gt;&lt;p&gt;With this one:&lt;br /&gt;$(’lightwindow_image_’+i).setStyle({&lt;br /&gt;height: ‘100%’, width: ‘100%’&lt;br /&gt;});&lt;/p&gt;&lt;p&gt;It says its in line 1231, but I found it in line 1244. After making that change started working for me on IE. Hope it helps&lt;/p&gt;&lt;p&gt;Guille&lt;/p&gt;&lt;br&gt;&lt;br&gt;Posted to: Lightwindow not working properly in IE! &lt;a href=&quot;http://www.silverstripe.org/all-other-modules/show/251991?start=0#post255280&quot;&gt;Show Thread&lt;/a&gt; | &lt;a href=&quot;http://www.silverstripe.org/all-other-modules/reply/251991?start=0#post255280&quot;&gt;Post Reply&lt;/a&gt;</description>
			<pubDate>Tue, 03 Mar 2009 12:05:58 +1300</pubDate>
			<dc:creator>guillearg</dc:creator>
			<guid>http://www.silverstripe.org/all-other-modules/show/251991?start=0#post255280</guid>
		</item>
		
		<item>
			<title>Re: Lightwindow not working properly in IE!</title>
			<link>http://www.silverstripe.org/all-other-modules/show/251991?start=0#post253459</link>
			<description>&lt;p&gt;I'm experiencing this as well. I receive an error message that reads:&lt;/p&gt;&lt;p&gt;Line: 1597&lt;br /&gt;Char: 9&lt;br /&gt;Error: Invalid argument&lt;br /&gt;Code: 0&lt;/p&gt;&lt;p&gt;Unfortunately I do not understand the code enough to know how to fix this.&lt;/p&gt;&lt;br&gt;&lt;br&gt;Posted to: Lightwindow not working properly in IE! &lt;a href=&quot;http://www.silverstripe.org/all-other-modules/show/251991?start=0#post253459&quot;&gt;Show Thread&lt;/a&gt; | &lt;a href=&quot;http://www.silverstripe.org/all-other-modules/reply/251991?start=0#post253459&quot;&gt;Post Reply&lt;/a&gt;</description>
			<pubDate>Tue, 03 Feb 2009 13:18:37 +1300</pubDate>
			<dc:creator>sjbmaine</dc:creator>
			<guid>http://www.silverstripe.org/all-other-modules/show/251991?start=0#post253459</guid>
		</item>
		
		<item>
			<title>Re: Lightwindow not working properly in IE!</title>
			<link>http://www.silverstripe.org/all-other-modules/show/251991?start=0#post253395</link>
			<description>&lt;p&gt;check whether your browser returns any javascript errors&lt;/p&gt;&lt;br&gt;&lt;br&gt;Posted to: Lightwindow not working properly in IE! &lt;a href=&quot;http://www.silverstripe.org/all-other-modules/show/251991?start=0#post253395&quot;&gt;Show Thread&lt;/a&gt; | &lt;a href=&quot;http://www.silverstripe.org/all-other-modules/reply/251991?start=0#post253395&quot;&gt;Post Reply&lt;/a&gt;</description>
			<pubDate>Mon, 02 Feb 2009 00:32:17 +1300</pubDate>
			<dc:creator>Nivanka</dc:creator>
			<guid>http://www.silverstripe.org/all-other-modules/show/251991?start=0#post253395</guid>
		</item>
		
		<item>
			<title>Re: Lightwindow not working properly in IE!</title>
			<link>http://www.silverstripe.org/all-other-modules/show/251991?start=0#post253341</link>
			<description>&lt;p&gt;I cant give you an answer sorry - but I can tell you the pattern. The first time you load any image it seems to fail to get the image size in-time so the window opens up the wrong size&lt;/p&gt;&lt;p&gt;The second time you open an image (any image already in your browsers cache) It works correctly because it already knows the image size from last time.&lt;/p&gt;&lt;p&gt;Ive tried updating to latest daily builds for flicker and YouTube galleries but this or something I did has stopped my light windows working at all.&lt;/p&gt;&lt;br&gt;&lt;br&gt;Posted to: Lightwindow not working properly in IE! &lt;a href=&quot;http://www.silverstripe.org/all-other-modules/show/251991?start=0#post253341&quot;&gt;Show Thread&lt;/a&gt; | &lt;a href=&quot;http://www.silverstripe.org/all-other-modules/reply/251991?start=0#post253341&quot;&gt;Post Reply&lt;/a&gt;</description>
			<pubDate>Sat, 31 Jan 2009 21:59:33 +1300</pubDate>
			<dc:creator>warwick</dc:creator>
			<guid>http://www.silverstripe.org/all-other-modules/show/251991?start=0#post253341</guid>
		</item>
		
		<item>
			<title>Re: Lightwindow not working properly in IE!</title>
			<link>http://www.silverstripe.org/all-other-modules/show/251991?start=0#post252139</link>
			<description>&lt;p&gt;Is there anyone who has a solution to this? I really need to get this issue solved. Thank you&lt;/p&gt;&lt;br&gt;&lt;br&gt;Posted to: Lightwindow not working properly in IE! &lt;a href=&quot;http://www.silverstripe.org/all-other-modules/show/251991?start=0#post252139&quot;&gt;Show Thread&lt;/a&gt; | &lt;a href=&quot;http://www.silverstripe.org/all-other-modules/reply/251991?start=0#post252139&quot;&gt;Post Reply&lt;/a&gt;</description>
			<pubDate>Tue, 13 Jan 2009 04:46:02 +1300</pubDate>
			<dc:creator>Fading</dc:creator>
			<guid>http://www.silverstripe.org/all-other-modules/show/251991?start=0#post252139</guid>
		</item>
		
		<item>
			<title>Lightwindow not working properly in IE!</title>
			<link>http://www.silverstripe.org/all-other-modules/show/251991#post251991</link>
			<description>&lt;p&gt;I am not sure if this has been posted before, so I will ask anyways.&lt;/p&gt;&lt;p&gt;Lightwindow works fine in Firefox, but has problems in IE. When browsing through the images some open  fine and others open small and narrow and the image will be really tiny, Kind of weird. It is not every image. Am I missing something that will halp this work properly in IE?&lt;/p&gt;&lt;p&gt;Thank you,&lt;/p&gt;&lt;br&gt;&lt;br&gt;Posted to: Lightwindow not working properly in IE! &lt;a href=&quot;http://www.silverstripe.org/all-other-modules/show/251991#post251991&quot;&gt;Show Thread&lt;/a&gt; | &lt;a href=&quot;http://www.silverstripe.org/all-other-modules/show/251991#post251991&quot;&gt;Post Reply&lt;/a&gt;</description>
			<pubDate>Sat, 10 Jan 2009 14:55:43 +1300</pubDate>
			<dc:creator>Fading</dc:creator>
			<guid>http://www.silverstripe.org/all-other-modules/show/251991#post251991</guid>
		</item>
		

	</channel>
</rss>