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.
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 :)
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;
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;
}
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
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