By chandrabhan on
Is there any way to show a node without any blocks and header and footer? It should only show the properly formatted content of the node.
Is there any way to show a node without any blocks and header and footer? It should only show the properly formatted content of the node.
Comments
Just a Suggestion
you could go to
administer->site building->blocks
click the 'list' option
you will see a list with the
Block Name region weight operations
go to the blocks you want and just disable them by selecting 'none' option that shows up when you click the expandable button under 'regions' column
Scroll below and click save
Go to your node
hope this is the answer you were looking for.
Yes. You'll need to override page.tpl.php
You can have a custom page.tpl.php for any internal path.
See http://drupal.org/node/190815 for more about how the template suggestions work.
For instance, you can have page-node-1.tpl.php, which will be replace the theme default node.tpl.php for the node with the internal path node/1
You'll just need to cut out the bits of the page that you don't want to display, so something like this:
Thanks!
Thanks a lot folks! Thats what exactly what i was looking for.