
Originally Posted by
jheir16
The problem looks like it is being caused by line 243 of your style sheet. You have a left margin there defined that is causing that white line because the part of that bar right next to it eg. is being partly defined by that line..so try taking that left margin to 0 and see if that fixes it.
Thanks for helping out - Didn't seem to make a difference though!
I changed the line from
Code:
h1, h2, h3, h4, h5, h6{
margin: 0.3em;
}
To this
Code:
h1, h2, h3, h4, h5, h6{
margin-top: 0.3em;
margin-right: 0.3em;
margin-bottom: 0.3em;
margin-left: 0em;
}
and also
To this
Code:
h1, h2, h3, h4, h5, h6{
margin: 0em
}
Didn't seem to lose that line in IE7 ( I hate IE7 ) Wish you could change CSS on the fly like you can in firefox.
I appreciate you looking.