How do I display page content next to a contact form, rather than under it?

Whatever element comes after the contact form needs to be targetted with css and set to “clear:none;”

Example: If the element that is underneath the contact form has an id of post_content, you’ll need to add #post_content {clear:none} or #post_content {clear:inherit} to your css file.

Make sense?