How to remove bullets in mudules lists

GK User
Tue Jan 03, 2012 10:20 pm
Hi, how cam I remove the bullets in lists inside the modules? Like JomSocial new users module and others.
URL with the problem: http://www.ca2.archweb.com.br/ at the bottom of the page.
User avatar
Senior Boarder

GK User
Sat Jan 07, 2012 11:18 am
Hi.
To disable the bullets you can replace the bullet image for blank, white picture, which I attached. Paste it to twn2/templates/gk_twn2/images/style1 . Here is the link to this image because it is almost invisible as attached file: http://www.speedyshare.com/file/KDCr4/bullet-color.png
User avatar
Platinum Boarder

GK User
Sun Jan 08, 2012 10:20 am
mikeMB wrote:Hi.
To disable the bullets you can replace the bullet image for blank, white picture, which I attached. Paste it to twn2/templates/gk_twn2/images/style1 . Here is the link to this image because it is almost invisible as attached file: http://www.speedyshare.com/file/KDCr4/bullet-color.png


Although this removes the appearance of the bullet image itself it still leaves the contents of the module in question slightly offset to the right (larger space on left side) which isn't good if your trying to get things right..Is there a better way to remove this?

Dave
User avatar
Expert Boarder

GK User
Mon Jan 09, 2012 12:17 pm
Another solution is:
Go to twn2/templates/gk_twn2/css/template.css, find this code:
Code: Select all
#gkPage .box_text li { background: transparent url('../images/style1/bullet_color.png') no-repeat left 10px; line-height: 24px; padding-left: 13px; }

and chage it to:
Code: Select all
#gkPage .box_text li { background: transparent url('../images/style1/bullet_color.png') no-repeat left 10000px; line-height: 24px; }
User avatar
Platinum Boarder

GK User
Mon Jan 09, 2012 12:45 pm
mikeMB wrote:Another solution is:
Go to twn2/templates/gk_twn2/css/template.css, find this code:
Code: Select all
#gkPage .box_text li { background: transparent url('../images/style1/bullet_color.png') no-repeat left 10px; line-height: 24px; padding-left: 13px; }

and chage it to:
Code: Select all
#gkPage .box_text li { background: transparent url('../images/style1/bullet_color.png') no-repeat left 10000px; line-height: 24px; }


Hi Mike,

Thanks for your response....At first try this seems to work...Still need to play around with alignment within mod but will let you know later.....

Dave
User avatar
Expert Boarder

GK User
Mon Jan 09, 2012 4:39 pm
Hi again.
I have one more, and I think the best solution. Try this code:
Code: Select all
#gkPage .box_text li {  background: none!important; line-height: 24px; padding-left:0!important; }
User avatar
Platinum Boarder

GK User
Mon Jan 09, 2012 6:48 pm
mikeMB wrote:Hi again.
I have one more, and I think the best solution. Try this code:
Code: Select all
#gkPage .box_text li {  background: none!important; line-height: 24px; padding-left:0!important; }


Mike,

That was the one...Fixed issue - from my part anyway...

Thanks very much..

Dave
User avatar
Expert Boarder

GK User
Mon Jan 09, 2012 11:43 pm
No problem at all.
User avatar
Platinum Boarder


cron