diff --git a/changes b/changes
index a33edc88a6b26fdf4d51a0ea703f1366c90eb4f1..3529d7259943b79e3e4a71b95864856d8bbd01ab 100644
--- a/changes
+++ b/changes
@@ -1,3 +1,7 @@
+1.7.1 beta2
+     - disabling level creator pages which are currently unused
+     - added help topic selector on 'help page' with all the context
+
 1.7.0 beta1
   Nootka says: I speak Italian
      - added Italian translation
diff --git a/src/qml/level/LevelsPage.qml b/src/qml/level/LevelsPage.qml
index 6baa55eab5b747db0b764f5fcc85d85301d099fe..1a4de0a123eae8b9dc4312267fe6fecaf153b4b5 100644
--- a/src/qml/level/LevelsPage.qml
+++ b/src/qml/level/LevelsPage.qml
@@ -45,7 +45,7 @@ Column {
     }
   }
   LinkText {
-    text: qsTr("Get more levels <a href=\"%1\">from Nootka home page</a>").arg("https://nootka.sourceforge.io/index.php?C=down#levels")
+    text: qsTr("Get more levels <a href=\"%1\">from Nootka home page</a>").arg("https://nootka.sourceforge.io/index.php/download/#levels")
     anchors.horizontalCenter: parent.horizontalCenter
   }
 
diff --git a/src/qml/score/ControlButton.qml b/src/qml/score/ControlButton.qml
index 0acf28bfe9ee70ec31a049967ba4927121dd173f..59f06a4a491e99b63c4b17b5a049010440f58a61 100644
--- a/src/qml/score/ControlButton.qml
+++ b/src/qml/score/ControlButton.qml
@@ -24,19 +24,24 @@ Rectangle {
   height: factor * 3
   radius: factor / 5
 
+  scale: ma.containsMouse ? (ma.pressed ? 0.8 : 1.5) : 1
+  Behavior on scale { enabled: GLOB.useAnimations; NumberAnimation { duration: 150 }}
+  Behavior on color { enabled: GLOB.useAnimations; ColorAnimation { duration: 150 }}
+
   Text {
     id: txt
     x: (factor * 2 - width) / 2
     height: factor * 3
     style: Text.Normal
-    styleColor: selected ? activPal.highlightedText : activPal.shadow
     color: cb.enabled ? activPal.text : disdPal.text
   }
+
   MouseArea {
+    id: ma
     anchors.fill: parent
     hoverEnabled: true
     onClicked: cb.clicked()
-    onEntered: { txt.style = Text.Outline;  cb.entered() }
-    onExited: { txt.style = Text.Normal; cb.exited() }
+    onEntered: cb.entered()
+    onExited: cb.exited()
   }
 }