Forum Discussion

etisson's avatar
2 years ago

Create different CSS styles for category pages

We want to change the way our KB articles are shown to our customers. We do not want to show the author information for the article on any Khoros KB page. I have been able to hide the author in the ...
  • VikasB's avatar
    2 years ago

    Either you can use different quilt for these categories so you can differenciate the class for these categories OR You can add a custom component on category page with below code

    <#if coreNode.id == "Knowledge_Center" || coreNode.id == "KB_Main">
       <style>
          .className {
              display: none;
           }
       </style>
    </#if>

     Note: Need to update the className