diff --git a/app/assets/stylesheets/all.css.sass b/app/assets/stylesheets/all.css.sass
index d1e51e40549b95a6bb9353a3ef0a4637389e6ab4..b36fe49afa5236a3d0c2a72e8eb199316e2443fd 100644
--- a/app/assets/stylesheets/all.css.sass
+++ b/app/assets/stylesheets/all.css.sass
@@ -150,7 +150,6 @@ main
       font-size: larger
       line-height: 1.1em
       font-weight: bolder
-      vertical-align: middle
       background-color: #9CC5EE
       @include box-shadow(2px 2px 2px gray)
   select, option
diff --git a/app/views/lugs/index.html.haml b/app/views/lugs/index.html.haml
index f82fa8e5ec9b6834a1a0f85c84533e03e93c7c66..bfe8128e8d6e3172405ec3a18ce515983f60d5c5 100644
--- a/app/views/lugs/index.html.haml
+++ b/app/views/lugs/index.html.haml
@@ -13,6 +13,8 @@
     - @lugs.each do |lug|
       %tr
         %td
+          - if lug.url =~ /^http/
+            = image_tag lug.url+'/favicon.ico', alt: '', class: :favicon
           = lug.name
         %td
           = lug.city
@@ -21,10 +23,8 @@
         %td
           = lug.related_region
         %td
-          - if lug.url =~ /^http/
-            = image_tag lug.url+'/favicon.ico', alt: '', class: :favicon
           = link_to lug.url, lug.url
         %td
-          = link_to t('show'), lug_url(lug, q: params[:q]), class: :view_link
+          = link_to t('show'), lug_url(lug, q: params[:q], page: params[:page]), class: :view_link
 
 = paginate @lugs
diff --git a/app/views/lugs/show.html.haml b/app/views/lugs/show.html.haml
index 22faab04b99ad1181ee5d48b00d789e79b99d80a..e205afc9daef4cd8ddb0d2a1a62ddce30a004249 100644
--- a/app/views/lugs/show.html.haml
+++ b/app/views/lugs/show.html.haml
@@ -6,19 +6,23 @@
     %h3
       = image_tag @lug.url+'/favicon.ico', alt: '', class: :favicon
       = @lug.name
-  %dt= Lug.human_attribute_name :city
-  %dd= @lug.city
-  %dt= Lug.human_attribute_name :department
-  %dd= @lug.department
-  %dt= Lug.human_attribute_name :related_region
-  %dd= @lug.related_region
-  %dt= Lug.human_attribute_name :url
-  %dd= link_to @lug.url, @lug.url
+  - if @lug.city.present?
+    %dt= Lug.human_attribute_name :city
+    %dd= @lug.city
+  - if @lug.department.present?
+    %dt= Lug.human_attribute_name :department
+    %dd= @lug.department
+  - if @lug.related_region.present?
+    %dt= Lug.human_attribute_name :related_region
+    %dd= @lug.related_region
+  - if @lug.url.present?
+    %dt= Lug.human_attribute_name :url
+    %dd= link_to @lug.url, @lug.url
 
 %iframe(src="#{@lug.url}" width='1000' height='400' frameborder='none'
   allowTransparency='true')
 
 %nav
-  = link_to lugs_path(q: params[:q]), class: :back do
+  = link_to lugs_path(q: params[:q], page: params[:page]), class: :back do
     %em.fa.fa-arrow-left
     = Lug.model_name.human.pluralize