http://drupal.org/node/46006 seems to say that in Drupal 5 you can change the page display for different node types simply by creating a new page.tpl.php file for that node type - e.g. page-story.tpl.php.
However, it's not working for me - I just get the same old page.tpl.php every time.
Has anyone else had this problem? Can anyone point me to a solution?
I'm looking for a way to customize forms (simply because I don't need formatting options for comments and I do need to tell something to the user at that point) without having to make a customized module for this again. I've been searching for form_alter functions, but the only one that makes sense to me is hook_form_alter, but that's not exactly the solution I'm looking for.
There is this menu_local_tasks function, but that only puts a nice unordered list around the tabs. The actual list items (which I would like to style) are generated through a general list theme function. I want to provide each tab with a unique icon, so every tab needs a unique ID. How would I do this without brute force (using regular expressions)?