Home › Forums › CSS › Problem with my background › Re: Problem with my background
July 14, 2012 at 8:08 am
#106083
Participant
No offense to Chris, but I find codepen (and other testbeds) a RPITA. After copying and pasting your page locally it took me all of five seconds to find the problem:
#content p, h1{
width:560px;
}
I think you intended to do this:
#content p, #content h1{
width:560px;
}
before, all the h1 (including the ones in the footer) were 560px wide. The ‘Contact Information’ heading in the footer was pushing the html element out to the right.