Tuesday, January 15, 2013

The server “imap.gmail.com” cannot be contacted on port 993

Apple mail started giving me this error: the server “imap.gmail.com” cannot be contacted on port 993

Fixed it by going into preferences > accounts and chaning imap.gmail.com to imap.googlemail.com

Monday, January 14, 2013

Google Maps with Bootstrap squashes markers

When using Google Maps with the excellent Bootstrap styles the markers on your map will appear squashed or thinner than they should be.  This is because Bootstrap includes a css style that sets all images to 100% max-width.

To fix this add this style:

.myMap img {
    max-width: none !important;
}