|
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"
| 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.
-
-
-
|