Formatting Teaser Display

I'm editing my theme, adding an image using CCK and imagefield, and it's working great, but now I need to pretty it up. In my investigation the CCK fields are inserted into $content as well as the description of the link. This is in drigg-node.tpl.php:

<?php if (! drigg_url_is_local($node) ){ ?>
<?php print theme_format_url_home($url); ?> –
<?php } ?>

<?php print $content; ?>

<?php if($node->teaser){ ?>
"><?php print t('Read more »'); ?>
<?php } else { ?>

<?php if (! drigg_url_is_local($node) ){ ?>
url ?>"><?php print t('Read »'); ?>
<?php } ?>

<?php } ?>

My problem is I want the following order: Image (CCK), Title, Description. I can accomplish Image CCK, Description, Title by moving the print $content to before the print title, but that also moves the description.

So basically, how can I edit the formatting of $content when it's put into drigg-node.tpl.php ?

Thanks,

Oh and from the configure

Oh and from the configure tab on this site, it mentions "Administer -> Site Configuration -> Look of the Drigg module ". I do not have this link . Here is what does show:

# Site configuration

* Administration theme
* Clean URLs
* Content Template Settings
* Date and time
* Drigg module
* Error reporting
* Extra Voting Forms - nodeapi
* File system
* ImageAPI
* Imagefield Gallery Administration
* Imagefield Gallery Content Types
* Image toolkit
* Input formats
* Performance
* Search settings
* Site information
* Site maintenance
* Tagadelic configuration
* User Karma
* Voting API

About the missing link...

Hi,

About the missing config link, it's now in admin -> Settings -> Drigg.

For the theming question... sorry, I can't really help with theming and I've never used CCK.
Maybe somebody else here can help...?

Merc.

Thanks, I'm getting it now.

Thanks, I'm getting it now. Just better off removing the print $title and using ConTemplate to create my own Teaser template. Alternatively I spose you could remove the print $content and add code directly.