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.
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
#gkPage .box_text li { background: transparent url('../images/style1/bullet_color.png') no-repeat left 10px; line-height: 24px; padding-left: 13px; }
#gkPage .box_text li { background: transparent url('../images/style1/bullet_color.png') no-repeat left 10000px; line-height: 24px; }
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; }
#gkPage .box_text li { background: none!important; line-height: 24px; padding-left:0!important; }
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; }