I need help with changing the icon color, not the background color. Here is my HTML code:
<i class="icon-large icon-3x icon-arrow-up go-top" style="color:#eee;"></i>
This is my CSS:
.go-top {
position: fixed;
bottom: 1em;
right: 1em;
text-decoration: none;
color: #fff;
font-size: 13px;
padding: 1em;
}
i.go-top:hover{
border-color:red;}
I want to change the color of the icon on hover.