Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS Problem with my background Re: Problem with my background

#106083
wolfcry911
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.