Forum Moderators: not2easy
First Style Sheet Code:
@import url("http://www.magneforcess.com/demo2/style111.css");
body {background-image: url('bluegrey.gif');
background-repeat: repeat;
Background-color: transparent;
color: #000080;
font-family: times, courier;
font-size; 11pt;
margin-left: 40px; font-size}
input {width: 110px;}
SECOND STYLE SHEET CODE:
div#header {align: center;
height: 100px;
width: 900px;
padding: 0px 3px 2px 3px;}
.left {background-image: url('bluegrey.gif')
color: #000;
float: left;
width: 25%;
border: none;
margin-top: 2em;}
.middle {background-image: url('bluegrey.gif')
color: #000;
float: left;
width: 50%;
margin-top: 2em;
margin-bottom: 0;}
You've got a left margin of 40px on your
<body>. Your left column will inherit this margin from the body, so it too should line up 40px from the left side of the window. Is the issue that you want the left column to be flush against the side of the window? If so, you can change your body margin to 0 (or just delete the
left-margin:40px). If you need to keep the body margin, but want the column all the way to the left, you could add left-margin:-40px to the left class.