Hi.

I'm going to open a news site. I'm new to drupal but I've already spent a few days learning it.
However to gain experience faster I need to ask for some help.
I need to have my own contentn type using CCK. I found how to create it and add some fields. But I don't know how to connect them e.g. it could look like article page from: http://drupal.org/node/371778
So thaht the image could be float left or right and so on... the whole apearence. Is that CCK or View mode I can set positioning of CCK fields and how they touch each other?
This thing is little complicated to me.

Comments

anupom.gogoi’s picture

You can create a custom node template file for your content types using the convention: node-{contenttype}.tpl.php

Here "contenttype" is the machine name of your content type. So if machine name of the content type is "foobar" then name of the templete file will be node-foobar.tpl.php.

You can also use Content Templates (http://drupal.org/project/contemplate) module.

konrad1811’s picture

thanks.