Scrollbalk in table wilt niet van kleur veranderen

Pagina: 1
Acties:

  • Willson
  • Registratie: Februari 2004
  • Laatst online: 16-03 16:33
Goedenacht,
Na het doorzoeken van Google en dit forum, ben ik nog steeds niet tot een antwoord gekomen.

Ik ben momenteel bezig met een site die is opgebouwt in tables. In 1 van deze tables wordt een page geload die groter is dan de table waarin hij geload wordt, dus krijg je een scrollbalk. Deze scrollbalk wil ik van kleur veranderen. Inmiddels ben ik er achter met wat ik dit doe

[code[BODY {
scrollbar-3dlight-color:#000000;
scrollbar-arrow-color:#A9A9A9;
scrollbar-base-color:#000000;
scrollbar-track-color:#000000;
scrollbar-darkshadow-color:#000000;
scrollbar-face-color:#000000;
scrollbar-highlight-color:#000000;
scrollbar-shadow-color:#000000;
background-color: #666666;}
</STYLE>[/code]
MAAR!
Als ik dit tussen de heads van mijn page plaats, dan gebruikt er NOPPES!
Waar moet ik dit ( of iets anders) dan wel plaatsen ?

Alvast bedankt!

  • Predje
  • Registratie: December 2002
  • Laatst online: 03-03-2025
Je moet die code plaatsen IN de pagina die je IN die IFrame laadt...
Dus niet alleen in de pagina waarin de table staat ;)

  • Willson
  • Registratie: Februari 2004
  • Laatst online: 16-03 16:33
Dit nu dus in mijn style.css doc geplaatst
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
 input,submit,textarea,submit,select,button {

    font-family: Verdana;

    font-size: 10pt;

    color: #003366;

    background: #040404;

    border: #003300 1px solid;

}

BODY { scrollbar-3dlight-color:#000000;
scrollbar-arrow-color:#A9A9A9;
scrollbar-base-color:#000000;
scrollbar-track-color:#000000;
scrollbar-darkshadow-color:#000000;
scrollbar-face-color:#000000;
scrollbar-highlight-color:#000000;
scrollbar-shadow-color:#000000;

    font-family: Verdana;

    font-size: 10px;

    font-style: normal;

    font-weight: normal;

    font-variant: normal;

    background-color: #040404;

}

TABLE,tr,td {

    font-family:Verdana;

    font-size: 11px;

    font-style: normal;

    font-weight: normal;

    font-variant: normal;

    color: #FFFFFF;

    border: #003300 0px solid;

    border-collapse:collapse;

}

.title{

    color: #ffffff;
    font weight: bold;

}

.NoBorder{

    border: 0px solid;

    border-collapse:collapse;

}

a {

    font-family: Verdana;

    font-size: 8px;

    font-style: normal;

    font-weight: bold;

    font-variant: normal;

    color: #FFFFFF;

    text-decoration: none;

}

a:hover {

    font-family: Verdana;

    font-size: 8px;

    font-style: normal;

    font-weight: bold;

    font-variant: normal;

    text-decoration: underline;

}

hr{

 color: #FFFFFF;

 height: 1;

}


Maar hoe roep ik dit nu aan in mijn pagina's ?

[ Voor 15% gewijzigd door Willson op 07-03-2005 22:07 ]


  • Predje
  • Registratie: December 2002
  • Laatst online: 03-03-2025
sim-pel

<link href="style.css" rel="stylesheet" type="text/css">

  • Woudloper
  • Registratie: November 2001
  • Niet online

Woudloper

« - _ - »

Willson schreef op maandag 07 maart 2005 @ 22:06:
Maar hoe roep ik dit nu aan in mijn pagina's ?
Dit roep je aan door het volgende in je <head> sectie van je HTML pagina te plaatsen:

HTML:
1
<link rel="stylesheet" type="text/css" href="jouwstylesheet.css">

Verwijderd

Ik neem aan dat je weet dat deze feature alleen in IE werkt en niet in Firefox.

  • Predje
  • Registratie: December 2002
  • Laatst online: 03-03-2025
Verwijderd schreef op maandag 07 maart 2005 @ 22:17:
Ik neem aan dat je weet dat deze feature alleen in IE werkt en niet in Firefox.
Ik wel 8)

  • Willson
  • Registratie: Februari 2004
  • Laatst online: 16-03 16:33
aarhhhggg Ik wordt er gek van !

De page die namelijk wordt geload in de table, is een page vanuit een news "systeem".

De css die je hier boven ziet is van het news systeem.
En in elke pagina die dat systeem gebruikt, wordt er al gebruik gemaakt van de stylesheet.
Dus zou hij het moeten doen

Wat doe ik dan fout ??

[ Voor 7% gewijzigd door Willson op 07-03-2005 22:25 ]


  • Willson
  • Registratie: Februari 2004
  • Laatst online: 16-03 16:33
Verwijderd schreef op maandag 07 maart 2005 @ 22:17:
Ik neem aan dat je weet dat deze feature alleen in IE werkt en niet in Firefox.
Ja, helaas weet ik dat ook ( 99% is IE bezoeker, pech voor die laaste 1 % )
Pagina: 1