I hope this is right!
I'm working with the bluemarine theme, so it might be different for others...
The taxonomy_context.module displays subcategories at the top of a taxonomy term listing page, it uses the function theme_taxonomy_context_term to insert html code into the top of the div "main", between the "help"_div and "!--begin content--" marker. For some reason it seems to obliterate the close_div tag for the "help"_div.
I patched it by simply adding the tag and linebreak to the first line of the "function theme_taxonomy_context_term" at the end of taxonomy_context.module:
so changing
$output = ""; $output .= "<div class=\"$type-container\">\n";
to
$output = ""; $output .= "</div> \n <div class=\"$type-container\">\n";
So far it hasn't caused any problems elsewhere!
Comments
Comment #1
nancydruReopen this with a current release if it is still valid.