Hi,
I am unable to figure out how to remove the bullets (arrows) from appearing on the footer links under pages, archives, categories, news. Is there a simple way of remove the bullets just from the footer area?
Thanks
Hi,
I am unable to figure out how to remove the bullets (arrows) from appearing on the footer links under pages, archives, categories, news. Is there a simple way of remove the bullets just from the footer area?
Thanks
Open up style.css and edit line 168.
#footer .box ul li a, .wrapper #footer .box .recentcomments{
border-bottom:1px solid #4a4a4a;
background: transparent url(../images/skin1/bullet_grey.png) left 11px no-repeat;
}
remove this part
url(../images/skin1/bullet_grey.png)
and replace it with
none
Please open style1/2/3.css and find following code:
#footer .box ul li a, .wrapper #footer .box .recentcomments{
border-bottom:1px solid #4a4a4a;
background: transparent url(../images/skin1/bullet_grey.png) left 11px no-repeat;
}
change it to:
#footer .box ul li a, .wrapper #footer .box .recentcomments{
border-bottom:1px solid #4a4a4a;
background: none;
}You must log in to post.