Ik probeer via een css het een en ander te laten over erfen maar ik kom er niet helemaal uit. Misschien dat iemand ziet wat ik fout doe...
Mijn CSS
En mijn HTML
Wat er nu dus gebeurd is dat de clusterNavLeft.gif en de clusterNavScale.gif niet getoond wordt en dat in alle drie de td's (left , scale, right) de clusterNavRigt.gif getoond wordt, en dit snap ik dus niet helemaal... iemand een suggestie waarom dit gebeurd?
Helaas geen online voorbeeld.
Mijn CSS
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
| /* set background images tabs, active tab gets 'active' image */
/* left part of tab*/
/*global settings*/
td.clusterNavLeft{
background-repeat : no-repeat;
background-attachment : fixed;
width : 4px;
height: 18px;
}
/*setting backgrounds tabs*/
td.clusterNavLeft.WK{
background-image : url(../images/clustertabLeftActive.gif);
}
td.clusterNavLeft.LTBE{
background-image : url(../images/clustertabLeft.gif);
}
/* scaleable part of tab*/
/*global settings*/
td.clusterNavScale{
background-repeat : repeat-x;
background-attachment : fixed;
font-weight : bold;
padding-left : 4px;
padding-right : 4px;
height: 18px;
}
/*settings per tab*/
td.clusterNavScale.WK{
background-image : url(../images/clustertabScaleActive.gif);
color: black;
}
td.clusterNavScale.LTBE{
background-image : url(../images/clustertabScale.gif);
color: white;
}
/* right part of tab*/
/*global settings*/
td.clusterNavRight{
background-repeat : no-repeat;
background-attachment : fixed;
width : 4px;
height: 18px;
}
/*settings per tab*/
td.clusterNavRight.WK{
background-image : url(../images/clustertabRightActive.gif);
}
td.clusterNavRight.LTBE{
background-image : url(../images/clustertabRight.gif);
} |
En mijn HTML
code:
1
2
3
4
5
6
7
8
9
10
11
12
13
| <td class="clusterNavBlackLineActive"></td>
<td class="clusterNavLeft WK"></td>
<td class="clusterNavScale WK"><a href="#" class="clusterNav WK">WK</a></td>
<td class="clusterNavRight WK"></td>
<td class="clusterNavBlackLineActive"></td>
<td class="clusterNavLeft LTBE"></td>
<td class="clusterNavScale LTBE"><a href="#" class="clusterNav LTBE">LTBE</a></td>
<td class="clusterNavRight LTBE"></td>
<td class="clusterNavBlackLine"></td> |
Wat er nu dus gebeurd is dat de clusterNavLeft.gif en de clusterNavScale.gif niet getoond wordt en dat in alle drie de td's (left , scale, right) de clusterNavRigt.gif getoond wordt, en dit snap ik dus niet helemaal... iemand een suggestie waarom dit gebeurd?
Helaas geen online voorbeeld.