Customize your Help Center with Custom CSS

Unlock advanced customization for your Help Center with Custom CSS.

1 min read

Looking for advanced customization for your Help Center? Notiondesk's Custom CSS feature offers you additional customization capabilities beyond the standard settings. From adjusting the font styles to fine-tuning the layout, the sky's the limit!

Table of contents 👇

  1. What is Custom CSS?
  2. How to Enable Custom CSS
  3. Examples of Custom CSS Customizations

What is Custom CSS?

CSS (Cascading Style Sheets) is a language used to describe the look and formatting of a document written in HTML. With Custom CSS in Notiondesk, you can personalize your Help Center's appearance down to the smallest details.

How to Enable Custom CSS

  1. Go to 'Settings': Log in to your Notiondesk account.
  1. Click on 'Integrations'.
  1. Enter your code in the 'Custom CSS' text box.

article image

Examples of Custom CSS Customizations

Here are some practical examples of what you can achieve:

Change the Header Background Color

header {
  background-color: #0652ea;
}

Add Borders to Articles

.nd-article-card {
  border: 2px solid #e316ff;
}

Change Hyperlink Colors

a {
  color: #059669;
}

Add a Sticky Footer

footer {
  position: fixed;
  bottom: 0;
  width: 100%;
}
Did this answer your question?