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.

As of 22 Nov 2025, the Markdown editor has been upgraded from v1.4.10 to v3.2.2. The toolbar, layout, icons, and editor structure remain unchanged.

How to customize the hyperlink size

Prev Next

You can make specific hyperlinks stand out by giving them a larger font size than the surrounding text. This uses a CSS class that you define once in Custom CSS settings, then apply selectively to individual links in your articles using an HTML <a> tag. Only links tagged with the class are affected; all other hyperlinks remain unchanged.


When to use custom hyperlink font sizes

  • Call-to-action links: make a key link (such as "Get started" or "View pricing") visually larger to draw readers' attention.
  • Important references: highlight a critical external link or cross-article reference so it stands out from surrounding body text.
NOTE

This approach is per-link, not global. Only hyperlinks that include class="CustomLink" in their HTML tag are affected. Standard Markdown links and other hyperlinks are unchanged.


Quick reference

CSS snippet paste once in Custom CSS settings. Replace 25px with your desired font size:

.CustomLink {
    font-size: 25px;
}

Per-link HTML use in your article instead of a standard Markdown link. Replace the URL and link text:

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

How to add a custom font size to a hyperlink

Add the CSS class

  1. In the Knowledge Base portal, go to Settings > Knowledge base site > Custom CSS & JavaScript.

Knowledge base site settings page showing the Custom CSS and JavaScript option in the left navigation.

  1. Select the CSS tab and paste the following snippet:
.CustomLink {
    font-size: 25px;
}
  1. Replace 25px with your desired font size.
  2. Click Save.

Custom CSS editor showing the CustomLink font-size snippet pasted in the CSS tab with the Save button visible.

Apply the class to a link in your article

  1. Open the desired article and place your cursor where you want the styled link to appear.
  2. Paste the following HTML, replacing the URL and link text with your own:
<a class="CustomLink" href="https://www.document360.com/">Document360</a>
  • Replace https://www.document360.com/ with your desired link URL.
  • Replace Document360 with your desired link text.

Scope and coverage

Item Detail
Scope Per-link, only <a class="CustomLink"> tags are affected
Default font size example 25px adjust to match your design needs
Works in Markdown editor (inline HTML) and Advanced WYSIWYG editor (code view)
Other hyperlinks Unaffected, standard Markdown links and other HTML links remain unchanged

Best practices

  • Keep the class name consistent: CustomLink is used throughout this example. If you rename the class in the CSS, update every <a> tag in your articles to match.
  • Use sparingly: enlarged links draw attention precisely because they are different from surrounding text. If too many links use a large font size, the effect is lost, and the page becomes visually inconsistent.
  • Match font size to context: 25px is significantly larger than standard body text (typically 14–16px). For a subtle emphasis, consider 18px or 20px instead.
  • Extend the class for other properties: you can add more CSS properties to .CustomLink beyond font size, such as font-weight: bold or color: #1a73e8, to create a fully custom link style in one place.
  • Test in both Light and Dark mode: if your knowledge base supports Dark mode, verify the styled link is readable against both backgrounds.