Habe eine Seite mit mehreren iframes und möchte diese teilweise mit einer .png-Grafik überlagern. Trotz z-index-Formatierung will das einfach nicht funktionieren. Kann mir da mal jemand einen Tip geben?
Danke schon mal im voraus
PS: Hier mal die Codes einmal für die .html-Datei
und für die externe .css-Datei
Danke schon mal im voraus
PS: Hier mal die Codes einmal für die .html-Datei
Code:
<div id="menu_lese">
<iframe width="250px" height="100px" src="menu_lese.html" border="0" framespacing="0" frameborder="0" scrolling="no" ALLOWTRANSPARENCY="true"></iframe>
</div>
<div id="back_hp">
<a href="javascript:self.close()" class="black">» Fenster schliessen</a>
</div>
<!------------ Link Gewinnspiel! ------------>
<div id="button_gs">
<img src="scans/pfeil_gs.png">
</div>
und für die externe .css-Datei
Code:
#menu_lese {
background-color:#1E2F7A;
position:absolute;
top:470px;
left:710px;
z-index:1;
width:200px;
padding:20px;
max-width:200px;}
#back_hp {
position:absolute;
top:610px;
left:750px;
z-index:1;}
#button_gs {
position:absolute;
top:500px;
left:150px;
z-index:3;}