This works for me
section.conteudopadrao a:before{
content: url("http://www.bestadsontv.com/images/facebook.gif");
}
Therefore, the solution proposed by Bruno above should work
section.conteudopadrao a:before{
content: url("./anuncie/pdf.png");
}
In case it doesn’t work, try it like this:
section.conteudopadrao a:before{
content: url("/anuncie/pdf.png");
}
If you still have problems, check if the image path is correct.
EDIT
According to information about your folder structure, the correct thing is to use the code below in your CSS
. ;)
section.conteudopadrao a:before{
content: url("../anuncie/pdf.png");
}
Section.conteudopadrao a::before{ content: url("./advertise/pdf.png"); }, see if it works.
– Bsalvo
https://www.w3schools.com/cssref/sel_before.asp
– Don't Panic
@Brunocastro did not work!
– Gladison