Ok I am building my schools Theatre website this year and for some reason whenever i try to move a certain block i end up just screwing up the whole picture, Here is the code.
<!DOCTYPE html>
<html>
<style>
body {
background-image:url('file:///Users/dahank/Desktop/Theatre%20Folder.html/Curtains1.jpg');
background-repeat:no-repeat;
margin-bottom: 0px;
margin-left: 0px;
margin-right: 0px;
margin-top: 0px;
background-size: contain;
position: scroll;
}
#info1 {
font-family: arial;
text-align: center;
color: #FFDA00;
margin-top: 10px;
margin-left: 10px;
margin-right: 10px;
margin-bottom: 10px;
}
#Info {
width: 400px;
height: 50px;
background-color: black;
border: 2px solid #FFDA00;
border-radius: 20px;
margin-left: 490px;
margin-top: -700px;
}
#Main {
background-color: black;
border: 2px solid #FFDA00;
margin-top: 50px;
margin-left: 525px;
margin-right: 500px;
margin-bottom: 700px;
border-radius: 20px;
}
#title {
font-family: arial;
text-align: center;
color: #FFDA00;
margin-top: 10px;
margin-left: 10px;
margin-right: 10px;
margin-bottom: 10px;
}
</style>
<head>
<title>Pratt High Theatre</title>
</head>
<body>
<div id="Main">
<h1 id="title">Pratt High Theatre</h1>
</div>
<div id="Info">
<p id="info1">| Home | About Us | Productions | Crew |</p>
</div>
</body>
</html>
and here is a picture of what happened whenever i put this into a webpage. http://imgur.com/hhFxEqC
Please Help!