views:

1064

answers:

2

I have a menu item like http://localhost/drupal/?q=category/articles/php

It's supposed to output all stories about PHP, But in resulting page header (with term name (PHP) ) doesn't look very well. How can I remove header or change its CSS style?

+1  A: 

Your best bet for customizing the page is to use the Views Module and activate the taxonomy_term view. Then, you can add to the header field or even create a new template just for that view.

The Drupal Handbook has a lot of great resources for theming and building views: http://drupal.org/node/352970

JuliaKM
A: 

Take a look at Drupal's theming guide: http://drupal.org/theme-guide

You'll need to understand theming to edit css or html.

Rimian