Jan
22
2009
|
| |||
HariesDesign.com - Module Class Suffix is modification module in joomla with own style.we can use module class suffix to distinguish that module from others with regard to the css classes it uses.
How to modify Module Class Suffix with our style?
Step 1
Open the module that you want to style in your backend: Module->Site Modules->Module Name Step 2 Add a suffix of your choice, say _mynewmodule , in the module class suffix parameter box, and save.
Then go to Site->Template Manager->Site Templates. Click the radio box for the template you're using; then click Edit CSS.
table.moduletable {
Step 4 To begin the style for your the module you're working on, you might first duplicate those classes that interest you (leaving the original for modules you're not modifying. Then add to the duplicate(s) your suffix to the classes you want to change. Say you want to change your module table heading class, you might do something like this:
table.moduletable_mymodulestyle th { DONE |