CSS » Textarea style
Insert this code chunk on your hl page (internal css). Don't forget to put the style tags at the top and bottom of the chunk. Remember to remove the red comments.
The style will affect textareas – like the description box.
textarea {
border: 1px solid #000000;The border around the button
background: #C51515; The text area's color.
font-family: verdana; The text area's font
font-size: 7px;
color:#000000 The font size and color of the text
width: 800px;}
Borders
The border can be:
- dashed
- double
- groove
- ridge
- inset
- outset
Instead of border: 1px solid, use border: 1px dotted e.g.
Dotted border: dotted
A dotted border
Dashed border: dashed
A dashed border
Solid border: solid
A solid border
Double border: double
A double border
Groove border: groove
A groove border
Ridge border: ridge
A ridge border
Inset border: inset
An inset border
Outset border: outset
An outset border