I was in the middle of editing the comment when you replied, so I'll just leave this here. I think the code that would work on your journal is actually this, instead of what I listed before:
ul.module-list li:before { content: url('URL OF GIF'); }
Also, you may want to add some padding so there'd be some space between the gif and the link, which could be done by adding a line like this one in red:
ul.module-list li:before { content: url('URL OF GIF'); padding-right: 10px; } You might have to play with the number to get it to look the way you want.
no subject
I was in the middle of editing the comment when you replied, so I'll just leave this here. I think the code that would work on your journal is actually this, instead of what I listed before:
ul.module-list li:before {
content: url('URL OF GIF'); }
ul.module-list li:first-child:before {
content: none; }
Also, you may want to add some padding so there'd be some space between the gif and the link, which could be done by adding a line like this one in red:
ul.module-list li:before {
content: url('URL OF GIF');
padding-right: 10px; }
You might have to play with the number to get it to look the way you want.