I have a background image which is fixed at the pages resolution this uses jquery to automatically re-size based on a user's monitor resolution. This is working great, however I know what to add two div's on top which will be transparent containing HREF's hovering over two parts of the background image. When I create the two div's I have given them a position of absolute and then the container they are in a position of relative. However when I change screen resolution the div's change position.
html:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN""http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title></title>
<link rel="stylesheet" type="text/css" href="css/style.css" media="screen">
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.8.0/jquery.min.js" type="text/javascript"></script>
<script type = "text/javascript">
$(window).load(function() {
var theWindow = $(window),
$bg = $("#bg"),
aspectRatio = $bg.width() / $bg.height();
function resizeBg() {
if ( (theWindow.width() / theWindow.height()) < aspectRatio ) {
$bg
.removeClass()
.addClass('bgheight');
} else {
$bg
.removeClass()
.addClass('bgwidth');
}
}
theWindow.resize(resizeBg).trigger("resize");
});
</script>
</head>
<body>
<div id="container">
<img src="images/image.png" id="bg" alt="">
<a id="company-procedures-link" href=""></a>
<a id="company-documents-link" href=""></a>
</div>
</body>
</html>
css:
#bg { position: fixed; top: 0; left: 0; }
.bgwidth { width: 100%; }
.bgheight { height: 100%; }
#container{
position:relative;
width:100%
height:100%
}
#procedures-link{
position: absolute;
top: 20em;
left: 50em;
width:200px;
height:100px;
border:1px solid;
}
#documents-link{
position: absolute;
top: 20em;
left: 50em;
width:200px;
height:100px;
border:1px solid;
}
is there a better way to achieve this? or am I incorrectly using the positioning?
Many Thanks
top:50%;. – antejan Jan 15 at 15:36