There are module variations which overrides normal css class, in case of "Latest News Module" on right hand side it is getting bullets from following "color" module suffix. Because it has an "!important" class your override does not overrides that class.
File: style1.css
Line: 191
- Code: Select all
.color_title .nspLinks ul li {
background-image: url("../images/style1/bullet_color.png") !important;
}
Business module has "bigtitle" module suffix and gets bullets from following;
File: style1.css
Line: 183
- Code: Select all
.big_title .nspLinks ul li {
background-image: url("../images/style1/bullet_color.png") !important;
See following for where bullet_color.png is used.
templates/gk_twn2/css/gk.stuff.css (2 hits)
- Code: Select all
Line 684: background: transparent url('../images/style1/bullet_color.png') no-repeat 1px 4px !important;
Line 740: background: transparent url('../images/style1/bullet_color.png') no-repeat 1px 4px !important;
templates/gk_twn2/css/style1.css (5 hits)
- Code: Select all
Line 91: background-image: url('../images/style1/bullet_color.png');
Line 122: background-image: url('../images/style1/bullet_color.png');
Line 126: background-image: url('../images/style1/bullet_color.png') !important;
Line 181: background-image: url('../images/style1/bullet_color.png') !important;
Line 189: background-image: url('../images/style1/bullet_color.png') !important;
templates/gk_twn2/css/style2.css (5 hits)
- Code: Select all
Line 91: background-image: url('../images/style2/bullet_color.png');
Line 122: background-image: url('../images/style2/bullet_color.png');
Line 126: background-image: url('../images/style2/bullet_color.png') !important;
Line 185: background-image: url('../images/style2/bullet_color.png') !important;
Line 193: background-image: url('../images/style2/bullet_color.png') !important;
templates/gk_twn2/css/style3.css (5 hits)
- Code: Select all
Line 91: background-image: url('../images/style3/bullet_color.png');
Line 122: background-image: url('../images/style3/bullet_color.png');
Line 126: background-image: url('../images/style3/bullet_color.png') !important;
Line 185: background-image: url('../images/style3/bullet_color.png') !important;
Line 193: background-image: url('../images/style3/bullet_color.png') !important;
templates/gk_twn2/css/style4.css (5 hits)
- Code: Select all
Line 91: background-image: url('../images/style4/bullet_color.png');
Line 122: background-image: url('../images/style4/bullet_color.png');
Line 126: background-image: url('../images/style4/bullet_color.png') !important;
Line 185: background-image: url('../images/style4/bullet_color.png') !important;
Line 193: background-image: url('../images/style4/bullet_color.png') !important;
templates/gk_twn2/css/style5.css (5 hits)
- Code: Select all
Line 91: background-image: url('../images/style5/bullet_color.png');
Line 122: background-image: url('../images/style5/bullet_color.png');
Line 126: background-image: url('../images/style5/bullet_color.png') !important;
Line 185: background-image: url('../images/style5/bullet_color.png') !important;
Line 193: background-image: url('../images/style5/bullet_color.png') !important;
templates/gk_twn2/css/style6.css (5 hits)
- Code: Select all
Line 91: background-image: url('../images/style6/bullet_color.png');
Line 122: background-image: url('../images/style6/bullet_color.png');
Line 126: background-image: url('../images/style6/bullet_color.png') !important;
Line 185: background-image: url('../images/style6/bullet_color.png') !important;
Line 193: background-image: url('../images/style6/bullet_color.png') !important;
templates/gk_twn2/css/template.css (3 hits)
- Code: Select all
Line 633: background: transparent url('../images/style1/bullet_color.png') no-repeat left 10px;
Line 941: background: transparent url('../images/style1/bullet_color.png') no-repeat left 10px !important;
Line 953: background: transparent url('../images/style1/bullet_color.png') no-repeat left 10px;
See you around...