hi guys,
just want to make sure a thing..
it would be nice if we can add classes to the divs for styling purposes.
what i did was using function to remove the brandingopen 1 to remove the div="branding" and re-create it again by adding class="some class"
<?php
function remove_brandingopen() {
remove_action('thematic_header', 'thematic_brandingopen',1);
}
add_action('init', 'remove_brandingopen');
function add_brandingopen() {
echo "<div id=\"branding\" class=\"some class\">\n";
}
add_action('thematic_header', 'add_brandingopen',1);
?>
am i in the right track ?
or are there any better way to add classes ? do i should edit the thematic's php file ?
what if i wanted to add class to div access, main, content, and so on...
thanks