Styling for Results Number ($results_num)
-
It would be great to separate the ‘Results Number’ with a CSS class, so users can make it bold or hide it where required.
The JS could be changed from this:
html += '<li class="aws_result_item aws_result_cat">'; html += '<a class="aws_result_link" href="' + result.link + '" >'; html += '<span class="aws_result_content">'; html += '<span class="aws_result_title">'; html += result.name + ' (' + result.count + ')'; html += '</span>'; html += '</span>'; html += '</a>'; html += '</li>';
To this….
html += '<li class="aws_result_item aws_result_cat">'; html += '<a class="aws_result_link" href="' + result.link + '" >'; html += '<span class="aws_result_content">'; html += '<span class="aws_result_title">'; html += result.name; html += '<span class="aws_result_count">'; html += ' (' + result.count + ')'; html += '</span>'; html += '</span>'; html += '</span>'; html += '</a>'; html += '</li>';
Is this a possibility?
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘Styling for Results Number ($results_num)’ is closed to new replies.