Viewing 3 replies - 1 through 3 (of 3 total)
  • Just a guess here – Could it be that your wp_head function isn’t properly wrapped in its php tags?
    <?php wp_head(); ?>

    I took another look at the website using Chrome Developer Tools and it looks like your wp_head(); is definitely text within your website’s body. It seems to happen right after a div that contains a flash application of some kind… Maybe something to look into?

    In the meantime – while you find out what is causing it to appear, giving the body element a negative margin-top value will hide it.

    body {
    margin-top: -22px;
    }

    I know it’s far from ideal but it could buy you a little time! ??

    Moderator Jose Castaneda

    (@jcastaneda)

    THEME COFFEE MONKEY

    Have you made an modifications any of the theme file??

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘I have " wp_head() ; " printed above the header picture !!’ is closed to new replies.