How to hide community plugins with a css file?

i need to hide community plugins button cuz it distract me with it broswer and if i press rec mode i can turn it off again easy

Hi. If you add this to your Obsidian css file, the “Community Plugins” button will disappear.

.mod-settings.mod-sidebar-layout .vertical-tab-header-group-items > .vertical-tab-nav-item:last-child { display: none !important;}

If you need to create an Obsidian css file, this is how you can do it:

If you have any questions, it’s okay to ask, I’ll help you :polar_bear: :hibiscus:

1 Like

thanks i will try it

it worked , thank you but how i can delete settings icon cuz i cant disaple apperance button also to prevent turning off the snippet?

Hey - this will hide the “Community Plugins” button AND the “Appearance” button (in settings):

.mod-settings.mod-sidebar-layout .vertical-tab-header-group-items > .vertical-tab-nav-item:last-child, .mod-settings.mod-sidebar-layout .vertical-tab-header-group-items > .vertical-tab-nav-item:nth-child(3) { display: none !important; }

:lizard: :desert:

1 Like

thanks

1 Like