i have the following selector in my css:
a:active {
position: relative;
top: 1px;
}
So every link has this little button-effect when it\'s
The following
a#back-to-top:active {
position:fixed;
top: auto;
}
would fix it, since it is more specific and will get applied, and it overrides the part that makes your button move..
No need for the !important
directive since the rule has higher specificity and will get applied instead..
demo: http://jsfiddle.net/gaby/zUEER/