Hello,
Could you please tell me how to make this text show smaller and in blue? Text: Previsão Alargada...
$cidades = explode(",", $cidades);
$content .="<table onmouseover=\"this.style.cursor='pointer'; return true;\" onmouseout=\"return true;\">";
for($i=0; $i<count($cidades); $i++)
{
$content .="<tr><td>";
$content .= apanha_tempo($cidades[$i],$graus, $mosConfig_cachepath);
$content .="</td></tr>";
}
$content .= "</table>";
$content .= "<a href='http://www.saladosprofessores.com/index.php?option=com_eweather&Itemid=113'><div class='small'> Previsão Alargada...</a></div>";
?>
Thank you,
Raul Nunes
$cidades = explode(",", $cidades);
$content .="<table onmouseover=\"this.style.cursor='pointer'; return true;\" onmouseout=\"return true;\">";
for($i=0; $i<count($cidades); $i++)
{
$content .="<tr><td>";
$content .= apanha_tempo($cidades[$i],$graus, $mosConfig_cachepath);
$content .="</td></tr>";
}
$content .= "</table>";
$content .= "<a href='http://www.saladosprofessores.com/index.php?option=com_eweather&Itemid=113'><small><div class='smalltext' style='color: blue;'> Previsão Alargada...</a></div></small>";
?>
Try that.