OriginalEXE
Power Member
- Feb 6, 2012
- 633
- 670
The correct way would be to use a child theme with Thematic framework. I believe you should have thematicsamplechildtheme folder in your thematic theme folder, copy i and paste into themes folder.Not sure how it will help since I'm not an expert on coding but its not only header.php that needs to be edited. I'm using thesis framework, if you could show me the exact code that would be really great. Thanks.
Open that child theme folder now, and then open functions.php
Paste this code there:
PHP:
[PHP]function childtheme_override_blogtitle(){
//YOURCODEHERE}add_action('thematic_header','childtheme_override_blogtitle',3);
//YOURCODEHERE}add_action('thematic_header','childtheme_override_blogdescription',4);
[/PHP]
It will require some basic html knowledge. I just gave you pointers how to replace default stuff in thematic framework. You can also find more help on the official thematic pages.