| Tab Menu for the extension |
|
| Joomla Module Positions |
|
| Joomla 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
|
| Pathway-Breadcrumbs: |
Inserts Pathway Call: Home>>Blog>>Web design
|
| Pathway Block |
Inserts the Pathway Module Block position has four Module Style: Options |
| 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
|
| 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
|
| |
|
| Joomla Module Styles: |
|
| Table Wrapper : |
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>
|
| Zero Wrapper : |
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.
|
| Div Wrapper : |
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>
|
| Round Conners Wrapper : |
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>
|