Hi To change the colour of a textarea scrollbar you will need to add scrollbar styles like this <FORM> <TEXTAREA COLS="10" ROWS="10" STYLE="scrollbar-base-color:orange;scrollbar-arrow-color:black;"> Text in the box </TEXTAREA> </FORM> Code (markup): And to style an input box do this. CSS input.red {background-color: #cc0000; font-weight: bold; font-size: 12px; color: white;} Code (markup): HTML <option class="red" value= "test.htm">Text</option> Code (markup):