This works for me here
section.conteudopadrao a:before{
content: url("http://www.bestadsontv.com/images/facebook.gif");
}
So the solution proposed by Bruno above should work
section.conteudopadrao a:before{
content: url("./anuncie/pdf.png");
}
If it does not work, try:
section.conteudopadrao a:before{
content: url("/anuncie/pdf.png");
}
If you continue to have problems, make sure the image path is correct.
EDIT
According to information on how your folder structure is, the correct one is to use the code below in your CSS
. ;)
section.conteudopadrao a:before{
content: url("../anuncie/pdf.png");
}