PDA

View Full Version : Changing interior module colors


Comicbrew
10-08-2007, 05:38 PM
I have an odd question.

I want certain modules to be different colors... or one certain module to have a different color.
How do I go about doing that?

Basically, fill the entire module with color.

Brian
10-09-2007, 11:40 AM
Your best bet would probably be to create a new class for your colors, and then edit your 'adv_portal_module_wrapper' template to wrap an <if condition> around the class there.

<td class="<if condition="$mods['modid'] == X">yourclass<else />$bgclass</if>">


(Replace X there with the modid of the module you're trying to change, and 'yourclass' with your new class).