I’m creating a prototype of my new portfolio page and I have never seen this problem before. Not to sure why it’s happening though I’m sure someone has come across it before.
Hi Jason,
The problem is with the .author and .date <p>s’ to the left of your input.
They have been relative positioned and they are layering on top of the input thus hiding access to it.
Even though they are in the left column they are shifted out with the p tag retaining 100% width. The relative positioning automatically layers them above non-positioned elements. If you were to put a background color on them you would see what is going on.
Just float the h1 to the left and then float the "p"s to the right. You will need to use clear:right; on the p.date to drop it below the p.author
You could just wrap them both in one div and float it to the right. Depending on your CMS you might be able to just use one p tag and then nest the date in a span to style it.
You did not close the p on any of the p.author classes in the left column. I closed it in the code above (bold red text </p>)