But I am not sure why or how.
Basically, there is now an extra margin on top that I don't want.
Compare
current site to
archive.org copy.
Looking at source, I think this is the offending html:
HTML Code:
<style type="text/css" media="screen">
html { margin-top: 28px !important; }
* html body { margin-top: 28px !important; }
</style>
Looking in the theme editor, I think the following line of code is inserting it:
HTML Code:
<?php wp_head(); ?>
The problem is that I can't find what wp_head is referring to.
In fact, when I search every php and css file in theme editor for "margin-top" or "28px", I find nothing.
I also searched around widgets and plugins and I can't find this margin-top reference.
Anyone have any tips or suggestions on how to move forward on this?