
I'm not sure why that bottom bar is part of the IE version.
HTML:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<?php
session_start();
if(isset($_SESSION['player']))
{
session_destroy();
}
?>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<title>Title Here</title>
<link rel="stylesheet" href="main.css"/>
<script type="text/javascript" src="scripts/js/jquery-1.4.min.js"></script>
</head>
<body>
<center>
<div class="title">
<img src="images/menu/title.gif">
</div>
<div class="main">
<form method="POST" action="authenticate.php">
<table>
<tr><td><b>Username</b></td><td><input type="text" name="player" size="15"></td></tr>
<tr><td><b>Password</b></td><td><input type="password" name="password" size="15" mask="x"></td></tr>
<tr><td></td><td align="center"><input type="image" name="submit" src="images/menu/login.gif" onmouseover="this.src='images/menu/loginhover.gif'" onmouseout="this.src='images/menu/login.gif'" value="Login"></td></tr>
</table>
</form>
<br><br>
<a href='register.php'>Register Account</a><br><br>
<a href="getpass.php">Retrieve Password</a><br><br>
<?
print "<a href='/admin/login.php'>Administrate</a><br/>";
?>
</center>
</div>
</body>
</html>
CSS:
body
{
background-color:#000000;
color:#FFFFFF;
font-family:"Times New Roman",Times,serif;
font-size:12px;
}
table
{
background-color:#0A2A1B;
border: 1px solid #0B6138;
}
td
{
background-color:#0A2A1B;
}
div.main
{
background-color:#071910;
width:790px;
padding:5px;
border:1px solid #0B6138;
margin:0px;
}
div.title
{
background-color:#0B3B24;
width:800px;
padding:0px;
border:1px solid #0B6138;
margin:0px;
border-bottom-width:0px;
}
I'm not sure what the compatibility issue is, or what I've done wrong.
Any assistance or words of wisdom would be greatly appreciated.
-Tv

New Topic/Question
Reply
MultiQuote









|