http://www.freeworldforum.com/newtopic.php?forum=1
Als je daar ergens in een input veld klik wordt de submit knop bold. Nu snap ik echt NIET hoe dat opeens komt. Hoe kan je dat uitzetten in het stylesheet?
Dit is die we gebruiken:
Als je daar ergens in een input veld klik wordt de submit knop bold. Nu snap ik echt NIET hoe dat opeens komt. Hoe kan je dat uitzetten in het stylesheet?
Dit is die we gebruiken:
code:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
| /* Form elements */
input,textarea, select {
color : #000000;
font-family : Verdana, Arial, Helvetica, sans-serif;
font-size : 10pt;
font-weight : normal;
border-color : #4A739A;
border-left-width: 1px;
border-top-width: 1px;
border-right-width: 1px;
border-bottom-width: 1px
}
/* The text input fields background colour */
input.post, textarea.post, select {
background-color : #B3C6FF;
}
input { text-indent : 2px; }
textarea { text-indent : 2px; }
/* The buttons used for bbCode styling in message post */
input.button {
background-color : #D3E1FF;
color : #000000;
font-family : Verdana, Arial, Helvetica, sans-serif;
font-size : 10pt;
}
/* The main submit button option */
input.mainoption {
background-color : #D3E1FF;
font-weight : bold;
}
/* None bold submit button */
input.liteoption {
background-color : #D3E1FF;
font-weight : normal;
}
.quote { font-family: Verdana, Arial; font-size: 10pt; color: #444444; line-height: 125%;
background-color: #D3E1FF; border: #4A739A; border-style: solid;
border-left-width: 1px; border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px
}th: 1px; border-right-width: 1px; border-bottom-width: 1px
}
.code { font-family: Courier; font-size: 10pt; color: #111111; line-height: 125%;
background-color: #EAF5FF; border: #4A739A; border-style: solid;
border-left-width: 1px; border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px
} |