I don´t know if this is the right place to ask, but I have noticed that content from questions on SO affect how my igoogle page is displayed.

I have active questions tagged css as one of the boxes on my igoogle page and now for example, two thirds of my igoogle page is covered with a semi-transparent overlay caused by this question (one of the four questions displayed in the box).

Is there something I can do to avoid this, or do either SO or Google need to change something to avoid this effect?

Normally the effects are small, but now I can´t even see the igoogle page.

link|improve this question
1  
I believe this is Google's fault.. ? And it's kinda a serious bug too, I could write a question that injects javascript in your iGoogle page and steal your password (or at least try) – Koper Jan 20 '10 at 21:01
So it seems. And disabling javascript on google.com isn´t really an option... – jeroen Jan 20 '10 at 22:58
feedback

1 Answer

OK, so active questions tagged RSS is this feed:

http://stackoverflow.com/feeds/tag/css

If you view source on the feed, then search for the name of that question, "css div overlay and jquery", you'll find that the question body is properly encoded:

<id>http://stackoverflow.com/questions/2054567/css-div-overlay-and-jquery</id>
<re:rank scheme="http://stackoverflow.com">-2</re:rank>
<title type="text">css div overlay and jquery</title>
<category scheme="http://stackoverflow.com/feeds/tag/css/tags" term="css"/><category scheme="http://stackoverflow.com/feeds/tag/css/tags" term="jquery"/><category scheme="http://stackoverflow.com/feeds/tag/css/tags" term="overlay"/>
<author><name>ngreenwood6</name></author>
<link rel="alternate" href="http://stackoverflow.com/questions/2054567/css-div-overlay-and-jquery" />
<published>2010-01-13T05:05:01Z</published>
<updated>2010-01-20T16:10:42Z</updated>
<summary type="html">
    &lt;p&gt;This is more or less a css question but i am using it with jquery. Ok so basically what I have is this:&lt;/p&gt;

&lt;pre&gt;&lt;code&gt;&amp;lt;div style=&quot;overflow: hidden; width: 1000px; height: 450px; background-color: rgb(0, 0, 0); position: relative;&quot; id=&quot;wrapper&quot;&amp;gt;
&amp;lt;div style=&quot;background-color: rgb(255, 255, 255); opacity: 0.9; top: 0pt; left: 0pt; width: 1000px; height: 450px; position: absolute; z-index: 500;&quot; id=&quot;mask&quot;&amp;gt;&amp;lt;/div&amp;gt;
&amp;lt;div class=&quot;ui-draggable&quot; style=&quot;margin: 60px auto auto; position: relative; width: 1550px; height: 340px;&quot; id=&quot;test&quot;&amp;gt;
&amp;lt;div style=&quot;float: left; margin-left: 10px; width: 100px; position: relative;&quot; class=&quot;row&quot;&amp;gt;
    &amp;lt;div style=&quot;width: 100px; height: 100px; margin-top: 10px; position: relative;&quot;&amp;gt;&amp;lt;img style=&quot;width: 100px; height: 100px; position: relative;&quot; class=&quot;img&quot; src=&quot;/images/Chrysanthemum.jpg&quot;&amp;gt;&amp;lt;/div&amp;gt;
    &amp;lt;div style=&quot;width: 100px; height: 100px; margin-top: 10px; position: relative;&quot;&amp;gt;&amp;lt;img style=&quot;width: 100px; height: 100px; position: relative;&quot; class=&quot;img&quot; src=&quot;/images/Desert.jpg&quot;&amp;gt;&amp;lt;/div&amp;gt;
    &amp;lt;div style=&quot;width: 100px; height: 100px; margin-top: 10px; position: relative;&quot;&amp;gt;&amp;lt;img style=&quot;width: 100px; height: 100px; position: relative;&quot; class=&quot;img&quot; src=&quot;/images/Hydrangeas.jpg&quot;&amp;gt;&amp;lt;/div&amp;gt;
&amp;lt;/div&amp;gt;
&amp;lt;div style=&quot;float: left; margin-left: 10px; width: 100px; position: relative;&quot; class=&quot;row&quot;&amp;gt;
    &amp;lt;div style=&quot;width: 100px; height: 100px; margin-top: 10px; position: relative;&quot;&amp;gt;&amp;lt;img style=&quot;width: 100px; height: 100px; position: relative;&quot; class=&quot;img&quot; src=&quot;/images/Jellyfish.jpg&quot;&amp;gt;&amp;lt;/div&amp;gt;
    &amp;lt;div style=&quot;width: 100px; height: 100px; margin-top: 10px; position: relative;&quot;&amp;gt;&amp;lt;img style=&quot;width: 100px; height: 100px; position: relative;&quot; class=&quot;img&quot; src=&quot;/images/Koala.jpg&quot;&amp;gt;&amp;lt;/div&amp;gt;
    &amp;lt;div style=&quot;width: 100px; height: 100px; margin-top: 10px; position: relative;&quot;&amp;gt;&amp;lt;img style=&quot;width: 100px; height: 100px; position: relative;&quot; class=&quot;img&quot; src=&quot;/images/Lighthouse.jpg&quot;&amp;gt;&amp;lt;/div&amp;gt;
&amp;lt;/div&amp;gt;
&amp;lt;/div&amp;gt;

&amp;lt;/div&amp;gt;
&amp;lt;div style=&quot;position: absolute; left: 978px; top: 223px; color: rgb(255, 255, 255);&quot; id=&quot;next-btn&quot;&amp;gt;Next&amp;lt;/div&amp;gt;
&amp;lt;div style=&quot;position: absolute; left: 8px; top: 223px; color: rgb(255, 255, 255);&quot; id=&quot;prev-btn&quot;&amp;gt;Prev&amp;lt;/div&amp;gt;

&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;What I am doing with the mask div is trying to get it to overlay the whole wrapper. So I set its width and height to the height of the wrapper. This works fine in firefox, chrome and safari. However, in internet explorer it is not working. Anyone know how I can make this overlay. I tried setting the position to absolute which worked fine except one thing. There is somethign that is going on top of this mask. Its position is relative. I set the one on top to a z-index of 1000 and the mask to 500, however it seems there is a bug in ie that automatically makes an absolute div be on top of everything. Any help is appreciated on how I can accomplish this.&lt;/p&gt;

</summary>

Is this not correct?

link|improve this answer
Yep, it seems that everything is encoded. Really weird (and dangerous...) that Google uses the html output instead of the encoded source in igoogle. I guess then that there is nothing that I can do to avoid that from happening again? Let´s just hope that nobody on SO writes a question containing dubious javascript... – jeroen Jan 20 '10 at 22:54
feedback

You must log in to answer this question.

Not the answer you're looking for? Browse other questions tagged