How can I theme a category page in Drupal 6
e.g. www.mysite.com/category/my_category/

By default it displays the title and teasers but I'd like it to just list the title. If there's a way to do this without adding another module, that would be preferred.

Comments

tregeagle’s picture

  1. The simplest method would be to edit your CSS file.
  2. If you have the Views module installed you could create a view showing just what you want to.
  3. Create a custom template file in your theme - see the answer about that over on Stackoverflow or read this quick 'n dirty howto on creating yourself a sub-theme
rgraves’s picture

Thanks, I'll look into those.