Problem/Motivation
Currently Toolbar is adding a 20px padding to the <body>
tag to compensate its height, but it makes the anchors to point 20px away so they end up hidden under the Toolbar.
Proposed resolution
http://stackoverflow.com/a/21707103
Something like this may work:
:target:before {
display: block;
position: relative;
top: -100px;
visibility: hidden;
}
Remaining tasks
Manually test it