Change side bar background color
how can i change the background of the navigation menu
Solution:Jump to solution
You need to create a custom theme like this : https://filamentphp.com/docs/3.x/panels/themes#creating-a-custom-theme
This will create a css file in your /resources/css/filament directory (named theme.css for your panel). And next you can add your customized class on it, like :
```css
.fi-sidebar {...
4 Replies
You have information about it on https://filamentphp.com/docs/3.x/support/style-customization
You can manage a theme and use .fi-sidebar and others to declare css.
I am quite confused on which file do i need to make change ?
Solution
You need to create a custom theme like this : https://filamentphp.com/docs/3.x/panels/themes#creating-a-custom-theme
This will create a css file in your /resources/css/filament directory (named theme.css for your panel). And next you can add your customized class on it, like :
dont forget run npm or yarn build / dev
Thank you it worked