Ich hab ein Problem. Ich hab ein Bild im body, das vertikal wiederholt werden soll. Klappt überall, außer im IE6. Im Web finde ich keine richtige Lösung.
PHP
body {
font-family:Arial, Helvetica, Georgia, Sans-Serif;
font-size:13px;
background: #e1dfe0 url(i/background-repeat.jpg) top left repeat-y;
color:#000;
margin:0;
height:100%;
padding:0;
line-height:1.7;
list-style-type:none;
}
Alles anzeigen
Hab auch nen IE6 Hack drin, der allerdings nix bringt...
PHP
<!--[if lt IE 6.x]>
<style type="text/css" media="screen">
body {
background-image:url(<?php bloginfo('template_url'); ?>/i/background-repeat.jpg);
background-repeat: repeat-y;
margin:0;
padding:0;
background-color:#e1dfe0;
}
</style>
<![endif]-->
Alles anzeigen
Vielleicht hat ja hier jemand eine Idee.