External Publication
Visit Post

Is there any fix or workaround about the scroll bar not being available to view chats on project folders

OpenAI Developer Community February 19, 2026
Source

With ChatGPT, I just found this solution which added the scroll bar for me (Windows 11, Edge):

  1. Installed Edge browser extension “Stylus” (google for “install stylus for edge“)

  2. Open Stylus, at “Style Manager” I added a “New Stylesheet” with the following URL Pattern: ^https:\/\/chatgpt\.com\/.*

Then I added the following code:

`/* Force scrollbar to be visible inside chat column */ [data-scroll-root] { scrollbar-width: auto !important; -ms-overflow-style: auto !important; }

/* Edge / Chromium scrollbar */ [data-scroll-root]::-webkit-scrollbar { width: 12px !important; display: block !important; }

[data-scroll-root]::-webkit-scrollbar-thumb { background-color: rgba(120,120,120,0.6) !important; border-radius: 6px !important; }`

I spent two hours on finding this solution with ChatGPT I hope this helps someone

Discussion in the ATmosphere

Loading comments...