If anybody uses PMs as much as I do, then here's the link for it.
EDIT: After some experimentation with Firebug (a Firefox extension), I have found the following (loads of technical explanation below!):
html, body {
color: white;
}
kingizor wrote:No, the issue seems to have been resolved.
Mattrizzle wrote:The color of some text was recently changed to white, rendering it invisible against the white background.
Qyzbud wrote:I'm adding a page title notifier
var chats = (document.getElementById('mChatData').getElementsByTagName('div').length / 2);
var chats2 = (document.getElementById('mChatData').getElementsByTagName('div').length / 2);
function chat_fetch() {
window.setTimeout(chat_fetch, 10000);
chats2 = (document.getElementById('mChatData').getElementsByTagName('div').length / 2);
if (chats2 > chats) {
document.getElementsByTagName('title')[0].innerHTML = '{ ' + (chats2 - chats) + ' }';
}
else {
document.getElementsByTagName('title')[0].innerHTML = '{ 0 }';
}
}
document.body.addEventListener("mouseover", function () {
chats = chats2;
});
chat_fetch();
Return to DKC Atlas Forum Discussion
Users browsing this forum: No registered users and 3 guests