Question
Tips for non-scrolling regions/headers/title
If you set up a floating, non-scrolling header/title in your screen layout (skin), any links to a bookmark will place the bookmarked text underneath the header.
To ensure the bookmark displays below the non-scrolling header, add the following to your stylesheet:
a[name] {
padding-top: xxxpx;
}
where xxx is the total height of your non-scrolling region (I think this should include top and bottom padding and margins as well).

