We use LimeSurvey Community Edition Versio 6.15.24+251117, i.e. just upgraded to the newest. I want to make an option for our own theme for fixed headers on array questions and hence I will modify config.xml. However, I got stuck already with CSS. To custom.css I added
Code:
table.ls-answers thead th {
Code:
position: sticky !important;
Code:
top:0!important;
Code:
background:#ff0000 !important;
Code:
}
And headers are now red, so selectors work and CSS is applied. However header row is not sticky. Some pages say that there might be overflow:hidden in some parent element. Is this the right path in the first place? If so, what to try next?