How can I customize my Helpdesk layout?Customize the Helpdesk
Articles on: Crisp Helpdesk
If you would like to customize your Helpdesk layout, you can do so using Custom code. In this article we will provide you with some code snippets you can use in order to customize your Helpdesk.
If you're not familiar on where to add your custom code, you can follow this article here.
Jump to:
- Removing the "Go to website" button
- Change the "Search on help center..." text
- Removing the entire Helpdesk footer
- Removing the "Chat" button
- Removing the "Send us an Email" button
- Change the text of the contact us buttons
- Change the "Not finding what you are looking for?" texts
- Changing the font for the entire Helpdesk
- Hiding the the Article Popularity
- Clicking on a link should open on the same page
- Joining Tip Boxes
- Change the URL link when clicking on the Helpdesk logo
- Adding a drop-shadow to all images automatically
Removing the "Go to website" button
undefined header .csh-header-main-actions-website { display: none !important; }
Change the "Search on help center..." text
undefined
Removing the entire Helpdesk footer
undefined footer .csh-footer-ask { display: none !important; }
Removing the "Chat" button
undefined footer .csh-footer-ask-buttons .csh-button-icon-chat { display: none !important; } .csh-footer-ask-text-label { display: none !important; }
Removing the "Send us an Email" button
undefined footer .csh-footer-ask .csh-button-icon-email { display: none !important; } .csh-footer-ask-text-label { display: none !important; }
Change the text of the contact us buttons
undefined
Change the "Not finding what you are looking for?" texts
undefined
Changing the font for the entire Helpdesk
undefined * { font-family: "Open Sans" !important; }
Hiding the the Article Popularity
undefined .csh-category-item-meta-popularity { display: none !important; } .csh-category-item-meta-separator { display: none !important; } .csh-category-item a .csh-category-item-meta .csh-category-item-meta-description { flex: 1 !important; }
Clicking on a link should open on the same page
undefined
Joining Tip Boxes
undefined
Note: the text should be formatted like this:
Change the URL link when clicking on the Helpdesk logo
undefined
Adding a drop shadow to all images automatically
undefined .csh-markdown-image img { box-shadow: rgba(0, 0, 0, 0.3) 0px 12px 38px, rgba(0, 0, 0, 0.22) 0px 8px 12px; }
Want to use a different drop-shadow style? Don't hesitate searching some pre-made templates online such as theses ones.
You can copy the styling and replace the one in the code above. Enjoy!
Updated on: 11/03/2024
Updated on: 19/07/2024
Thank you!