Where do I go to edit the mod开发者_运维知识库ule themes of drupal?
If I understand you correctly, that you're asking how to theme the output of a module, the answer depends on whether the module uses a theme function or a template file. See the "Functions vs. templates" section of the About overriding themable output handbook page.
In short, if the output is generated by theme_ function, copy that function to your theme's template.php file, rename it, and edit it as needed. For example, if the function is theme_foo, copy the function to phptemplate_foo or yourthemename_foo and edit it, as needed.
If the output is part of a template file, copy the template file to your theme directory. Edit the file, as needed and clear the theme cache.
When in doubt, use the Theme developer module to determine what override options are available. See the intro screencast for more details.
精彩评论