<em>@stinger2010 293452 wrote:</em><blockquote>OK, i have managed to answer all previous question, except i need help how to create module class suffics for new look of this module.
Hope, some help me.
Excuse me for my bad english.</blockquote>
I normally take an existing one and copy…For example this from the main template.css.
/* Module Red */
div.ja-moduletable.redbg,
div.moduletable.redbg { background: #fff; }
div.ja-moduletable.redbg h3, div.moduletable.redbg h3 { background: #c33; color: #fff; }
so to create a new one would be
/* Module New */
div.ja-moduletable.newbg,
div.moduletable.newbg { background: #fff; }
div.ja-moduletable.newbg h3, div.moduletable.newbg h3 { background: #<new color-here>; color: #fff; }
I’d then do a search to ensure that redbg isn’t referenced anywhere else and if so replicate that also if needed..
newbg being the new suffix…
Dave