source: extensions/stripped/fix-ie5-ie6.css @ 7989

Last change on this file since 7989 was 7989, checked in by Zaphod, 13 years ago

[extension] stripped - first release

File size: 1.3 KB
Line 
1#thumbnails img {
2        margin:10px;
3        width: expression(this.width > 128 ? 128: true);
4        height: expression(this.width > 128 ? 128: true);
5}
6.arrow {
7        display:none;
8}
9
10/* Issues in IE from 5 to 6 only not to be used with IE7 */
11
12#menuswitcher {
13        display:none;
14}
15
16#the_page,
17#content {
18        width:1120px;
19}
20
21#menubar,
22#menubar_container {
23        display:block!important;
24        float:left;
25}
26
27#subcontent {
28        float:right;
29        width:940px;
30}
31
32#thumbnails_block1 {
33        width:940px;
34        float:right;
35}
36
37.thumbnailCategories {
38        width:900px;
39        float:right;
40        margin-bottom:5px;
41}
42.personal_block ul.thumbnailCategories {
43        width:180px!important;
44}
45
46.stuffs_block .personal_block ul.thumbnailCategories {
47        float:left;
48}
49
50.stuffs .two_comment {
51                float:left;
52                width:47%!important;
53}
54
55/* to avoid vanishing objects in IE6 */
56H1, #theHeader {
57  width: 100%;  /* <- useless but seems to make IE6 happy */
58}
59.content {
60  height: 1em;  /* for IE6 it's like min-height */
61}
62
63/* fix category thumbnails on main page */
64.content UL.thumbnailCategories {
65  width: 99%;   /* buggy IE box model */
66}
67
68
69/* fix quickconnect layout */
70FORM#quickconnect FIELDSET {
71  width: 99%;   /* correct an ugly 1 or 2 px misalignement with IE */
72}
73
74.navigationBarSimple {
75        display:none;
76}
Note: See TracBrowser for help on using the repository browser.