| Tab Menu |
|
| Module Positions |
|
| Main Block Section |
|
| Top Block: |
Inserts the Top Module Block position has four Module Style: Options |
| Header Block: |
Inserts the Header Module Block position has four Module Style: Options |
| Breadcrumbs: |
Inserts Pathway Call: Home>>Blog>>Web design |
| Inset Block: |
Inserts the Inset Module Block position has four Module Style: Options |
| Newsflash Block: |
Inserts the Newsflash Module Block position has four Module Style: Options |
| Left Block: |
Inserts the Left Module Block position has four Module Style: Options |
| Main Body: |
This inserts the Main Body Component placeholder a Key File |
| Right Block: |
Inserts the Right Module Block position has four Module Style: Options |
| Bottom Block: |
Inserts the Bottom Module Block position has four Module Style: Options |
| Footer Include: |
inserts a php include file that can be found in your includes directory look for footer.php |
| Footer Block: |
Inserts the Footer Module Block position has four Module Style: Options |
| Legal's Block: |
Inserts the Legal's Module Block position has four Module Style: Options |
| |
|
| Tool Block Section: |
|
| Writes Your Site Title: |
Writes your Sites Name from the via the Global Configuration >> Sites Name: Media 65 |
| Add Search Form: |
Inserts a search form that's search's articles in Mambo CMS |
| Writes The Date: |
Inserts a php call that Print's Current Date: Sunday, January 01 2010 |
| Writes Full CMS URL Path: |
This prints out full url of your site http://www.m65.net/cms/ |
| Writes Template Image Path: |
Inserts a dynamic call to your template's images folder.
This call can be used to point to the location of a special script or the path to a flash SWF file.
The new images wizard does most the work but there maybe a time when it comes in useful. |
| |
| User Block Section: |
|
| User1 Block: |
Inserts the User1 Module Block position has four Module Style: Options |
| User2 Block: |
Inserts the User2 Module Block position has four Module Style: Options |
| User3 Block: |
Inserts the User3 Module Block position has four Module Style: Options |
| User4 Block: |
Inserts the User4 Module Block position has four Module Style: Options |
| User5 Block: |
Inserts the User5 Module Block position has four Module Style: Options |
| User6 Block: |
Inserts the User6 Module Block position has four Module Style: Options |
| User7 Block: |
Inserts the User7 Module Block position has four Module Style: Options |
| User8 Block: |
Inserts the User8 Module Block position has four Module Style: Options |
| User9 Block: |
Inserts the User9 Module Block position has four Module Style: Options |
| |
|
| Ad Block Section: |
|
| Ad Block 1: |
Inserts the Ad Block 1 Module Block position has four Module Style: Options |
| Ad Block 2: |
Inserts the Ad Block 2 Module Block position has four Module Style: Options |
| Ad Block 3: |
Inserts the Ad Block 3 Module Block position has four Module Style: Options |
| Banner Block: |
Inserts the Banner Module Block position has four Module Style: Options |
| |
|
| Module Box Style: |
|
| Default Style: |
This outputs the module data wrapped in a table.
Extra features can be added via the back end Administration Modules> Module Name >
Parameters>If the options are available for the Module via a special formatting call class suffix.
Make a copy of the table.module class in your style sheet. See #-STANDARD MODULE TABLE-# Section.
Them add suffix to the class and add any extra formatting.
table.moduletable.mysuffix{ your extra css code for a unique look;}
Module Output Code:
<table>
Your Module title is in a <th>Title </th> tag.
Main data is in a <td>data example a menu</td>
</table>
 |
| Style One: |
This style outputs a module with zero wrappers.
No html code surrounding the module and no title is printed.
Just the data of the module.
|
| Style Two: |
This module style is XHMTL version of the module code that is wrap around a div tag.
Extra formatting control via the class suffix if available via module parameters.
Module Output Code:
<div>
<h3>Title</h3>
Module Data
</div>
|
| Style Three: |
Allows for rounded corners.
<div> // A class can be added via the style sheets to add an image for round corners or code.
Also via the class suffix available via module parameters.
Module Output Code:
<div>
<div>
<div >
<h3>Title</h3>
Module Data
</div>
</div>
</div>
</div>
|