We have rewritten the 2 most popular module chrome functions for /motif and named them motifxhtml and motifrounded. When you load a module position with either the xhtml or rounded style, it will automatically get loaded with motifxhtml or motifrounded.
xhtml vs. motifxhtml
The xhtml module style output looks like this:
<div class="moduletableCLASSSUFFIX"> <h3>Module Title</h3> Module Content </div>
The motifxhtml module style output looks like this:
<div class="motifmoduletable moduletableCLASSSUFFIX"> <h3>Module Title</h3> <div class="modulecontent"> Module Content </div> </div>
motifrounded
The rounded module style output looks like this:
<div class="moduleCLASSSUFFIX"> <div> <div> <div> <h3>Module Title</h3> Module Content </div> </div> </div> </div>
The motifrounded module style output looks like this:
<div class="motifmodule moduleCLASSSUFFIX"> <div class="rounded_sub1"> <div class="rounded_sub2"> <div class="rounded_sub3"> <h3>Module Title</h3> Module Content </div> </div> </div> </div>
The differences are subtle, but motifxhtml and motifrounded give you greater control over how the module is styled with CSS.
