Development
Brazilian sites using Drupal
So here's a short list with some of the best looking Brazilian Drupal sites I've been to.
Mostre um block apenas para usuários do IE 6
O código seguinte é bem simples, vai no corpo da condição (PHP) da visibilidade do bloco. Se o usuário estiver usando IE inferior a versão 7, esse block será visível a ele(a).
The following code displays a block only to users running Internet Explorer versions less than 7. It should go in the Page specific visibility settings for the block.
<?php
$browser = $_SERVER['HTTP_USER_AGENT'];
//running internet explorer
if($msie = strpos($browser, "MSIE"))
{
//version number
$ver = substr($browser, $msie + 5, 3);