|
I am having an issue with the css for my clients site in IE it lines up smooth but in Firefox it has this annoying 1 px alignment off and it's only on this one section, now i have zeroed out the padding and etc, but still it persists. any chance one of you could help this young aspiring web designer.
here's the css
.header
{
width:762px;
height:95px;
background-image: url(images/header.gif);
background-repeat: no-repeat;
color: black;
text-align: center;
padding:0px;
border-spacing:0px;
margin:0px;
}
.logo
{
width:258px;
height:600px;
background-image: url(images/stripes.gif);
padding:0px;
border-spacing:0px;
vertical-align:top;
text-align:left;
}
.buttons
{
padding:0px;
width: 762px;
height: 19px;
background-color: #46166b;
border-spacing:0px;
border:none;
vertical-align: top;
}
.content
{
padding:0px;
width: 762px;
height: 486px;
background-image: url(images/content.gif);
text-align:center;
color: black;
padding:0px;
border-spacing:0px;
vertical-align: top;
}
.footer
{
width: 1020px;
height: 137px;
margin-left: auto;
margin-right: auto;
background-image: url(images/footer.gif);
background-repeat: repeat;
text-align: left;
padding:0px;
border-spacing:0px;
color: black;
}
thank you
|