In this CSS tutorial, I will show you how to change the color and fonts of the textareas and buttons on your page.
To customise yoru textareas...
1. Place this code in your page:
| QUOTE |
<STYLE>
textarea {
font-family: \"Arial\", Arial;
font-size: 12px;
color: #000000;
border: 1px solid #EE7711;
background-color: #FFCA10;
padding: 2px;
}
</STYLE>
|
2. Just change all of the number and font styles to whatever you want!
To cutomise your buttons...
1. Place this code in yoru page:
| QUOTE |
<STYLE>
input {
font-family: \"Arial\", Arial;
font-size: 12px;
color: #000000;
background-color: #FFCA10;
border: 1px solid #EE7711;
margin: 1px;
}
</STYLE>
|
2. Customise all the colors, font faces, and everything else to whatever you want!
Combining all your CSS code...
To combine all of your CSS code that you have learned, you can either just place teh individual codes in your page, or you can delete all of the STYLE tags and just place one <STYLE> at the beggining and one </STYLE> at the end. If you have any questions, just ask me!
>>Kyle<<
|
|
|