Forum Moderators: open
This how it should be with the { at the beginning and the } at the end. But this gives me the big pixelated images in DIV Layer 1.
EXAMPLE 1:
#layer2 {
position:absolute;
left:265px; /*this value may require resetting*/
top:100px; /*this value may require resetting*/
z-index:0;
width:430px;
height:376px;
overflow:auto;
}
However if I leave off the last } bracket of DIV Layer 2 and continue on with my code like this, then it works fine in IE and Firefox but not in Apple's Safari, where the 2nd Layer will not sit on top of the background image like the previous DIV Layer does. Note the missing } before "#map_holder" starts.
EXAMPLE 2:
#layer2 {
position:absolute;
left:265px; /*this value may require resetting*/
top:100px; /*this value may require resetting*/
z-index:0;
width:430px;
height:376px;
overflow:auto;
#map_holder img {
position:absolute;
left:0;
top:0;
z-index:2;
width:800px;
height:550px;
border:0 solid;
}
</style>
</head>
Here is the entire code that I am using for the page:
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<title>PAGE 1 ~ Visuals</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<style type="text/css">
body {
background-color:#552b00;
}
a:link {
color:#ffc;
}
a:visited {
color:#ff9;
}
a:hover {
color:#fff;
}
a:active {
color:#ff9;
}
#map_holder {
position:relative;
width:800px;
margin:auto;
}
#layer1 {
position:absolute;
left:5px; /*this value may require resetting*/
top:120px; /*this value may require resetting*/
z-index:1;
width:169px;
height:324px;
overflow:auto;
}
#layer1 h1 {
font-size:24px;
color:#fff;
}
#layer1 p {
color:#fff;
}
#layer2 {
position:absolute;
left:265px; /*this value may require resetting*/
top:100px; /*this value may require resetting*/
z-index:2;
width:430px;
height:376px;
overflow:auto;
}
#map_holder img {
position:absolute;
left:0;
top:0;
z-index:0;
width:800px;
height:550px;
border:0 solid;
}
</style>
</head>
<body>
<div id="map_holder">
<img src="http://example.com/visuals_template.jpg" border=0 usemap="#menu" alt="">
<map name="menu" id="menu">
<area shape="rect" coords="124,488,205,531" href="http://example.com/home.htm" alt="">
<area shape="rect" coords="210,489,286,531" href="http://www.example.com/news.htm" alt="">
<area shape="rect" coords="292,489,342,531" href="http://www.example.com/bio.htm" alt="">
<area shape="rect" coords="348,489,416,531" href="http://www.example.com/tools.htm" alt="">
<area shape="rect" coords="423,489,507,530" href="http://www.example.com/music.htm" alt="">
<area shape="rect" coords="515,489,609,529" href="http://www.example.com/visuals.htm" alt="">
<area shape="rect" coords="615,490,714,529" href="http://www.example.com/contact.htm" alt="">
</map>
<div id="layer1">
<p align="center"><a href="http://example.com/visuals_video2.htm">TITLE 1<br><i>"Nowhere Left to Run"</i><br><img src="http://example.net/01798/47/41/1798081474_thumb1.jpg" border=0 width="100" height="90"></a></p>
<p align="center"><a href="http://example.com/visuals_video.htm">TITLE 2<br><i>"Simple Kind of Dissonance"</i><br><img src="http://img.example.com/vi/iyW_ZtNPedg/default.jpg" border=0 width="100" height="90"></a></p>
<p align="center"><a href="http://example.com/visuals_video1.htm">TITLE 3<br><i>"Can't Stop Saying Yes"</i><br><img src="http://img.example.com/vi/cGO5FCtg8vQ/default.jpg" border=0 width="100" height="90"></a></p><br>
</div>
<div id="layer2">
<div align="center">
<embed src="http://example.swf" flashvars="m=12910001&type=video" type="application/x-shockwave-flash" width="430" height="346">
</embed>
</div>
</div>
</div>
</body>
</html>
#map_holder img {
position:absolute;
left:0;
top:0;
z-index:0;
width:800px;
height:550px;
border:0 solid;
}
That tells the browser to render any image within #map_holder as 800px wide, 550px high.
Even validated code can give the browser instructions you didn't intend.