hi, ich habe einen startbildschirm auf den man gelangt bevor man zu meiner wp seite gelinkt wird. allerdings bin ich alles andere als ein css guru und habe noch leichte probleme die beiden grafiken richtig (also links und rechts vom glas) zu positionieren.
hier mein code. vielleicht kann ja jemand helfen der der css sprache mächtig ist :) :oops: http://www.weinkellerei-woeber.at/intro.html
CODE:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN">
<html><head><title>WEINGUT & WEINKELLEREI WOEBER</title>
<style type="text/css">
body {
margin: 0;
padding: 0;
background-attachment: fixed;
background-image: url(startscreen.jpg);
background-repeat: no-repeat;
background-position: center center;
background-color: #000;
}
function showPicBig( bigpic ) {
document.getElementById("weingut").style.backgroundImage = bigpic;
}
div { border:0px; }
#weingut {
position:fixed;
right: 100px;
position: center center;
background-image:url(weingut_off.jpg);
}
#weinguthover {
position:fixed;
right: 100px;
position: center center;
background-image:url(weingut_on.jpg);
}
#weinkellerei {
position:fixed;
right: 100px;
position: center center;
background-image:url(weinkellerei_off.jpg);
}
#weinkellereihover {
position:fixed;
right: 100px;
position: center center;
background-image:url(weinkellerei_on.jpg);
}
</style>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
</head><body>
<div id="weingut"><a href="#" onmouseover="showPicBig('grafikgross.png');"><img src="grafikklein.png" alt=""></a></div>
<div id="weinkellerei"><a href="#" onmouseover="showPicBig('grafikgross.png');"><img src="grafikklein.png" alt=""></a></div>
</body></html>