I've a problem with a wordpress site. Out of no reason the text of a post disappears or is invisible in the frontend. As soon as you zoom out and in the text is showing! This is a problem my friend is reporting to me. I wasn't able to cause this issue by myself. I've cleared the cache and used Safari, Chrome and Firefox in the private mode as well as my friend did. For me it still sounds like a browser issue or do I miss something with this issue? I would like to give you an example but as I said I coudn't cause this issue by myself. Could it be something else except the browser he is using?
EDIT
transitionally I fixed it with this quick n dirty jQuery right above the wp_footer
and the </body>
tag.
<script type="text/javascript" charset="utf-8">
jQuery(function() { jQuery('body').hide().show(); });
</script>
related to this post google group
If anybody has a better approach please let me know.