diff --git a/apps/routerconsole/java/src/net/i2p/router/web/SummaryHelper.java b/apps/routerconsole/java/src/net/i2p/router/web/SummaryHelper.java
index 0509d6f3785fbdb83fa1dc0a80b5c21638605994..86c9daaea90a733138efc53c3790d2bcbe635483 100644
--- a/apps/routerconsole/java/src/net/i2p/router/web/SummaryHelper.java
+++ b/apps/routerconsole/java/src/net/i2p/router/web/SummaryHelper.java
@@ -921,12 +921,22 @@ public class SummaryHelper extends HelperBase {
                    .append(i)
                    .append("_top\"><img alt=\"")
                    .append(_("Top"))
-                   .append("\" src=\"" + imgPath + "move_top.png\" /></button>");
+                   .append("\" src=\"")
+                   .append(imgPath)
+                   .append("move_top.png")
+                   .append("\" title=\"")
+                   .append(_("Move to top"))
+                   .append("\"/></button>");
                 buf.append("<button type=\"submit\" class=\"buttonUp\" name=\"action\" value=\"move_")
                    .append(i)
                    .append("_up\"><img alt=\"")
                    .append(_("Up"))
-                   .append("\" src=\"" + imgPath + "move_up.png\" /></button>");
+                   .append("\" src=\"")
+                   .append(imgPath)
+                   .append("move_up.png")
+                   .append("\" title=\"")
+                   .append(_("Move up"))
+                   .append("\"/></button>");
             }
             buf.append("</td><td align=\"left\">");
             if (i < sections.size() - 1) {
@@ -934,12 +944,22 @@ public class SummaryHelper extends HelperBase {
                    .append(i)
                    .append("_down\"><img alt=\"")
                    .append(_("Down"))
-                   .append("\" src=\"" + imgPath + "move_down.png\" /></button>");
+                   .append("\" src=\"")
+                   .append(imgPath)
+                   .append("move_down.png")
+                   .append("\" title=\"")
+                   .append(_("Move down"))
+                   .append("\"/></button>");
                 buf.append("<button type=\"submit\" class=\"buttonBottom\" name=\"action\" value=\"move_")
                    .append(i)
                    .append("_bottom\"><img alt=\"")
                    .append(_("Bottom"))
-                   .append("\" src=\"" + imgPath + "move_bottom.png\" /></button>");
+                   .append("\" src=\"")
+                   .append(imgPath)
+                   .append("move_bottom.png")
+                   .append("\" title=\"")
+                   .append(_("Move to bottom"))
+                   .append("\"/></button>");
             }
             buf.append("</td></tr>\n");
         }
diff --git a/installer/resources/themes/console/light/images/move_bottom.png b/installer/resources/themes/console/light/images/move_bottom.png
index 577ae3352199ef87736c59ec1a137aa5165a4961..bc0ecd8d7ac712a134ad848f9a4b7e849f71e3c3 100644
Binary files a/installer/resources/themes/console/light/images/move_bottom.png and b/installer/resources/themes/console/light/images/move_bottom.png differ
diff --git a/installer/resources/themes/console/light/images/move_down.png b/installer/resources/themes/console/light/images/move_down.png
index d82b5d45dcfd3fe251ef497ce48108cb251109be..4c9d311de0a5e96a4a92de63e508b5507ec43a32 100644
Binary files a/installer/resources/themes/console/light/images/move_down.png and b/installer/resources/themes/console/light/images/move_down.png differ
diff --git a/installer/resources/themes/console/light/images/move_top.png b/installer/resources/themes/console/light/images/move_top.png
index 55192cf79bd3ce5bb58ab0323eed2d3f05b2bab7..6a05a35ea8be9814f640f996d56e1046d4291c3f 100644
Binary files a/installer/resources/themes/console/light/images/move_top.png and b/installer/resources/themes/console/light/images/move_top.png differ
diff --git a/installer/resources/themes/console/light/images/move_up.png b/installer/resources/themes/console/light/images/move_up.png
index e512dbdc2d1682d38bd58edaa248aff3cbde7863..47f79c10888302794696c28e111cd79b16b9930d 100644
Binary files a/installer/resources/themes/console/light/images/move_up.png and b/installer/resources/themes/console/light/images/move_up.png differ