I coded a website, and am currently in the process of re-coding it. On my contact page, I have a form for questions, comments, etc. On the original website, the page works fine - however on the recode, the form breaks the page. I was wondering if someone could help me figure out why.
Original page found here: http://path-to-truth.org/contact/
Recode found here: http://path-to-truth.org/Recode/contact/
ul#nav
has amargin-right
of 7% in your style.css file. When I remove that, it looks normal. The margin is added to the right of the navigation. Because that make the block too large for the header, it moves down. Because you havefloat:right
on that element also, it is put to the right of theh1
.Another option would be to remove the
float: right
on the navigation and putfloat: left
on the image (or thea
tag). At the bottom of yourdiv#header
, insert (inside the div) a new div withclear: both
to pull the header region down.