diff --git a/components/toolbar/appearance.md b/components/toolbar/appearance.md
index 90a8950def..41c25bd90a 100644
--- a/components/toolbar/appearance.md
+++ b/components/toolbar/appearance.md
@@ -84,4 +84,5 @@ You can increase or decrease the size of the ToolBar by setting the `Size` param
## See Also
- * [Live Demo: ToolBar Appearance](https://demos.telerik.com/blazor-ui/toolbar/appearance)
\ No newline at end of file
+* [Live Demo: ToolBar Appearance](https://demos.telerik.com/blazor-ui/toolbar/appearance)
+* [Vertical ToolBar](slug:toolbar-kb-vertical-orientation-display)
diff --git a/knowledge-base/toolbar-vertical-orientation-display.md b/knowledge-base/toolbar-vertical-orientation-display.md
new file mode 100644
index 0000000000..818e4c66d3
--- /dev/null
+++ b/knowledge-base/toolbar-vertical-orientation-display.md
@@ -0,0 +1,133 @@
+---
+title: Display Vertical ToolBar
+description: Learn how to display the Telerik ToolBar for Blazor vertically.
+type: how-to
+page_title: How to Display Vertical ToolBar
+slug: toolbar-kb-vertical-orientation-display
+tags: telerik, blazor, toolbar
+ticketid: 1693045
+res_type: kb
+---
+
+## Environment
+
+
+
+
+ Product |
+ ToolBar for Blazor |
+
+
+
+
+## Description
+
+This KB answers the following questions:
+
+* How to display the TelerikToolBar vertically?
+* How to render the Telerik ToolBar for Blazor with vertical orientation?
+* How to arrange the ToolBar buttons one below the other?
+
+## Solution
+
+1. Disable the automatic tool overflowing with `OverflowMode="@ToolBarOverflowMode.None"` or `Adaptive="false"` in older versions.
+1. Set a custom CSS class to the ToolBar with the `Class` parameter.
+1. Use the custom CSS class to [override the ToolBar CSS styles](slug:themes-override):
+ * Set `column` `flex-flow` for the ToolBar and any nested [ButtonGroups](slug:toolbar-built-in-tools#toolbarbuttongroup). See [Flexbox Guide](https://css-tricks.com/snippets/css/a-guide-to-flexbox/) for more information.
+ * Reduce the component `width`.
+ * Adjust the `border-radius` values of buttons inside nested ButtonGroups.
+
+>caption Configure a vertical Telerik ToolBar for Blazor
+
+````RAZOR
+Block ToolBar
+
+before
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+after
+
+Inline ToolBar
+
+before
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+after
+
+
+
+@code {
+ private bool BoldSelected { get; set; }
+ private bool ItalicSelected { get; set; }
+ private bool UnderlineSelected { get; set; }
+}
+````
+
+## See Also
+
+* [ToolBar Overview](slug:toolbar-overview)