diff --git a/app/views/aspects/index.html.haml b/app/views/aspects/index.html.haml
index 052fa6d7c..6275a3b77 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 2a5f40422..aa5a20976 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)