June 26, 2008

List margins in mini (WAP 2.0 - XHTML MP) browsers

filed under: Developer Tips Ascanio @ 6:15 am

With the following style you will NOT get the list to stick to the left of the page on some browser.
More specifically the issue is about the Nokia S60 third-generation WAP 2.0 (XHTML MP) browsers, usually labeled “Services” in the phone menus.

ul.nomargins,
ul.nomargins li {
    margin:0px;
    padding:0px;
}

The following style will make irritant Nokia mini-browsers (hopefully) behave like the rest of the world does:

ul.nomargins,
ul.nomargins li {
    margin:0px 0px;
    padding:0px 0px;
}

This easy problem and solution was quite hard to spot!
Hope this helps!

June 12, 2008

Prezzi iPhone di Vodafone, Tim e AT&T

filed under: Uncategorized Ascanio @ 10:55 am

Visto il fermento nel mondo dei media attorno all’imminente uscita dell’iPhone 3G, ho seguito molte testate e mi sono trovato a chiedermi se i giornalisti …”ci sono o ci fanno”.
(more…)

March 27, 2008

SWFUpload 2 and Drupal 5: All About the Cookies!

filed under: Developer Tips Ascanio @ 2:40 am

SWFUpload doesn’t work with Drupal all the time, due to a bug (or choice) in the Adobe Flash Player, together with the Drupal philosophy. Read along to see how I fixed it. (more…)