Thursday, 14 May 2009

Syncronize Gmail on Thunderbird, 2 computers

I found out a method where you can syncronize your Gmail account using Thunderbird. It works with the latest Thunderbird version, 2.

1. Download the following plugin: Gmail IMAP Account Setup 1.6.21

2. Install Gmail IMAP Account Setup 1.6.21

3. In your Gmail account, click Settings and make the following changes:

In the General tab, please confirm the language on top of the tab. Please use the same language in both Thunderbird and Gmail. If your Thunderbird's locale is"en-US" then you should set "English (US)" in Gmail.

In this tab, please enable IMAP by the option in the buttom of the tab. Check "Enable IMAP" to activate IMAP.

Source: Gmail IMAP Account Setup 1.6.21 official website.

4. In Thunderbird, Add a new Account. The plugin must be installed first.

5. Select Gmail - IMAP. As your Gmail display language select en-US

Tuesday, 31 March 2009

IEPNGFix: Unclickable children of element

Error from IEPNGFix on IE6.

Original code:

t = tFix.length;
if (t && (/relative|absolute/i).test(elm.currentStyle.position)) {
alert('IEPNGFix: Unclickable children of element:' +
'\n\n<' + elm.nodeName + (elm.id && ' id=' + elm.id) + '>');
}


Remove:

alert('IEPNGFix: Unclickable children of element:' +
'\n\n<' + elm.nodeName + (elm.id && ' id=' + elm.id) + '>');


The result:

t = tFix.length;
if (t && (/relative|absolute/i).test(elm.currentStyle.position)) {
}