Closed (fixed)
Project:
Slash
Version:
4.6.x-1.x-dev
Component:
User interface
Priority:
Minor
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
30 Nov 2005 at 13:34 UTC
Updated:
26 Dec 2005 at 20:01 UTC
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
Comment #1
frjo commentedGo 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.
Comment #2
migloth commentedI 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.Comment #3
frjo commentedOK, 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.
Comment #4
frjo commented