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 ๐
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
- Go to 'Settings': Log in to your Notiondesk account.
- Click on 'Integrations'.
- Enter your code in the 'Custom CSS' text box.
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%;
}