---
title: "How to customize the hyperlink size"
slug: "how-to-customize-the-hyperlink"
description: "In Document360, you can customize the appearance of some hyperlinks to make them stand out."
tags: ["Customization"]
updated: 2025-12-28T13:56:09Z
published: 2026-01-31T17:30:02Z
---

> ## 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 customize the hyperlink size

You can customize the appearance of some hyperlinks to make them stand out. With the below solution, you can customize the font size of the hyperlink.

---

### 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 a knowledge base, including theme and branding settings.](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
.CustomLink
{
font-size:25px;
}
```
3. Update the desired font size in the above snippet. The font size is mentioned as `25px` in the above snippet.
4. Click **Save**.

![](https://cdn.document360.io/860f9f88-412e-4570-8222-d5bf2f4b7dd1/Images/Documentation/image-1766930162971.png)
5. Navigate to the desired article and type in the below code in the desired instance.

```xml
<a class="CustomLink" href="https://www.document360.com/">Document360</a>
```

> [!NOTE]
> ** NOTE
> 
> Hyperlink - https://www.document360.com Hyperlink text - Document360

1. Update the hyperlink and hyperlink text in the code.
