spotted an overlay issue on this new WJ theme

sohom

Active Member
1,206
2012
411
520
Thread Link: https://www.wjunction.com/threads/thumbnail-video-in-wordpress.245928/
Could be spotted on any thread link, where "Click to expand" option is present.

echOgEA.png


I believe(& tested), increasing z-index value for header could solve this issue.

change below css code

.p-header {
background: #100e57;
display: block !important;
padding-left: 20px;
position: sticky;
position: -webkit-sticky;
top: 0;
z-index: 99;
}

to

.p-header {
background: #100e57;
display: block !important;
padding-left: 20px;
position: sticky;
position: -webkit-sticky;
top: 0;
z-index: 101;
}

Regards
 
1 comment
Back
Top