Basic Setup

Ninja Modulizer can be setup in the following way:

Tips and Extended Use FAQ

Can I use the module class suffixes to affect the display?
You can use module class suffixes to affect the module output on the modulizer itself
What classes and ids are available with modulizer to help me format it?
Ninja Modulizer will generate one of the layouts below, complete with these classes and ids, depending on your parameters.
You can manipulate these layouts via CSS using the classes and ids for the layout you have chosen.

Horizontal Table Layout:

<table id="nmz[the id of this module]" class="nmzbody nmzhoriztable">
  <tr>
    <td class="nmzcontent nmzinner-1">[PHP Output and Custom content]</td>
    <td class="nmzmodule nmzinner-1">[Selected Modules]</td>
  </tr>
</table>

Four Divs Layout:

		
<div id="nmz[the id of this module]" class="nmzbody nmzfourdiv">
 <div class="nmzcontent nmzinner-1">
  <div class="nmzinner-2">        
   <div class="nmzinner-3">
    <div class="nmzinner-4">
     [PHP Output and Custom content]
    </div>
   </div>
  </div>
 </div>

 <div class="nmzmodule nmzinner-1">
  <div class="nmzinner-2">        
   <div class="nmzinner-3">
    <div class="nmzinner-4">
     [Selected Modules]
    </div>
   </div>
  </div>
 </div>
</div>

One Div Layout:

	
<div id="nmz[the id of this module]" class="nmzbody nmzonediv">
  <div class="nmzcontent nmzinner-1">[PHP Output and Custom content]</div>

  <div class="nmzmodule nmzinner-1">[Selected Modules]</div>
</div>

Raw Layout:

	
<div id="nmz[the id of this module]" class="nmzbody nmzraw">
  [PHP output and Custom content]
  [Selected Modules]
</div>