Add a product logo to a category
complete
S
Serenity blue Mollusk
We have different logos for the various products in our KB. It would be nice if we could add our favicon logo to the category name or in some other way.
Log In
R
Remarkable Orca
marked this post as
complete
S
Serenity blue Mollusk
Remarkable Orca: Thanks for this update, but this wasn't what I was looking for. I'd like to be able to add our own logos as icons, not Font Awesome icons.
P
Pewter Gibbon
This is possible via custom CSS. If you add the below code in Custom HTML section in Landing page you can change the URL in <a href> Tag and the icon using Font Awesome 5 icons as shown below
<div class="landing-category-section">
<div class="category-title">
<h2>EXPLORE OUR KNOWLEDGE BASE</h2>
</div>
<div class="col-block center">
<a href="/v1.0/docs/">
<span class="category-icon fa fa-user-o " style="color:#068bc6">
</span>
<h3>Users and teams</h3>
<p>Define the access rights for your employees and vendors</p>
<span class="more-icon">
<i class="fa fa-arrow-circle-o-right"></i>
</span>
</a>
</div>
</div>
P
Probable Bovid
marked this post as
under review