source: branches/branch-1_7/template/yoga/fix-ie5-ie6.css @ 2457

Last change on this file since 2457 was 2457, checked in by rvelices, 16 years ago
  • remove functions_group.inc.php (empty for some years; avoid unnecessary include_file)
  • thumbnails-fix-ie5-ie6.css merged into fix-ie5-ie6.css (avoid 2 IE6 css file requests)
  • Property svn:eol-style set to LF
  • Property svn:keywords set to Author Date Id Revision
File size: 1.0 KB
Line 
1/* $Id: fix-ie5-ie6.css 2457 2008-07-24 01:30:27Z rvelices $ */
2/* Issues in IE from 5 to 6 only not to be used with IE7                      */
3
4#content UL.thumbnails SPAN.wrap2 {
5  display: block;
6  position: relative;
7  text-align: left;
8}
9#content UL.thumbnails SPAN.wrap2 A,
10#content UL.thumbnails SPAN.wrap2 SPAN {
11  overflow: visible;
12  position: absolute;
13  top: 50%;
14  text-align: center;
15}
16
17#content UL.thumbnails IMG.thumbnail {
18  position: relative;
19  top: -50%;
20  /*\*//*/
21    margin-top: -40%;
22  /**/
23}
24#content UL.thumbnails INPUT {
25  position: absolute;
26  left: 2px;
27  top: 2px;  /* same as other browsers but not so pretty */
28}
29
30/* to avoid vanishing objects in IE6 */
31H1, #theHeader {
32  width: 100%;  /* <- useless but seems to make IE6 happy */
33}
34#content {
35  height: 1em;  /* for IE6 it's like min-height */
36}
37
38/* fix category thumbnails on main page */
39#content UL.thumbnailCategories {
40  width: 99%;   /* buggy IE box model */
41}
42
43
44/* fix quickconnect layout */
45FORM#quickconnect FIELDSET {
46  width: 99%;   /* correct an ugly 1 or 2 px misalignement with IE */
47}
Note: See TracBrowser for help on using the repository browser.