Cant remove line that appears above page content

You’re missing part of your post <div> Look through your loop and you’ll see something that’s not closed or something.

It will more than likely look like this

<?php the_ID(); ?>" <?php post_class(); ?>>

When it needs to be something like

<div id="post-<?php the_ID(); ?>" <?php post_class(); ?>>

Hope that helps.