---
title: "How to center align the heading in the articles"
slug: "how-to-center-align-the-heading-in-the-articles"
description: "In Document360, with the help of Custom CSS, you can center-align the headings in the articles."
tags: ["Customization"]
updated: 2025-12-29T10:46:56Z
published: 2026-01-31T09:30:11Z
---

> ## Documentation Index
> Fetch the complete documentation index at: https://docs.document360.com/llms.txt
> Use this file to discover all available pages before exploring further.

# How to center align the heading in the articles

In Document360, with the help of Custom CSS, you can center-align the headings in the articles.

> [!NOTE]
> ** NOTE
> 
> This action will change the alignment of all the headings (H2, H3, and H4) to center alignment.

### Solution

1. Navigate to **Settings** (<nor class="fa-solid fa-gear" data-tomark-pass=""></nor>) > **Knowledge base site** > **Site customization** > **Custom CSS & JavaScript** in the Knowledge base portal.

![Site customization options for branding, theme selection, and custom CSS in Document360.](https://cdn.document360.io/860f9f88-412e-4570-8222-d5bf2f4b7dd1/Images/Documentation/Custom%20css%20&amp;%20js.png)
2. From the left navigation pane, click on the **CSS** tab and paste the following CSS snippet:

```css
H2,H3,H4{
text-align:center;
}
```

1. Click **Save**.

![](https://cdn.document360.io/860f9f88-412e-4570-8222-d5bf2f4b7dd1/Images/Documentation/image-1767005209481.png)
