.../interface/style.css?v=4867
.mydbr_popupframe {
left: 35%;
}
This option is for a large popupframe to far right. That works great with a left: 10%;
However, with a small popup, that is way to far left to be pretty.
Preferably I would apply some code to center the popupframe with a max width of 95% of the windowsize.
I found this
position: fixed;
top: 50%;
left: 50%;
transform: translate(-50%, -50px);
width: 50%;
But than the stickyheader/floatingheader misaligns when scrolling through a result set.
Do you have an idea how I can apply such a solution.