Replies

Oct 19, 2023 2 years ago
Wise
User Avatar
Fast


i'm currently using a free profile layout that i really like, but there's one tiny thing i'd like to adjust.

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



kumos gallery

Oct 19, 2023 2 years ago
spacemage
is fashionable
User Avatar

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

I made a forum group for CustomCSS and more

Oct 19, 2023 2 years ago
Wise
User Avatar
Fast


that worked perfectly, thank you so much! :)


kumos gallery

Please log in to reply to this topic.