diff --git a/docs/en/Themes/LeptonXLite/Blazor.md b/docs/en/Themes/LeptonXLite/Blazor.md
index 269abe5952..9cbb81ea38 100644
--- a/docs/en/Themes/LeptonXLite/Blazor.md
+++ b/docs/en/Themes/LeptonXLite/Blazor.md
@@ -192,6 +192,8 @@ The **brand component** is a simple component that can be used to display your b
+#### How to Override Branding Component
+
* Create a razor page, like `MyBrandingComponent.razor`, in your blazor application as shown below:
```html
@@ -223,6 +225,8 @@ On websites that have a lot of pages, **breadcrumb navigation** can greatly **en
+#### How to Override BreadCrumb Component
+
* Create a razor page, like `MyBreadcrumbsComponent.razor`, in your blazor application as shown below:
```html
@@ -258,6 +262,8 @@ Sidebar menus have been used as **a directory for Related Pages** to a **Service
+#### How to Override Main Menu Component
+
* Create a razor page, like `MyMainMenuComponent.razor`, in your blazor application as shown below:
```html
@@ -293,6 +299,8 @@ namespace LeptonXLite.DemoApp.Blazor.MyComponents
Toolbar items are used to add **extra functionality to the toolbar**. The toolbar is a **horizontal bar** that **contains** a group of **toolbar items**.
+#### How to Override Toolbar Items Component
+
* Create a razor page, like `MyToolbarItemsComponent.razor`, in your blazor application as shown below:
```html
@@ -328,6 +336,8 @@ Think about a **multi-lingual** website and the first thing that could **hit you
+#### How to Override Language Switch Component
+
* Create a razor page, like `MyLanguageSwitchComponent.razor`, in your blazor application as shown below:
```html
@@ -363,6 +373,8 @@ The **mobile** **language switch component** is used to switch the language of t
+#### How to Override Mobile Language Switch Component
+
* Create a razor page, like `MyMobilLanguageSwitchComponent.razor`, in your blazor application as shown below:
```html
@@ -398,6 +410,8 @@ The **User Menu** is the **menu** that **drops down** when you **click your name
+#### How to Override User Menu Component
+
* Create a razor page, like `MyUserMenuComponent.razor`, in your blazor application as shown below:
```html
@@ -433,6 +447,8 @@ The **mobile user menu component** is used to display the **user menu on mobile
+#### How to override the Mobile User Menu Component
+
* Create a razor page, like `MyMobileUserMenuComponent.razor`, in your blazor application as shown below:
```html