---
title: "How to move the related articles above the feedback section"
slug: "how-to-move-the-related-articles-above-the-feedback-section"
description: "When you configured the related articles section to appear at the article bottom, it appears below the feedback section by default. You would want to move the related articles above the feedback section to enhance the user experience. Follow the below steps to move the related articles above the feedback section."
tags: ["Knowledge base design", "Customization"]
updated: 2026-03-10T04:32:19Z
published: 2026-03-10T04:32:19Z
---

> ## 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 move the related articles above the feedback section

When you configured the related articles section to appear at the article bottom, it appears below the feedback section by default. You would want to move the related articles above the feedback section to enhance the user experience. Follow the below steps to move the related articles above the feedback section.

## 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 including CSS, JavaScript, and theme settings for a knowledge base.](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 **JavaScript**tab and paste the following JavaScript snippet:

```javascript
panel.onload = function () {
$(".content_block_text" ).append("<div class=\"sperator\"><hr></div>");
$('.related-articles-container').appendTo('.content_block_text') ;
}
```

1. Click **Save**.

> [!NOTE]
> ** NOTE
> 
> The above JavaScript code is only applicable for Knowledge base site 1.0.

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

### Outcome

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