How to control distance between bullet list?

GK User
Tue Jun 17, 2014 4:19 pm
As the attached image shows, I want to reduce the distance from

1. the distance from sentence and the first bullet
2. the distance between the bullets.

... and I want to use the override .css for this. Please assist on how to do it.
User avatar
Gold Boarder

GK User
Tue Jun 17, 2014 4:46 pm
Hello,

Could you provide an URL to your website?
User avatar
Administrator

GK User
Tue Jun 17, 2014 4:54 pm
As my site is not live yet. Please see your PM :)
User avatar
Gold Boarder

GK User
Tue Jun 17, 2014 8:32 pm
Please apply in your override.css file the following code:

Code: Select all
.itemBody > ul li, .itemBody > div > ul li,
#product-tabs-content dd,
ul.gkBullet1 li,
ul.gkBullet2 li,
ul.gkBullet3 li,
ul.gkBullet4 li {
padding: 2px 0 2px 16px!important;
}
.itemBody > ul li:before,
.itemBody > div > ul li:before,
ul.gkBullet1 li:before,
#product-tabs-content dd:before {
top: 8px!important;
}
.itemBody > ul,
.itemBody > div > ul,
ul.gkBullet1,
ul.gkBullet2,
ul.gkBullet3,
ul.gkBullet4 {
margin: -10px 0 12px 0!important;
}
User avatar
Administrator

GK User
Tue Jun 17, 2014 9:36 pm
A good start :) ... but how do I get the text to get closer?
As you can see I managed to get the bullet points OK.
User avatar
Gold Boarder

GK User
Wed Jun 18, 2014 11:02 am
For me the bullets doesn't look like your screenshot, but you can put the list higher by changing:

Code: Select all
.itemBody > ul, .itemBody > div > ul, ul.gkBullet1, ul.gkBullet2, ul.gkBullet3, ul.gkBullet4 {
margin: -10px 0 12px 0!important;
}


to:

Code: Select all
.itemBody > ul, .itemBody > div > ul, ul.gkBullet1, ul.gkBullet2, ul.gkBullet3, ul.gkBullet4 {
margin: -20px 0 12px 0!important;
}
User avatar
Administrator


cron