source: extensions/stripped_responsive/fix-ie5-ie6.css @ 31946

Last change on this file since 31946 was 29453, checked in by JanisV, 10 years ago

Removed unused elements

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