-
Notifications
You must be signed in to change notification settings - Fork 0
/
fix-ie5-ie6.css
86 lines (69 loc) · 1.38 KB
/
fix-ie5-ie6.css
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
/* new test */
#thePage { height: 100%;}
#content {overflow:none;}
#thumbnails li { overflow: none;}
#thumbnails_block2 {position:static;}
/* old IE fix */
#thumbnails img {
margin:10px;
width: expression(this.width > 128 ? 128: true);
height: expression(this.width > 128 ? 128: true);
}
.arrow {
display:none;
}
/* Issues in IE from 5 to 6 only not to be used with IE7 */
#menuswitcher {
display:none;
}
#the_page,
#content {
width:1120px;
}
#menubar,
#menubar_container {
display:block!important;
float:left;
}
#content_cell {
float:right;
width:940px;
}
#thumbnails_block1 {
width:940px;
float:right;
}
.thumbnailCategories {
width:900px;
float:right;
margin-bottom:5px;
}
.personal_block ul.thumbnailCategories {
width:180px!important;
}
.stuffs_block .personal_block ul.thumbnailCategories {
float:left;
}
.stuffs .two_comment {
float:left;
width:47%!important;
}
/* to avoid vanishing objects in IE6 */
H1, #theHeader {
width: 100%; /* <- useless but seems to make IE6 happy */
}
.content {
height: 1em; /* for IE6 it's like min-height */
}
/* fix category thumbnails on main page */
.content UL.thumbnailCategories {
width: 99%; /* buggy IE box model */
}
/* fix quickconnect layout */
FORM#quickconnect FIELDSET {
width: 99%; /* correct an ugly 1 or 2 px misalignement with IE */
}
#thumb_navigation {
display:none;
}
#thePicturePage #footer {display: none;}