I am trying to modify the way stories are formatted on my current drupal site.

I am using the Abessive theme, and when I post a story it is displayed

[title]
[taxonomy]
[story content]
[comments]

I'm wanting it to be laid out like this
[title]
[story content]
[taxonomy]
[comments]
[small line dividing story posts]

I've been looking around the forums trying to figure out how to do it, but I guess I'm not using the right vocabulary because I'm not getting much.

By no means a php developer but I'm thinking somewhere it is querying the mysql database to retrieve the title, story content, etc.. and I should be able to just manually rearrange these things to get it to display like I want it, but I'm not sure what file I would edit? Or am I way off on how to go about this?

Comments

WorldFallz’s picture

You can modify the layout of nodes by editing the node.tpl.php file for your theme. If you only want to change the layout for the story content type you can copy the node.tpl.php file to node-story.tpl.php and edit that file.

ccook123’s picture

Thank you, I will try that now.