Empty header and reduce page padding.
Hi, In a custom page I want to have my content full, I only want the sidebar and the app header.
I want to remove the page header and the padding-x of the page.
I want to delete all red space, and make green full page.
Solution:Jump to solution
Thanks @AliBabba420. Only one think, getBreadcrumbs function must be public.
```
protected ?string $heading =" '';
public function getBreadcrumbs(): array...
2 Replies
protected ?string $heading =" '';
protected function getBreadcrumbs(): array
{
return [""];
}
add this in listrecord page
Solution
Thanks @AliBabba420. Only one think, getBreadcrumbs function must be public.