Hi,
building a custom website using Drupal 5 and I want to know if what I'm trying to do is even possible.
Basically I want to have a content page that contains the title of the article, the body of the article and related information to the article (an image and related text).
My problem is that I need these pieces of content in different DIVs on the page, because of the layout, see:
http://studiobionic.com/nodegrid.jpg
notice the white lines, which are actual DIVs, so the title, body, related image and related text all sit in different DIV tags on the page.
I thought maybe I could do this by assigning terms to each piece of content, for example, all of them could have "ArticleX" as their 1st term, then each of the would get a unique term to position them in the right DIV.
I'm new to Drupal and would like to get some input on this.
Thanks for your time.
Comments
Try to use theme system
Your imagination is realizable. Only you need is to change the default node template CSS file to meet your requirements.
Design matters
Beyond theme
How do I:
1) create article#1
2) create article#2 and specify it's related to article#1
3) upload image and specify it's related to article#1
and then insert blocks into my template like so:
block#1 = article#1 content
block#2 = article#2 content
block#3 = image related to article#1
all on one page in separate DIV tags?