A smaller monitor? I can barely see this one
I have tinkered with the CSS and arrived at this
.Day {
font-size: 12px;
width: 100px;
height: 14px;
text-align:center;
margin-left:auto;
margin-right:auto;
}
.EnterButtons {
font-size: 18px;
height: 24px;
text-align:left;
margin-left:auto;
margin-right:auto;
}
.FormButton {
background: #cc1559;
width: 100px;
height: 32px;
font: 24px/24px Helvetica, sans-serif;
font-weight:900;
text-align:center;
font-stretch:expanded;
color:#FFF;
font-style:oblique;
border-width: 3px;
border-style: solid;
border-color: #5e5e5e #888 #696969 #888;
-moz-border-radius: 18px;
-webkit-border-radius: 18px;
border-radius: 18px;
}
Since y'all always ask, here's the sum of the HTML Code:
<body>
<p><IMG class="displayed" src="Images/Easy_logo.gif" width="225px" height="70px" /></p><br />
<div style="width:400px; margin:auto">
<form action="FindNotDones.php" method="post" class="center">
<br><br><p>Select Date</p>
<?php
echo $_POST['SystemNum'];
$_SESSION['SystemNum'] = $_POST['SystemNum'];
echo '<input type="text" id="field1" class = "Day" name="WorkDate" size="50" lable = "Select Date<br>" value="' . date("Y-m-d", time()) . '" /><br/>';
?>
<script>
AnyTime.picker( "field1",
{ format: "%Y-%m-%d", firstDOW: 0 } );
$("#field2").AnyTime_picker(
{ format: "%H:%i", labelTitle: "Hora",
labelHour: "Hora", labelMinute: "Minuto" } );
</script>
<br>
<div class = "EnterButtons">
<input type="radio" name="Task" value="Not Done">Not Dones<br>
<input type="radio" name="Task" value="Suspended">Suspended<br>
<input type="radio" name="Task" value="Cancelled">Cancelled<br>
<input type="radio" name="Task" value="RouteParameters">Route Parameters<br>
<input type="radio" name="Task" value="InTime">In Time<br>
<input type="radio" name="Task" value="Late">Late<br>
<input type="radio" name="Task" value="Manual ICOMS">Manual ICOMS<br>
</div>
<input type="submit" value="Submit" class="FormButton">
</form>
</body>
Which yields:
[ATTACH]5037[/ATTACH]
Two things wrong: The submit button & the margins. The whole thing is jammed against the left side of the monitor. I need it to be centered on the screen. I have tried various "position" commands with no luck.
Thanks for the speedy reply
radio2.jpg