diff --git a/app/views/shared/navigation/_application.html.erb b/app/views/shared/navigation/_application.html.erb
index 04ecc82..4f28ff3 100644
--- a/app/views/shared/navigation/_application.html.erb
+++ b/app/views/shared/navigation/_application.html.erb
@@ -12,10 +12,12 @@
<% end %>
<% semantic_navigation :user_nav, html: { class: 'nav pull-right' } do |n| %>
- <%= n.item '', link: Settings.news_link, html: { rel: 'tooltip', title: Settings.news_link } do %>
+ <%= n.item '', link: Settings.news_link,
+ html: { rel: 'tooltip', data: { placement: 'bottom' }, title: Settings.news_link } do %>
News
<% end %>
- <%= n.item '', link: page_path('donate'), html: { rel: 'tooltip', title: 'PayPal', class: 'highlight' } do %>
+ <%= n.item '', link: page_path('donate'),
+ html: { rel: 'tooltip', title: 'PayPal', data: { placement: 'bottom' }, class: 'highlight' } do %>
Donate
<% end %>
diff --git a/app/views/shared/navigation/_public.html.erb b/app/views/shared/navigation/_public.html.erb
index b5c9d2e..801b3d6 100644
--- a/app/views/shared/navigation/_public.html.erb
+++ b/app/views/shared/navigation/_public.html.erb
@@ -14,10 +14,12 @@
<% end %>
<% semantic_navigation :session_nav, html: { class: 'nav pull-right' } do |n| %>
- <%= n.item '', link: Settings.news_link, html: { rel: 'tooltip', title: Settings.news_link } do %>
+ <%= n.item '', link: Settings.news_link,
+ html: { rel: 'tooltip', data: { placement: 'bottom' }, title: Settings.news_link } do %>
News
<% end %>
- <%= n.item '', link: page_path('donate'), html: { rel: 'tooltip', title: 'PayPal', class: 'highlight' } do %>
+ <%= n.item '', link: page_path('donate'),
+ html: { rel: 'tooltip', title: 'PayPal', data: { placement: 'bottom' }, class: 'highlight' } do %>
Donate
<% end %>
<%= n.item '', link: new_user_registration_path do %>