does anyone know how to do it? If you are saying to use CSS display: none, how to put the code in Drupal? Or other solutions like modules?
I think you would want to open up your node.tpl.php file in your theme directory and remove these lines: <?php if ($page == 0) { ?><h2 class="title"><a href="<?php print $node_url?>"><?php print $title?></a></h2><?php }; ?> <span class="submitted"><?php print $submitted?></span> - this will remove the page title and submitted information from the node page. HTH