diff --git a/app/views/aspects/index.html.haml b/app/views/aspects/index.html.haml
index 052fa6d7c4219a14cd15b427db42284000df6090..6275a3b774c7b15154216c7cb30b3c39f4132f61 100644
--- a/app/views/aspects/index.html.haml
+++ b/app/views/aspects/index.html.haml
@@ -10,7 +10,7 @@
   #welcome-to-diaspora
     .container{:style => "position: relative;"}
       .right
-        = link_to image_tag('deletelabel.png'), getting_started_completed_path
+        = link_to image_tag('deletelabel.png'), getting_started_completed_path, :id => "gs-skip-x"
       .span-23
         %h1
           = t('.welcome_to_diaspora', :name => current_user.first_name)
diff --git a/public/stylesheets/sass/application.sass b/public/stylesheets/sass/application.sass
index 2a5f40422ddf9bc84e784ee83ee0fc2c39b6664a..aa5a209768301e314694025056be81bbf46c41bd 100644
--- a/public/stylesheets/sass/application.sass
+++ b/public/stylesheets/sass/application.sass
@@ -3410,3 +3410,10 @@ a.toggle_selector
 #gs-shim
   :position absolute
   :top 380px
+
+#gs-skip-x
+  @include opacity(0.5)
+  @include transition(opacity)
+
+  &:hover
+    @include opacity(1)