Always show the Filters & Column Headers in the "Posts" page (Similar to Excel's "Freeze Panes")

Completed

As shown in the example below, having the top part of the page (where the filters & headers are) always show while scrolling will make understanding the analytics easier as it'll eliminate the need to scroll up every now and then to check which metric does the value we're looking at represent.

Requested by
Image
Yahya T Khedr
on

1 comment

For what it's worth, with a CSS injection extension this can be done in the meantime for anyone who wants it now. Here's the styles I used (you may need to adjust things to your own liking). This version keeps both the Filters and the table header stickied.

//Sets the Filter container to sticky.
.yhAwdFYtXQHSS5jcgEPu {
    position: sticky;
    top: 5.2rem;
    z-index: 1;
}

//Sets the table header to sticky.
.GoNWvIQfUuQh2rW0Ub9l thead {
    position: sticky;
    top: 10.75rem;
    background-color: #f3f2ef;
    z-index: 1;
}
Posted by
Image
Skyler Reeves
on