Skip to content

Instantly share code, notes, and snippets.

@zachbrowne
Created July 16, 2011 17:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save zachbrowne/1086576 to your computer and use it in GitHub Desktop.
Save zachbrowne/1086576 to your computer and use it in GitHub Desktop.
Add RSS Icons to a List of Feeds
.feed-list {
margin: 0 0 15px 15px;
padding: 0;
list-style-type: none;
}
.feed-list li {
margin: 0 0 10px 0;
padding: 0;
list-style-type: none;
}
.feed-list li a {
padding: 0 0 0 19px;
background: url("../images/feed-icon-14x14.png") no-repeat 0 50%;
list-style-type: none;
}
<ul class="feed-list">
<li><a href="#">All Posts</a></li>
<li><a href="#">Category 1</a></li>
<li><a href="#">Category 2</a></li>
<li><a href="#">Comments</a></li>
</ul>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment