Julianlalelu: scrollby im IE

Beitrag lesen

naja, ausführliches codebsp kann ich leider nicht geben aber nochmal den code im iframe...anscheinend widersprechen sich einige css angaben...

------------------------------------------------------------------

  1. eine eingebundene externe css datei, ihr inhalt:

#fixed {
    position: relative;
 margin-top: 0px;
 padding-top: 0px;
    top: 0px;
 left: 26px;
 line-height: 7pt;
  }
  html>body #fixed {
    position: fixed;
  }

#notfixed {
 margin-top:19px;
  }

------------------------------------------------------------------

------------------------------------------------------------------
2) für den IE gibt es im dokument selbst noch folgendes conditional comment:

<!--[if lt IE 7]>
<style type="text/css">

html, body {
      height: 100%; overflow: hidden;
    }
    #notfixedIE {
      height: 100%; width: 100%; overflow: hidden;
    }
    #notfixed {
      position: static;
   margin-top:0px;
    }

</style>
<![endif]-->

------------------------------------------------------------------

------------------------------------------------------------------
3) die Links sind wie folgt im iframe eingebunden:

<div id="fixed">
<table border="0" cellpadding="0" cellspacing="1" style="position:relative;top:2px;left:470px">
 <tr>
 <td><a href="#" onMouseOver="parent.Scroller.start('left')" onMouseOut="parent.Scroller.stop()">&laquo;</a></td>
 <td><a href="#" onMouseOver="parent.Scroller.start('right')" onMouseOut="parent.Scroller.stop()">&raquo;</a></td>
 </tr>
 </table>
</div>
------------------------------------------------------------------

wenn ich die angabe "position:static" aus dem conditional comment herausnehme funktioniert das script bis auf weiteres, nur scrollen dann eben auch die links mit der seite mit...was nicht sinn der sache ist...