> For the complete documentation index, see [llms.txt](https://phoenixcoded.gitbook.io/able-pro/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://phoenixcoded.gitbook.io/able-pro/.net/customizer/sidebar-caption.md).

# Sidebar Caption

To make a visible/invisible Sidebar Caption in the theme navbar change value in "**/Ablepro/Views/Shared/\_config.cshtml**".

**To make visible Sidebar Caption in the navbar change given below**

```cshtml
TempData["CaptionShow"] = 'true';
```

**To make an invisible Sidebar Caption in the navbar change given below**

```cshtml
TempData["CaptionShow"] = 'false';
```
