To change the background color of the header or footer in your Zendesk Help Center, you need to modify the CSS. For the header, add or change thebackground-color
property in the.header
selector like this: ```css .header {…
You can customize the 'Submit a Request' link for both desktop and mobile views in Zendesk by editing the CSS. For the desktop version, modify the.nav-wrapper-desktop a.submit-a-request
selector: ```css .nav-wrapper-desktop a.submit-a-request…
To change the logo dimensions in your Zendesk Help Center, you need to edit the CSS stylesheet. First, navigate to the CSS section by clicking the Customize design icon in the sidebar, then Edit theme. Search for the.logo img
selector: ```css…
To change the appearance of search result keyword highlighting in Zendesk, you can modify the CSS. Use the.search-result-description em
selector to style the highlighted terms. For example, to make them bold with a yellow background, use:…
To change the appearance of article titles in your Zendesk Help Center, you need to modify the CSS. Add or change the properties in the.article-header h1
selector like this: ```css .article-header h1 { color: #993; font-family: Verdana,…
To change the appearance of breadcrumb links in Zendesk, you can modify the CSS. Add the following selector and property to change the color of the links:css .breadcrumbs li a { color: #484; }
This will update the breadcrumb links to…
To change the appearance of community question titles in Zendesk, you need to edit the CSS. Modify the.question-title
selector to adjust the color, font family, and size: ```css .question-title { color: #484; font-family: Verdana, Geneva,…
To hide the 'Submit a Request' link in your Zendesk Help Center, you need to modify the CSS. For the desktop version, use the.nav-wrapper-desktop a.submit-a-request
selector: ```css .nav-wrapper-desktop a.submit-a-request { display:none; }…