I have two div one is sidebar & another one is Categories bar, i want to hide scroll bar from categories bar but.
I tried
#sidebar ::-webkit-scrollbar-thumb { visibility: hidden; }
but it hide scrollbar from both div. Please help.
I have two div one is sidebar & another one is Categories bar, i want to hide scroll bar from categories bar but.
I tried
#sidebar ::-webkit-scrollbar-thumb { visibility: hidden; }
but it hide scrollbar from both div. Please help.
2
Answers
why don’t you use overflow?? like:
#sidebar { overflow: hidden; }
You could add a class to
categories bar
div. The class would target specific scrollbar you are trying to hide.Something like this, use as reference and adapt to your own code.