• [^] # Re: Filtrer le flash

    Posté par (site web personnel) . En réponse à la dépêche Mozilla 1.2.1 est sorti. Évalué à 9.

    Pour le flash, pour virer les anims d'une certaine taille, on peut mettre :

    /* this hides the usual 468x60 Flash banner ads */
    embed[type="application/x-shockwave-flash"][width="468"][height="60"] {
    display: none !important;
    visibility: hidden !important;
    }
    /* this hides the not so usual but very annoying 728x90 Flash banner ads */
    embed[type="application/x-shockwave-flash"][width="728"][height="90"] {
    display: none !important;
    visibility: hidden !important;
    }

    ou si on veut le virer completement, il suffit de ne pas spécifier de taille et c'est bon:

    embed[type="application/x-shockwave-flash"] {
    display: none !important;
    visibility: hidden !important;
    }