How to customize help center theme on Zendesk
Customize your Zendesk help center theme by navigating to Guide > Customize design, selecting your theme, and modifying the template code, colors, fonts, and layout. You can use the live preview feature to see changes in real-time before publishing.
Prerequisites
- Administrator access to Zendesk instance
- Basic understanding of HTML and CSS
- Zendesk Guide subscription plan
- Brand assets and design guidelines ready
Step-by-Step Instructions
Access the theme customization interface
Choose your base theme
Customize colors and branding
Modify fonts and typography
Edit template code and layout
home_page.hbs, article_page.hbs, or style.css to customize layout, add custom elements, or adjust styling.Configure page layout and navigation
Preview and test your changes
Publish your customized theme
Common Issues & Troubleshooting
Theme changes not appearing on live site
Clear your browser cache and hard refresh the page with Ctrl+F5 (Windows) or Cmd+Shift+R (Mac). Ensure you clicked Publish and not just Save in the theme editor.
Custom CSS not working or being overridden
Check CSS specificity and add !important declarations if needed. Ensure your custom CSS is placed after default styles in the style.css file. Validate your CSS syntax for errors.
Logo appearing pixelated or incorrectly sized
Upload a high-resolution image (at least 200px height) in PNG or SVG format. Adjust the Logo height setting in theme settings, or add custom CSS like img.logo { max-height: 60px; width: auto; }.
Mobile responsiveness issues after customization
Test your changes using browser developer tools mobile simulation. Add responsive CSS using media queries like @media (max-width: 768px) to fix mobile-specific layout issues. Check that custom elements have proper responsive design.