How to customize the hyperlink size?

Prev Next

Plans supporting this feature: Professional Business Enterprise

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 () > Knowledge base site > Customize site > Custom CSS & JavaScript in the Knowledge base portal.

  2. From the left navigation pane, click on the CSS tab and paste the following CSS snippet:

    .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.

  5. Navigate to the desired article and type in the below code in the desired instance.

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

NOTE

Hyperlink - https://www.document360.com
Hyperlink text - Document360

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