Lessons: 1, 2, 3, 4, 5, 6

Lesson 6. Changing table's background, textarea and select boxes


Now, when you are already familiar with CSS, it'll be very simple to learn this simple lesson

Table's background
In some skins (OceanAbove for example) we use the bg images or bg colors for the tables.
If you would like to change them, modify the background parameters of the "table" html tag in your css file

Textarea
The corresponding tag - "TextArea"

         

Select boxes
The corresponding tag - "select"

               

Now open your /tornado/css/OceanAbove/style.css file (or style_ns4.css for NS4 browser) and look at the following strings
table - for table's bg
textarea - for an input text box
select - for a select box

table { background:#008ac9 url(images/dolphins.jpg) no-repeat; border: solid 1px #82a7d9 }


TextArea { color:white; font-size: 8pt; font-family: verdana, tahoma, arial; background-color:#00a7de; padding-right: 3px; padding-left: 3px; border: solid 1px #bbb }


select { color:white; font-weight: bold; font-size: 10pt; font-family: verdana, tahoma, arial; background-color:#00a7de }


CSS syntax

Read about CSS syntax, CSS border syntax and change these classes.
























Lessons: 1, 2, 3, 4, 5, 6