ページを上下にスクロールするとフォローされるソーシャル メディア ボタンのデザインを編集しています。あなたが一番上にいるときだけ見えるように、その振る舞いをやめてほしいです。これは関連するコードだと思います(100%確実ではありません):
.rt-social-buttons .rt-social-icon {
height: 43px;
width: 43px;
float: right;
display: block;
background-repeat: no-repeat;
margin-bottom: 2px;
-webkit-transition: width 0.2s ease-in, background-color 0.2s ease-in;
-moz-transition: width 0.2s ease-in, background-color 0.2s ease-in;
-o-transition: width 0.2s ease-in, background-color 0.2s ease-in;
-ms-transition: width 0.2s ease-in, background-color 0.2s ease-in;
transition: width 0.2s ease-in, background-color 0.2s ease-in;
}
.rt-social-buttons .rt-social-icon:hover {
width: 150px;
}
で、サイトはこちら。
ボタンが動かないようにするには、上記のコードから何を削除する必要がありますか?