nance: Grafik dem Bereich anpassen

Beitrag lesen

Hi,

kannst du deinen jetzigen Quellcode bereitstellen?

Klar
<body>
  <div class="obenlinks">
    <a class="logo" href="{PLH_LOGO/Link}"><img src="{PLH_LOGO/Bild}" alt="logo" width="144" height="144"/></a>
  </div>
  <div class="kopfoben">
    <xsl:apply-templates select="Logos"/>
  </div>
  <div class="kopfmittelinks">
  </div>
  <div class="kopfmitterechts">
  </div>
  <div class="kopfuntenlinks">
  </div>
  <div class="kopfuntenrechts">
  </div>
  <div class="untenlinks">
  </div>
  <div class="untenrechts">
  </div>
</body>

css:
body {
  font-family: Arial, Helvetica, sans-serif;
  font-size:  1em;
background-color : #6699CC;
  color: #000000;
  margin: 0px;
  padding: 0px;
  height: 100%;
  width: 100%;
}
/************** Layout allgemein ****************/
div {
  position: absolute;
  margin: 0em;
  padding: 0em;
  border: 0px none #000000;
}
img {
  border: 0;
}
.obenlinks {
  height: 9em; /**144px**/
  top: 0px;
}
.kopfoben {
  top: 0px;
  height: 3.37em; /**54px**/
}
.kopfmittelinks, .kopfmitterechts {
  top: 3.37em;
  height: 2.25em; /**36px**/
}
.kopfuntenlinks, .kopfuntenrechts {
  top: 5.62em; /**90px**/
  height: 3.37em;
}
.untenlinks, .untenrechts {
  top: 9em;
  bottom: 0em;
  height: auto;
}
.obenlinks, .untenlinks {
  left: 0em;
  width: 9em;
}
.untenrechts, .kopfoben {
  left: 9em;
  right: 0em;
  min-width: 39.37em; /**630px**/
  _width: 100%;
}
.kopfmittelinks, .kopfuntenlinks {
  left: 9em;
  width: 29.37em; /**470px**/
}
.kopfmitterechts, .kopfuntenrechts {
  left: 38.38em; /**614px**/
  right: 0px;
  min-width: 10em;
}
/************** Ausrichtung **********************/
.logo {
  text-align: center;
  vertical-align: middle;
  width: 144px;
  height: 144px;
}
.obenlinks {
  text-align: center;
  vertical-align: middle;
}

Ich hoffe, das hilft weiter.
Falls nicht, kann ich auch gern noch mehr schicken.

Gruß
nance