I’m having some trouble understanding exactly how this works. I want to center my adsense and banner extensions, how would I go about doing this with Module Class Suffix. I’ve been reading threads on the joomla and mambo forums but I can’t seem to get it to work???
in your CSS file: do, /** This will be for the whole module table.moduletable(modulename) { } /** This will be for the content table.moduletable(modulename) td { } /** This will be for the title table.moduletable(modulename th{ } So an example of a module for Polls looks like this: table.moduletablepolls th{ padding:5px; font-family:Verdana, Helvetica, sans-serif; width : 100%; } table.moduletablepolls td{ font-family:Arial,Helvetica, sans-serif; font-size:11px; padding-bottom:4px; } table.moduletablepolls{ border:1px solid #000000; background:#ffffff; height:180px; width:160px; } Make sure to edit your module and put the module suffix for that. For aligning it to center , you can try table.moduletable(modulename) { text-align:center; } Hope it works though, just did a scratch.
If you are willing to have a tables less design, and your layout is css based, you should load your modules with switch parameter = -2 or -3. mosLoadModules('left',-2) This way, your modules will be loaded inside a DIV rather than a TABLE tag and it helps you keep your layout table-less. so you should define those classes (Posted by psyberweb) for DIV tag as well.