diff --git a/app/assets/stylesheets/specific/explore.css.scss b/app/assets/stylesheets/specific/explore.css.scss index 3038cbabb..0e59e150d 100644 --- a/app/assets/stylesheets/specific/explore.css.scss +++ b/app/assets/stylesheets/specific/explore.css.scss @@ -1,3 +1,5 @@ +@import "../common/000_vars.css.scss"; + div#c-explore-posts { header { text-align: center; @@ -18,7 +20,7 @@ div#c-explore-posts { } div#a-intro { - width: 60em; + width: 870px; margin: 0 auto; text-align: center; } diff --git a/app/logical/post_sets/intro.rb b/app/logical/post_sets/intro.rb index c6517e9e7..4449cb957 100644 --- a/app/logical/post_sets/intro.rb +++ b/app/logical/post_sets/intro.rb @@ -6,7 +6,7 @@ module PostSets def posts @posts ||= begin - temp = ::Post.tag_match("#{tag_string} favcount:>10").paginate(page, :search_count => nil, :limit => 6) + temp = ::Post.tag_match("#{tag_string} favcount:>3").paginate(page, :search_count => nil, :limit => 5) temp.all temp end diff --git a/app/views/explore/posts/intro.html.erb b/app/views/explore/posts/intro.html.erb index a77f0a25e..52b33da98 100644 --- a/app/views/explore/posts/intro.html.erb +++ b/app/views/explore/posts/intro.html.erb @@ -14,7 +14,7 @@ <% @presenter.each do |tag, post_set| %>
-

<%= link_to tag, posts_path(:tags => tag), :class => "tag-type-3" %>

+

<%= link_to tag, posts_path(:tags => tag) %>

<%= post_set.presenter.post_previews_html(self) %>