Page 1 of 1

Hide stars in webhelp search results.

Posted: Sat Nov 08, 2014 3:25 am
by smckenzie23
Hello.

What is the best approach for hiding the stars in webhelp search results? It seems like our users find them confusing. I'm assuming I can just hide the star class in some css file, or is there some other mechanism?

Thanks.

Re: Hide stars in webhelp search results.

Posted: Mon Nov 10, 2014 11:50 am
by sorin_ristache
Hello,

You can hide the stars in the list of search results with a custom CSS that you set in the args.css parameter of the DITA transformation and that hides the XHTML element <div id="star">, for example:

Code: Select all

.star {
visibility:hidden;
}