Wordpress does an awful job of using headings (h1, h2, etc.). The sidebar items should not be using h3 tags for headings. This should be done with styled p's or something.
Is it possible to change the heading structure in the Thematic child theme functions file?
I do not understand PHP. Seriously, I tried. I am still trying; I still don't get it.
I found this piece of code on this forum:
function remove_title() {
remove_action('thematic_header','thematic_blogtitle',3);
}
add_action('init', 'remove_title');
function my_blogtitle() { ?>
<h1><?php bloginfo('name'); ?></h1>
<?php }
add_action('thematic_header','my_blogtitle',3);
It works wonders for the header, but I'm not sure how to make this same type of thing work on other headings, and other pages. For instance, the tagline of the site is also placed inside an h1 heading. This must change to a paragraph tag.
The ideal is to have a per-page heading structure. I believe that each document should have a unique h1 heading, although I've settled for having the site's title in h1 at the top, with each document starting off with h2.