Ask your WordPress questions! Pay money and get answers fast! Comodo Trusted Site Seal
Official PayPal Seal

Remove bullets footer widget title WordPress

  • SOLVED

Hello

Trying to implement my layout in WordPress.
Fighting a bit with the CSS to remove the bullets from the h2 header in the footer.
http://www.renesejling.dk/sites/sejlingcms/

Hope somebody can help me remove it, thanks.

See screenshot.
Using Chrome.

Answers (7)

2012-01-09

Reland Pigte answers:

Instead of this css

footer .column ul li {
background: url("../images/bullet-06.png") no-repeat scroll 0 9px transparent;
line-height: 30px;
padding: 0 0 0 14px;
}


Replace it with

footer .column ul li ul li {
background: url("../images/bullet-06.png") no-repeat scroll 0 9px transparent;
line-height: 30px;
padding: 0 0 0 14px;
}



Cheers,


René Sejling comments:

This worked, thanks :)


René Sejling comments:

This worked, thanks :)

2012-01-09

Sébastien | French WordpressDesigner answers:

replace
footer .column ul li {
background: url("../images/bullet-06.png") no-repeat scroll 0 9px transparent;
line-height: 30px;
padding: 0 0 0 14px;
}

by
footer .column ul li {
line-height: 30px;
padding: 0 0 0 14px;
}


and you could replace padding: 0 0 0 14px;
by padding : 0;

2012-01-09

Arnav Joy answers:

please send a screenshot


Arnav Joy comments:

if you are talking about the bullet next to form in the footer then

find out this

then go to line no. 599 in your css at

http://www.renesejling.dk/sites/sejlingcms/wp-content/themes/thesis_182/custom/css/styles.css?ver=3.3

you will get

footer .column ul li

replace this as

footer .column ul li {
background: none;
line-height: 30px;
padding: 0 0 0 14px;
}

2012-01-09

Francisco Javier Carazo Gil answers:

Hi René,

Try:


h2 {
list-style: none;
}

2012-01-09

Manoj Raj answers:

Try adding this

li.widget{
background : none transparent !important;
}

2012-01-09

Gabriel Reguly answers:

Hi René,

Remove this:


background: url("../images/bullet-06.png") no-repeat scroll 0 9px transparent;


from this

footer .column ul li {
background: url("../images/bullet-06.png") no-repeat scroll 0 9px transparent;
line-height: 30px;
padding: 0 0 0 14px;
}



Regards,
Gabriel


Gabriel Reguly comments:

File is http://www.renesejling.dk/sites/sejlingcms/wp-content/themes/thesis_182/custom/css/styles.css?ver=3.3

2012-01-09

Julio Potier answers:

Hello add this :

footer .column ul li .widget {
background: none !important;
}


in this file :
http://www.renesejling.dk/sites/sejlingcms/wp-content/themes/thesis_182/custom/css/styles.css