While reading long discussions on many GO questions, many times I’ve to scroll way up to see exact question, or few minor details! I found scrolling up, while leaving discussion, a bit disturbing as it looses the flow of reading. So, I tried to implement YouTube like PIP mode for questions, where question is fixed at one corner. 

I found it useful and convenient than before, so thought it’s better to share!

Steps:

  1. Open console in browser (Right click anywhere and then select ‘Inspect’, a window will open, select ‘Console’ tab there )
  2. Copy and paste following code:

$('.qa-q-view-content').css({'position': 'fixed', 'z-index': '9999', 'top': '2px', 'width': '30%', 'height': '50%', 'right': '2px', 'border': '2px solid black', 'border-radius': '5px'});

 

Here’s how it looks:

 

 

 

posted Jan 1, 2019
19
Like
0
Love
0
Haha
2
Wow
0
Angry
0
Sad

6 Comments