I have found a small but tedious rendering problem in admin/build/sitedoc and admin/settings/sitedoc/archive pages.
After a code analysis I have found a solution (but I'm not sure this is the best and the most right one).
You have to comment row 376 of sitedoc.module ($output .= "</div>\n";) and change row 373 of sitedoc.admin.inc (from '#prefix' => '</div><div class="clear-block"></div>' to '#prefix' => '<div class="clear-block"></div>')
Hope this cab be helpful.
Saxx
Comments
Comment #1
nancydruYou need to describe the problem better because I've tried both tabled and tableless themes and I don't see problems.
Comment #2
SaxxIng commentedEssentially the problem produced two fieldset "unreadable" (fieldset-background-color equal to site-background-color and text color equal also). Analyzing the produced HTML source I saw that two
<div>tags had a wrong close (</div>). With the previous posted code the problem is no more.Comment #3
nancydruI think you're seeing the same thing as reported in #259215: Site documentation page breaks theme which is fixed in the -dev version.
Comment #4
SaxxIng commentedVersion 6.x-1.2 works well! Problem solved!
Thanks,
Saxx