I'm using
to move my pages and stuff but i want my home page to be bigger so i need it to scroll down. But for some reason my scroll bar won't appear. My code
Code:
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="Keywords" content="" />
<meta name="Description" content="" />
<link rel="stylesheet"type="text/css" href="style.css"/>
<title>sellmysoftware - Make money for your software.</title>
</head>
<body>
<div class="homepage">
<div id="header">
<img src="Images/header.jpg"/>
</div>
<div id="footer">
Copyright © 2012 sellmysoftware.com. All rights reserved.
</div>
</div>
</body>
</html>
and this is my css
Code:
body {
background-image:url('images/background.png');
background-repeat:repeat;
}
.homepage {
border:1px solid gray;
height:1000px;
width:70%;
position:fixed;
top:0%;
left:14%;
background-color:white;
}
#header {
position:fixed;
top:-1%;
left:14.16%;
}
#footer {
position:fixed;
top:97%;
left:14%;
border:1px solid gray;
height:3%;
width:70%;
background-color:black;
color:white;
text-align:center;
}