You see - current bullets are made with font awesome and :before pseudoclass this way:
- Code: Select all
.itemBody > div > ul li:before, ul.gkBullet1 li:before, ul.gkBullet2 li:before, ul.gkBullet3 li:before, ul.gkBullet4 li:before, #k2Container .itemFullText ul li:before, #k2Container .itemIntroText ul li:before {
font-family: FontAwesome;
font-size: 13px;
position: absolute;
top: 3px;
left: 0;
}
.itemBody > div > ul li:before, ul.gkBullet1 li:before, #k2Container .itemFullText ul li:before, #k2Container .itemIntroText ul li:before, #k2Container ul.gkBullet1 li:before {
color: #222;
content: "\f00c";
}
The problematic part was probably hiding this bullet, so you have used position: static, which is wrong and causes the problem.
Please edit: /templates/gk_creativity/css/override.css and add at its end your custom code, then add this:
- Code: Select all
.itemBody > div > ul li:before, ul.gkBullet1 li:before, #k2Container .itemFullText ul li:before, #k2Container .itemIntroText ul li:before, #k2Container ul.gkBullet1 li:before {display: none;}
and remove position: static from your code.
Remember to enable "CSS override" in template settings - advanced section.