iTunes "Now Playing" CSS
-
Comments:
- here.
A while ago, I played around with my site StyleSheet, and set it up so that a paragraph of text with the class iTunes had a little icon placed next to it. This seems to have stopped working. Must look into it. Edit: I fixed it. Originally the code was:
1 .itunes:before
2 {
3 content:url('/images/itunes.gif');
4 }
I changed it to:
1 .itunes
2 {
3 background:url('/images/itunes.gif') no-repeat;
4 text-indent:16px;
5 font-size:0.8em;
6 }