- Background of User10 is not yellow because having a css code is stronger than your code in template.css
Code:
.ja-box-right .ja-moduletable, .ja-box-right .moduletable, .ja-box-full .ja-moduletable, .ja-box-full .moduletable {
border: 0 !important;
background: 0 !important;
}
- Background of Who's online is not yellow because it belongs right position. Right position use style="jarounded" (you can see it by go to extensions > template manager > ja_purity_ii > layout tab > edit default layout
Code:
<block name="right1" style="jarounded">right</block>
Any block (position) use style="jarounded", then JAT3 will generate html code
Code:
<div class="ja-module ja-box-br module_suffix">
In your case, you set module suffix of Who's online is "_yellow", JAT3 will generate
Code:
<div class="ja-module ja-box-br module_yellow">
So it doesn't match your css code
- Background of User2, User5 is not red because _red (purity default) is just used for position use style="jarounded", user1-->user5 don't use the style, you can see it by see default layout
Code:
<block name="topsl" type="spotlight" main-inner="1">user1,user2,user3,user4,user5</block>
You can see _red css code in template.css
Code:
/* red */
div.module_red {
background: url(../images/br-br.gif) no-repeat bottom right #bf0000;
}
div.module_red .ja-box-bl {
background: url(../images/br-bl.gif) no-repeat bottom left;
}
div.module_red .ja-box-tl {
background: url(../images/br-tl.gif) no-repeat top left;
}
div.module_red .ja-box-tr {
background: url(../images/br-tr.gif) no-repeat top right;
}
Bookmarks