Hi all,
I am trying to change a page from tables to CSS only and have already hit a problem. I have 2 header graphics that I need to butt up against each other, but I am getting a space of 3px or so. Any ideas?
The HTML is
Thanks for any help.
Jim
I am trying to change a page from tables to CSS only and have already hit a problem. I have 2 header graphics that I need to butt up against each other, but I am getting a space of 3px or so. Any ideas?
Code:
body {
margin:0px 0px;
padding:0px;
text-align:center;
}
#Content {
width:781px;
margin:0px auto;
text-align:left;
background-color:#fff;
}
A:link {
TEXT-DECORATION: none;
color: #0000ff;
}
A:hover {
TEXT-DECORATION: underline overline;
color: #0000ff;
}
a:visited {
color: #0000ff;
}
a:active {
color: #0000ff;
}
.maintext {
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 12px;
color: #ffffff;
line-height:16px;
}
.bottom {
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 10px;
color: #4985BC;
line-height:35px;
}
.headpic1 {
margin: 0px 0px 0px 0px;
float: left;
padding:0px 0px 0px 0px;
}
.headpic2 {
margin: 0px 0px 0px 0px;
float: left;
padding:0px 0px 0px 0px;
}
The HTML is
Code:
<div id="Content">
<div class="headpic1">
<img src="../MyHT/images/logo.jpg" width="215" height="153" alt="" border="0">
</div>
<div class="headpic2">
<img src="../MyHT/images/right_pic.jpg" width="564" height="153" alt="" border="0">
</div>
</div>
Jim