Skip to content

Commit

Permalink
ul.articles instead of ul#articles
Browse files Browse the repository at this point in the history
  • Loading branch information
Jeff Kreeftmeijer committed Apr 3, 2013
1 parent 592e969 commit c20b198
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions css/layout.css
Expand Up @@ -32,15 +32,15 @@ ul#menu form{
display: inline;
}

ul#articles{
ul.articles{
list-style-type: none;
}

ul#articles li, div.result{
ul.articles li, div.result{
margin-bottom: 30px;
}

ul#articles p, div.result p{
ul.articles p, div.result p{
margin: 0;
}

Expand Down
4 changes: 2 additions & 2 deletions index.html
Expand Up @@ -6,7 +6,7 @@
---

<h4>Newest:</h4>
<ul id="articles">
<ul class="articles">
{% for post in site.posts limit:3 %}
<li>
<h3>
Expand All @@ -32,7 +32,7 @@ <h3>
</ul>

<h4>Most popular:</h4>
<ul id="articles">
<ul class="articles">
{% for post in site.categories.popular limit:3 %}
<li>
<h3>
Expand Down

0 comments on commit c20b198

Please sign in to comment.