need update in elfeed-web so that the 2 scrolls ( title and news ) are independent.
Currently when I scroll the titles/heads then the news part also scrolls down. As soon as i go down to read any news and click it goes back above to the top of the file and I have to scroll again to reach the place till which I had read news. Could you please make this small change in index.html and elfeed.css to independent the 2 scrolls.
Addition needed in elfeed.css ( background colour can be adjusted based on your preference)
#side-nav {
position: fixed;
width: 250px;
height:100vh;
left: 0;
right: 0;
overflow-y: scroll;
background-color: ghostwhite;
top: 60px;
}
#content-col {
margin: 60px 0 0 250px;
padding: 0 30px;
overflow-y: scroll;
position: fixed;
left: 0;
top: 0;
height:100vh;
background-color: white;
}
Change needed in index.html
<div id="side-nav" class="large-5 columns">
<div id="content-col" class="large-7 columns">
Could you give me these changes as a pull request? That would make it really easy for me to accept. Thanks! (Note: I do not personally use elfeed-web, and so it's not really maintained right now.)
Ok, I will do it.