a scrollbar appears on the column if you hover your mouse over it, but i'd like for the scrollbar to be visible at all times. admittedly, my coding knowledge is limited, so i'm wondering if there's code i can use to make that possible?
thank you in advance! <3
This is more modifying the existing code to stop hiding the scroll bar so the CSS selectors that are responsible for the behaviour are below
{
position: absolute;
left: 508px;
top: 64px;
width: 284px;
height: 606px;
margin-left: 0px !important;
opacity: 1;
overflow: hidden;
}
:hover { width: 301px; overflow-y: auto; }
now to get the scrollbar to appear all the time the following changes to the above selectors will need to be implemented
First off not needed like it won't affect looks but you can remove the whole hover selector block (":hover { ... }") now the other selector should look like below
{
position: absolute;
left: 508px;
top: 64px;
width: 301px;
height: 606px;
margin-left: 0px !important;
opacity: 1;
overflow: auto;
}
So only two lines have been modified the width and the overflow
If you have any question lmk