I am new to Drupal and I am trying to figure out how to theme a Content Type. I am building a Realtor site for a client whereby my main content type will be something like 'Property Listing'. I have installed all the necessary modules to help me upload images and everything works properly. I need to be able to display BOTH the Fullsize and Thumbnail images - as to create a slideshow (or gallery) for each property.
Example:
// Fullsize Images
<ul class="gallery-output">
<li><img src="example.png" /></li>
<li><img src="example-two.png" /></li>
</ul>
// Thumbnail Images
<ul class="gallery-nav">
<li><a href="#"><img src="example_thumb.png" /></a></li>
<li><a href="#"><img src="example-two_thumb.png" /></a></li>
</ul>
I now know that you must create a node-[content-type].tpl.php file to make changes. What I do not know is where. So please help me.
In my copied node-whatever.tpl.php file I have:
<div class="content clear-block">
<?php print $content ?>
</div>
Do I remove this and replace it with my own custom solution? Or do I make my changes in the template.php file? If both are possible, which is the preferred solution? I am using: cck, filefield, imageapi, imagecache, and imagefield. If changing a preprocess function is the solution, what is the best method of tracking down the correct one??
Please help! (Oh and if somebody says 'Use Views' I think I'll go insane - so please don't, its not the solution I'm looking for) :)