Hey All,
I have a style sheet with the follow code from an HTML page:
<div id="contactBox">
<table border="0" cellpadding="1" cellspacing="0">
<form action="<%=SCRIPT_NAME%>" method="post" name="comment_form">
<tr><td>Name:</td><td><input type="text" size="30" name="name" class="textbox" value="<%=name%>"></td></tr>
<tr><td>Email:</td><td><input type="text" size="30" name="email" class="textbox" value="<%=email%>"></td></tr>
<input type="submit" name="submit" value="Submit" class="button">
</td></tr>
</form>
</div>
My stylesheet:
#contactBox {
color: #fff;
font-size: 9px;
}
What I'm trying to do is make the textboxes smaller. I've done this on another page that doesn't use CSS as extensively. I've tried putting the table within a DIV tag and that doesn't seem to work. Any ideas? I'm sure it's something simple.
Thanks.
I have a style sheet with the follow code from an HTML page:
<div id="contactBox">
<table border="0" cellpadding="1" cellspacing="0">
<form action="<%=SCRIPT_NAME%>" method="post" name="comment_form">
<tr><td>Name:</td><td><input type="text" size="30" name="name" class="textbox" value="<%=name%>"></td></tr>
<tr><td>Email:</td><td><input type="text" size="30" name="email" class="textbox" value="<%=email%>"></td></tr>
<input type="submit" name="submit" value="Submit" class="button">
</td></tr>
</form>
</div>
My stylesheet:
#contactBox {
color: #fff;
font-size: 9px;
}
What I'm trying to do is make the textboxes smaller. I've done this on another page that doesn't use CSS as extensively. I've tried putting the table within a DIV tag and that doesn't seem to work. Any ideas? I'm sure it's something simple.
Thanks.
Comment