By tebdilikiyafet on
I will create some articles in my web site and I want to divide them into parts. Actually I want to explain them step by step. I can not use dynamic display block for it. you can see in this link what I want: http://www.beliefnet.com/Health/2009/04/How-Crying-Can-Be-Healthy.aspx?p=2
is there a module like this?
Comments
_
The http://drupal.org/project/slider or http://drupal.org/project/content_slider modules might be closer to what you're looking for, but more than likely you're going to have to do some theming to get that exact look/functionality.
Can be done with CCK and Views (I think)
You should be able to do this with only CCK and Views.
Use CCK to create a "Step" content type (use ImageField if you want to add images). Add whatever fields you want, and also add an integer field called "Step Order" to keep the steps in order.
Create all of your steps as separate nodes.
Create a new node view. Add a Page display.
Basic Settings:
Set Row style: Fields
Use AJAX: Yes
Use Pager: Yes
Items to display: 1
Fields:
Add the fields you want to display (leave out "step order")
Sort Criteria:
Content: Step Order (ascending)
Filters:
Node: Type = Step
You will have to style the view using lots of CSS to make it look fancy like your example, but this should work.