Hi Friderica,
On search page All books (or Search results) numbers does not visible when the template background is not dark.
It happens because of the Joomla core badge style class has white font color (#fff;).
Quick solving change in /components/com_abook/views/search/tmpl/default_items.php at #63, #67 and #69:
<span class="badge"><?php echo $this->total;?></span>
to:
<span class="badge" style="color: #000;"><?php echo $this->total;?></span>
Thanks.
So sorry Federica because I wrote Friderica :'(
Quote from: iberan on 16 December 2024, 08:39:08So sorry Federica because I wrote Friderica :'(
no problem! :)
QuoteOn search page All books (or Search results) numbers does not visible when the template background is not dark.
I added the new class "text-bg-info"
eg:
<span class="badge text-bg-info"><?php echo $this->total;?></span>
I will add the changes in the next version
Thank you for your response!