Text at the beginning of a news page (the one that you reach when clicking 'more' from an aggregator block) does not show in IE 6. Text can be made visible by selecting with the mouse. I discovered this on my own site (http://www.golfi.org/aggregator/sources/3) and also found the same behavior on http://xdeb.org/aggregator/sources/5.

Comments

frjo’s picture

Status: Active » Closed (duplicate)

See http://drupal.org/node/42615 for a quick hack solution.

jmrukkers’s picture

Thank you for that link. That solution did not work immediately, but pointed me in the right direction. I got it to work now by adding the zoom: 100% workaround to div#aggregator in modules.css:

div#aggregator {
background: #fff;
padding: 5px;
border: 1px solid #fff;
font-size: 0.84em;
zoom: 100%;
}