ヘッダー画像上ウィジェットエリアにテキストウィジェットを追加しています。
HTML
<a href="#content" class="down-btn"><i class="icon-down-open"></i></a>
CSS:
.textwidget a.down-btn {
display:inline-block;
position:relative;
height:90px;
width:90px;
border: 3px solid #fff;
font-size: 25px;
color: #fff;
border-radius:45px;
overflow:hidden;
transition:all .3s ease-in-out;
z-index:1;
}
.textwidget a.down-btn i:before{
margin:-3px;
display:block;
width:90px;
text-align:center;
line-height:90px;
}
.textwidget a.down-btn:hover {
color: #444;
background-color:rgba(255,255,255,0.78);
text-shadow: none;
}