Usamos cookies para medir audiência e melhorar sua experiência. Você pode aceitar ou recusar a qualquer momento. Veja sobre o iMasters.
Bom dia pessoal, estou com um problemão, fiz um layout para um site php e ele aparece em todos os navegadores menos no Internet Explorer, como isso é possivel? Alguem pode me ajudar a resolver isso?
Codigo da pagina
<html>
<head>
<title>Currículo ativo - Trabalhe na area offshore, petróleo e gás</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<link type="text/css" href="css/style.css" rel="stylesheet" />
<script type="text/javascript" src="include/mau.js"></script>
<script type="text/javascript">
$(document).ready(function() {
$('a[name=modal]').click(function(e) {
e.preventDefault();
var id = $(this).attr('href');
var maskHeight = $(document).height();
var maskWidth = $(window).width();
$('#mask').css({'width':maskWidth,'height':maskHeight});
$('#mask').fadeIn(1000);
$('#mask').fadeTo("slow",0.8);
//Get the window height and width
var winH = $(window).height();
var winW = $(window).width();
$(id).css('top', winH/2-$(id).height()/2);
$(id).css('left', winW/2-$(id).width()/2);
$(id).fadeIn(2000);
});
$('.window .close').click(function (e) {
e.preventDefault();
$('#mask').hide();
$('.window').hide();
});
$('#mask').click(function () {
$(this).hide();
$('.window').hide();
});
});
</script>
<style type="text/css">
<!--jquery
body {
font-family:verdana;
font-size:15px;
}
a {color:#333; text-decoration:none}
a:hover {color:#ccc; text-decoration:none}
#mask {
position:absolute;
left:0;
top:0;
z-index:9000;
background-color:#000;
display:none;
}
#boxes .window {
position:absolute;
left:0;
top:0;
width:440px;
height:200px;
display:none;
z-index:9999;
padding:20px;
}
#boxes #dialog {
width:800px;
height:600px;
padding:10px;
background-color:#ffffff;
}
#boxes #dialog1 {
width:375px;
height:203px;
}
#dialog1 .d-header {
background:url(imagens/caixalog.png) no-repeat 0 0 transparent;
width:578px;
height:354px;
}
#dialog1 .d-header input {
position:relative;
top:90px;
left:150px;
border:1px solid #006;
height:22px;
width:200px;
font-size:15px;
padding:5px;
margin-top:4px;
}
#dialog1 .d-blank {
float:left;
background:url(bg.png) no-repeat 0 0 transparent;
}
#dialog1 .d-login {
float:left;
width:108px;
height:53px;
}
#boxes #dialog2 {
background:url(imagens/caixalog.png) no-repeat 0 0 transparent;
width:578px;
height:354px;
padding:50px 0 20px 25px;
}body {
background-image: url(imagens/bg.png);
background-repeat: repeat-x;
}
</style>
</head>
<body bgcolor="#FFFFFF" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0"><table id="Table_01" width="959" height="591" border="0" cellpadding="0" cellspacing="0" align="center">
<tr>
<td height="569"><img src="imagens/box.png" width="1043" height="569"></td>
</tr>
<tr>
<td><table width="200" border="0" cellspacing="0" cellpadding="0">
<tr>
<td><a href="#"><a href="#dialog2" name="modal"><img src="imagens/loguin.png" width="522" height="102" border="0"></a></td>
<td><a href="#"><a href="#dialog" name="modal"><img src="imagens/cadastra.png" width="521" height="102" border="0"></a></td>
</tr>
</table></td>
</tr>
</table>
<div id="boxes"><div id="dialog2" class="window"><form id="form1" name="form1" method="post" action="exe/login.php">
<table width="398" border="0" cellpadding="0" cellspacing="5">
<tr>
<td width="138">Email:</td>
<td width="138"><input name="email" type="text" id="textfield" class="input_loguin" placeholder="E-mail"/></td>
<td width="102"> </td>
</tr>
<tr>
<td>Senha:</td>
<td><input name="senha" type="password" class="input_loguin" id="textfield2" placeholder="senha"/></td>
<td> </td>
</tr>
<tr>
<td> </td>
<td><input type="submit" name="button" id="button" value="Ok" class="input4" /></td>
<td> </td>
</tr>
</table>
</form>
</div>
<!-- Máscara para cobrir a tela -->
<div id="mask"></div>
</div>
<div id="boxes">
<div id="dialog" class="window">
<a href="#" class="close">Fechar [X]</a><br />
<iframe src="cadastra_usuario.php" width="800" height="500" border="0" frameborder="0" allowtransparency="true">
</iframe><br /></body>
</html>Carregando comentários...