I understand that this theme hasn't been tested in IE. I've used it with IE and have observered some weirdness. When viewing aggregator pages, some of the text is hidden until selected with the cursor or until you scroll it off the screen and slowly scroll it back on. If you scroll rapidly, different text will disappear and you have to select it with the cursor or scroll it off and back on the screen to see it. This only seems to occur when using aggregator.module.

Comments

frjo’s picture

Go to the module.css file that comes with the slash theme and locate the Aggregator section.

Comment out all the lines thats has to do with the Aggregator with /* */, like this.

/*
#aggregator {
background-color: #fff;
border: 1px solid #ccc;
padding: 5px;
}

etc.

*/

Please report back the result.

migloth’s picture

I tried that and it did work but it also got rid of the nice white background. I think it has something to do with the nesting of <div> within <td>. Likely an IE bug.

frjo’s picture

OK, now we know for sure it's a IE CSS related bug.

If you have time you can try to comment out the rules one by one and see which one(s) IE have trouble with.

The white background is controlled by this rule:

#aggregator {
background-color: #fff;
border: 1px solid #ccc;
padding: 5px;

I don't think it that one IE has problems with.

frjo’s picture

Status: Active » Closed (fixed)