Formatting Text Boxes

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I would like to make a texted box a different color. It is white right now,
How might I do this. Also, I would like to make the submit button look
identical to the text box with color other than it says submit. How might I
do this?
 
Do you mean "text box" as in the form element input type=text or text box
as in the drawing-tools text box.

??
 
Use CSS to apply styles to the form elements.

<style type="text/css">
input,select {
background: pink;
color: red;
border: violet 1px solid;
padding: 3px;
}
</style>


Change the colours to something more suitable for your colour scheme.

The above code goes in the page in Code view - place it just above the
</head> tag.
 
Back
Top