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
|
<?php if (isset($num_dbs) && $num_dbs == '0') { ?> /* No layer effects neccessary */ div {font-family: <?php echo $left_font_family; ?>; font-size: <?php echo $font_size; ?>; color: #000000} .heada {font-family: <?php echo $left_font_family; ?>; font-size: <?php echo $font_size; ?>; color: #000000} .parent {font-family: <?php echo $left_font_family; ?>; color: #000000; text-decoration: none} .item, .item:active, .item:hover, .tblItem, .tblItem:active {font-family: <?php echo $left_font_family; ?>; font-size: <?php echo $font_smaller; ?>; color: #333399; text-decoration: none} .tblItem:hover {color: #FF0000; text-decoration: underline} <?php } else { if (isset($js_capable) && $js_capable != '0') { // Brian Birtles : This is not the ideal method of doing this // but under the 7th June '00 Mozilla build (and many before // it) Mozilla did not treat text between <style> tags as // style information unless it was written with the one call // to write(). if (isset($js_isDOM) && $js_isDOM != '0') { ?> /* Layer effects neccessary: capable && is_DOM is set. We found a recent CSS-Browser */ div {font-family: <?php echo $left_font_family; ?>; font-size: <?php echo $font_size; ?>; color: #000000} .heada {font-family: <?php echo $left_font_family; ?>; font-size: <?php echo $font_size; ?>; color: #000000} .headaCnt {font-family: <?php echo $left_font_family; ?>; font-size: <?php echo $font_smaller; ?>; color: #000000} .parent {font-family: <?php echo $left_font_family; ?>; color: #000000; text-decoration: none; display: block} .child {font-family: <?php echo $left_font_family; ?>; font-size: <?php echo $font_smaller; ?>; color: #333399; text-decoration: none; display: none} .item, .item:active, .item:hover, .tblItem, .tblItem:active {font-size: <?php echo $font_smaller; ?>; color: #333399; text-decoration: none} .tblItem:hover {color: #FF0000; text-decoration: underline} <?php } else { ?> /* Layer effeccts neccessary: capable, but no is_DOM. We found an older CSS-Browser */ div {font-family: <?php echo $left_font_family; ?>; font-size: <?php echo $font_size; ?>; color: #000000} .heada {font-family: <?php echo $left_font_family; ?>; font-size: <?php echo $font_size; ?>; color: #000000} .headaCnt {font-family: <?php echo $left_font_family; ?>; font-size: <?php echo $font_smaller; ?>; color: #000000} <?php if (isset($js_isIE4) && $js_isIE4 != '0') { ?> /* Additional effects for IE4 */ .parent {font-family: <?php echo $left_font_family; ?>; color: #000000; text-decoration: none; display: block} .child {font-family: <?php echo $left_font_family; ?>; font-size: <?php echo $font_smaller; ?>; color: #333399; text-decoration: none; display: none} .item, .item:active, .item:hover, .tblItem, .tblItem:active {font-size: <?php echo $font_smaller; ?>; color: #333399; text-decoration: none} .tblItem:hover {color: #FF0000; text-decoration: underline} <?php } else { ?> /* Additional effects for NON-IE4 */ .parent {font-family: <?php echo $left_font_family; ?>; color: #000000; text-decoration: none; position: absolute; visibility: hidden} .child {font-family: <?php echo $left_font_family; ?>; font-size: <?php echo $font_smaller; ?>; color: #333399; position: absolute; visibility: hidden} .item, .tblItem {font-family: <?php echo $left_font_family; ?>; font-size: <?php echo $font_smaller; ?>; color: #333399; text-decoration: none} <?php } } } else { ?> /* Additional effects for left frame not required or not possible because of lacking CSS-capability. */ div {font-family: <?php echo $left_font_family; ?>; font-size: <?php echo $font_size; ?>; color: #000000} .heada {font-family: <?php echo $left_font_family; ?>; font-size: <?php echo $font_size; ?>; color: #000000} .headaCnt {font-family: <?php echo $left_font_family; ?>; font-size: <?php echo $font_smaller; ?>; color: #000000} .parent {font-family: <?php echo $left_font_family; ?>; color: #000000; text-decoration: none} .child {font-family: <?php echo $left_font_family; ?>; font-size: <?php echo $font_smaller; ?>; color: #333399; text-decoration: none} .item, .item:active, .item:hover, .tblItem, .tblItem:active {font-size: <?php echo $font_smaller; ?>; color: #333399; text-decoration: none} .tblItem:hover {color: #FF0000; text-decoration: underline} <?php } } ?> /* Always enabled stylesheets (left frame) */ body {font-family: <?php echo $left_font_family; ?>; font-size: <?php echo $font_size; ?>; } input {font-family: <?php echo $left_font_family; ?>; font-size: <?php echo $font_size; ?>} select {font-family: <?php echo $left_font_family; ?>; font-size: <?php echo $font_size; ?>; background-color: #ffffff; color: #000000}
img, input, select, button { vertical-align: middle; }
|