Bullet points not showing + pixelated font

Rate this topic: Evaluations: 1, 1.00 on the average.Evaluations: 1, 1.00 on the average.Evaluations: 1, 1.00 on the average.Evaluations: 1, 1.00 on the average.Evaluations: 1, 1.00 on the average.Evaluations: 1, 1.00 on the average.1.00 out of 6 based on 1 vote(s)
GK User
Tue May 20, 2014 9:54 am
Reply with quote
Report this post
http://www.tech-it-easy.co.uk/

The three headers below my banner, the text below should be bullet pointed.
I'm using ul class="gkBullet3", tried with gkCircle as well, nothing shows up, any idea?

Also: On my screen at least, any type of module/component I've edited now displays pixelated font?
For instance I've edited button and menu text and now they look considerably less smooth?

Thanks.
(Edit: only just realized template forum, deleted old post, apologies ;) )
User avatar
Junior Boarder

GK User
Fri May 23, 2014 1:38 pm
Reply with quote
Report this post
Hello,

The bullets are dedicated for the content, but you can change this behaviour by changing in the typography.style1.css file code:

Code: Select all
section.content ul.gkBullet1 li,
#k2Container .itemFullText ul.gkBullet1 li,
#k2Container .itemIntroText ul.gkBullet1 li { background: url("../../images/style1/typography/bullet1.png") no-repeat 0 10px !important }
section.content ul.gkBullet2 li,
#k2Container .itemFullText ul.gkBullet2 li,
#k2Container .itemIntroText ul.gkBullet2 li { background: url("../../images/style1/typography/bullet2.png") no-repeat 0 10px !important }
section.content ul.gkBullet3 li,
#k2Container .itemFullText ul.gkBullet3 li,
#k2Container .itemIntroText ul.gkBullet3 li { background: url("../../images/style1/typography/bullet3.png") no-repeat 0 10px !important }
section.content ul.gkBullet4 li,
#k2Container .itemFullText ul.gkBullet4 li,
#k2Container .itemIntroText ul.gkBullet4 li { background: url("../../images/style1/typography/bullet4.png") no-repeat 0 10px !important }
section.content ul li,
#k2Container .itemFullText ul li,
#k2Container .itemIntroText ul li,
section.content ul.gkCircle1 li,
#k2Container .itemFullText ul.gkCircle1 li,
#k2Container .itemIntroText ul.gkCircle1 li { background: url("../../images/style1/typography/bullet-circle1.png") no-repeat 0 9px !important }
section.content ul.gkCircle2 li,
#k2Container .itemFullText ul.gkCircle2 li,
#k2Container .itemIntroText ul.gkCircle2 li { background: url("../../images/style1/typography/bullet-circle2.png") no-repeat 0 9px !important }
section.content ul.gkSquare1 li,
#k2Container .itemFullText ul.gkSquare1 li,
#k2Container .itemIntroText ul.gkSquare1 li { background: url("../../images/style1/typography/bullet-square1.png") no-repeat 0 10px !important }
section.content ul.gkSquare2 li,
#k2Container .itemFullText ul.gkSquare2 li,
#k2Container .itemIntroText ul.gkSquare2 li { background: url("../../images/style1/typography/bullet-square2.png") no-repeat 0 10px !important }


to:

Code: Select all
ul.gkBullet1 li,
#k2Container .itemFullText ul.gkBullet1 li,
#k2Container .itemIntroText ul.gkBullet1 li { background: url("../../images/style1/typography/bullet1.png") no-repeat 0 10px !important }
ul.gkBullet2 li,
#k2Container .itemFullText ul.gkBullet2 li,
#k2Container .itemIntroText ul.gkBullet2 li { background: url("../../images/style1/typography/bullet2.png") no-repeat 0 10px !important }
ul.gkBullet3 li,
#k2Container .itemFullText ul.gkBullet3 li,
#k2Container .itemIntroText ul.gkBullet3 li { background: url("../../images/style1/typography/bullet3.png") no-repeat 0 10px !important }
ul.gkBullet4 li,
#k2Container .itemFullText ul.gkBullet4 li,
#k2Container .itemIntroText ul.gkBullet4 li { background: url("../../images/style1/typography/bullet4.png") no-repeat 0 10px !important }
section.content ul li,
#k2Container .itemFullText ul li,
#k2Container .itemIntroText ul li,
ul.gkCircle1 li,
#k2Container .itemFullText ul.gkCircle1 li,
#k2Container .itemIntroText ul.gkCircle1 li { background: url("../../images/style1/typography/bullet-circle1.png") no-repeat 0 9px !important }
ul.gkCircle2 li,
#k2Container .itemFullText ul.gkCircle2 li,
#k2Container .itemIntroText ul.gkCircle2 li { background: url("../../images/style1/typography/bullet-circle2.png") no-repeat 0 9px !important }
ul.gkSquare1 li,
#k2Container .itemFullText ul.gkSquare1 li,
#k2Container .itemIntroText ul.gkSquare1 li { background: url("../../images/style1/typography/bullet-square1.png") no-repeat 0 10px !important }
ul.gkSquare2 li,
#k2Container .itemFullText ul.gkSquare2 li,
#k2Container .itemIntroText ul.gkSquare2 li { background: url("../../images/style1/typography/bullet-square2.png") no-repeat 0 10px !important }
User avatar
Administrator

GK User
Fri May 23, 2014 6:31 pm
Reply with quote
Report this post
Thanks very much
User avatar
Junior Boarder


cron