hi,
I selecting which fields to show in the Headers and in the Body of my nodes, in the "Manage Fields" settings of my content type.
However I would like to have different order for header elements and node elements.
Is this feasable ?
thanks
hi,
I selecting which fields to show in the Headers and in the Body of my nodes, in the "Manage Fields" settings of my content type.
However I would like to have different order for header elements and node elements.
Is this feasable ?
thanks
There a number of ways you can achieve this. One of them is through the panels module - http://drupal.org/project/panels - another is through the node template file. If you are able to edit your Drupal theme, you could create a new template file for the type of node you wish to customise - called node-[type].tpl.php in your theme directory. You can base this template file on node.tpl.php, and instead of echoing out the body of the node, you choose which fields from the node object you wish to use. See http://drupal.org/theme-guide for more.