Kleyber,
Consegui centralizar utilizando uma rotina disponibilizada em um post do qual vc participou.
header(“Pragma: no-cache”);
header(“Cache: no-cache”);
header(“Cache-Control: no-cache, must-revalidate”);
header(“Expires: Mon, 26 Jul 1997 05:00:00 GMT”);
$dir = opendir($this->Ini->path_aplicacao . “…”);
while ($file = readdir($dir))
{
if ($file != ‘.’ && $file != ‘…’ && $file != ‘_lib’)
{
sc_apl_status($file, ‘off’);
}
}
closedir($dir);
// FUNDO DA TELA DE LOGIN
print ("
body {
width:100%;
height:100%;
overflow:hidden;
position:absolute;
top:0;
left:0;
margin:0;
z-index:0;
opacity:0.6;
background-repeat: no-repeat;
background-image: url(../_lib/img/fundo.jpg);
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
}
a:link,
a:active,
a:visited {
color: #FFFFFF;
text-decoration: none;
}
a:hover {
color: #FFFFFF;
text-decoration: underline;
}
");