How change aesthetics of normal input/text box

  • Thread starter Thread starter VB Programmer
  • Start date Start date
V

VB Programmer

In my ASP.NET application I have 1 standard HTML page.

How do I:
1. Use a background image in one of my table cells?
2. Use a standard HTML text/input box with a specific font, size and
height?

Thanks!
 
Thanks. Here's the final answer:

<form name="Form1" method="post" action="login_screen.html" id="Form1">
:
:
<TD COLSPAN="14" style="BACKGROUND-IMAGE: url(images/_EMAILADDRESS.jpg);
BACKGROUND-REPEAT: repeat-y"><input type="text" name="email_address"
style="color: #FFFF00; font-size: 22; font-family: Arial; background-color:
#000000" value="xxxx" ID="Text2"></TD>

Thanks guys!
 
Back
Top