Can you post a screenshot or link? I'm not quite sure I follow the problem.
But before you do, I'd recommend changing formobject from an id to a class. An id is intended to be a unique identifier for an element; in your code you should be using it as a class and update your css from #formobject to .formobject - this could be the quirk that is causing the problem.
On another note, you could drop the align="left" in your code and just add
text-align: left;
to your .formobject definition.