jeb5 / Sidetabs

Because tabs should be vertical
GNU General Public License v3.0
68 stars 4 forks source link

how to disable sidetabs header/bar ? #1

Closed rafaeldtinoco closed 2 years ago

rafaeldtinoco commented 2 years ago

Is there a way to disable:

image

this header/bar from the sidebar ?

Thank you!

jeb5 commented 2 years ago

Yes, you can disable it.

The sidebar header is a Firefox UI element, so the extension can't remove it by itself, but you can manually hide it by adding #sidebar-header { display: none; } to your userChrome.css file. (Instructions on how to do that here)

rafaeldtinoco commented 2 years ago

Thank you very much!