diff --git a/app/helpers/topics_helper.rb b/app/helpers/topics_helper.rb
index 978b118d5..8ad809ef6 100644
--- a/app/helpers/topics_helper.rb
+++ b/app/helpers/topics_helper.rb
@@ -4,7 +4,4 @@ module TopicsHelper
     link_to(topic.title,topic.relative_url)
   end
 
-  def render_topic_next_page_link(topic, next_page)
-    link_to("next page", "#{topic.relative_url}?page=#{next_page}")
-  end
 end
diff --git a/app/views/topics/show.html.erb b/app/views/topics/show.html.erb
index e4125c15d..4a6f5d2e5 100644
--- a/app/views/topics/show.html.erb
+++ b/app/views/topics/show.html.erb
@@ -1,5 +1,5 @@
 <h2>
-  <a href="<%= @topic_view.relative_url %>"><%= @topic_view.title %></a>
+   <%= render_topic_title(@topic_view.topic) %>
 </h2>
 <hr/>
 
@@ -15,7 +15,7 @@
 
 <% if @topic_view.next_page %>
   <p>
-    <a href="<%= @topic_view.next_page_path %>">next page &rarr;</a>
+    <b><%= link_to("next page &rarr;", @topic_view.next_page_path ) %></b>
   </p>
 <% end %>