avs-code / PREM-Podium-race-E-manager

Description PREM (Podium race e manager) is management software for races and race leagues. It can be used to create overviews of race results. Based on Paddock 7.10beta by: demontpx
https://arv187.github.io/PREM-Podium-race-E-manager/
GNU General Public License v3.0
5 stars 1 forks source link

Change font color #48

Closed Simracer2018 closed 6 years ago

Simracer2018 commented 6 years ago

How and where can I change the base color of the font [black] for the tool?

avs-code commented 6 years ago

What tool? attach a image if you can pointing to the thing that you want change.

Simracer2018 commented 6 years ago

The Prem Tool. Championships, drivers, ect. create. Here is a picture, the white font "6.season" is shown in black. I just maked a better view with the mouse. would like the font "6.season" in white font.

Simracer2018 commented 6 years ago

https://www.dropbox.com/s/8p5vbbomrdyw56p/Tool.PNG?dl=0

avs-code commented 6 years ago

You can do two things:

1. Change the colour of the box:

<td width="120">Name:</td>
<td><div class="w3-white"> <?=$item['name']?></td>

or 2. Change colour of the text

<td width="120">Name:</td>
<td><div class="w3-text-white"> <?=$item['name']?></td>

*Example from file: division_chg.php line nº25

Simracer2018 commented 6 years ago

Ok. Thanks !!!