I get a grey screen and i can't exit even with ESC button on http://www.perbacco.hu
I get a grey screen and i can't exit even with ESC button on http://www.perbacco.hu
Your theme is missing this at the end of footer.php :
<?php wp_footer(); ?>
</body>
</html>at the end of footer.php i have ovewritten this :
</html>
with:
<?php wp_footer(); ?>
</body>
</html>
but it contnue to be all grey, look here for example:
http://www.perbacco.hu/sajtok/rosone-di-capra/attachment/rosonedicapra/
Looking at the source code of that page, I see no evidence of any new closing body or html tags. It seems that footer.php you edited is not even included?
You'll need to check your theme again... start with index.php and see if/where/when footer.php is included. It should be by way of:
<?php get_footer(); ?>You must log in to post.