On search page All books numbers does not visible - solved

Started by iberan, 16 December 2024, 08:33:57

Previous topic - Next topic
A financial contribution is greatly appreciated as a support, to help us to keep live the project.
If you like this project you can donate some piece of BitCoin to this address: bc1qy5tgq6tvrckac2a57unxvqcnxamrvhduve9sj9

iberan

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.

A financial contribution is greatly appreciated as a support, to help us to keep live the project.
If you like this project you can donate some piece of BitCoin to this address: bc1qy5tgq6tvrckac2a57unxvqcnxamrvhduve9sj9

iberan