Home
FM Discord
YouTube Channel
FM24 Data Update
FM26 Data Update
FM26 OOP Player Roles
Downloads
Graphics
Challenges
Blog
Forums
Videos
Tactics
FM26
FM26 Real Name Fix
FM26 Shortlists
FM26 DB
FM26 Men's Wonderkids
FM26 Women's Wonderkids
FM26 Men's Club Finances
FM26 Women's Club Finances
FM24 Update
FM24
FM23
FM Saves
FM Database
FM Guides
Installation Guides
Records
Search
wiseguy100
Hi. I'm using the Rensie Skin. Started a new save using Hull. My issue is this…During a match when a player scores, the season goal stats that appear under the player's name and face popup, is dark blue on black, so it's impossible to read it. Wasn't an issue in my previous saves using the same skin. Is there somewhere I can configure it back to white text?
sasmaz
check
match caption panel small.xml
but you've posted in the wrong place i think
@Footygamer
wiseguy100
Thank you. Yeah I haven't posted on here in years lol. Guessed Skins, because assumed it was a skins issue. Thank for the help though, will find that file and have a fiddle with it.
wiseguy100
Couldn't figure out what to alter. If that's even the right .xml in the first place. Is there anyone that can be more specific about what to edit?
Holzi_85
Can you post a screenshoot of your problem?
You might wanna change a <container background_colour="colour-with-more-contast"> in match caption panel small.xml
wiseguy100
I looked in the Rensie .xml for that line and it isn't there. Anyway, here's a screenshot of the issue. I just want the dark blue text (under the player's name) to be white…
Edit, it's not related to Cardiff's colours, it happens no matter what team scores.
Holzi_85
In the match caption panel small.xml can you try to change in line 94 the red_replacement to a colour you like (currently it is bg)? It should be the background colour of the goal number display (which you can not read).
<container class="contrast_box" id="inCO" appearance="boxes/custom/solid/paper" red_replacement="bg" height="30">
<attachment_group class="horizontal_arrange" horizontal_offset="15" horizontal_alignment="left,extend" />
<widget class="text" alignment="centre_y,left" auto_size="all" id="AcTx">
<string id="size" value="large" />
<string id="font" value="text" />
<string id="multiline" value="true" />
</widget>
<widget class="text" alignment="centre_y,left" id="AcTs" auto_size="all">
<string id="size" value="large" />
<string id="font" value="text" />
<string id="multiline" value="true" />
</widget>
<widget class="picture" id="crdP" hidden="true" scale_picture="true" height="30">
<string id="image_alignment" value="right" />
</widget>
</container>
EDIT:
If you want to change the colour of the text instead you can try something like this:
<container class="contrast_box" id="inCO" appearance="boxes/custom/solid/paper" red_replacement="bg" height="30">
<attachment_group class="horizontal_arrange" horizontal_offset="15" horizontal_alignment="left,extend" />
<widget class="text" alignment="centre_y,left" auto_size="all" id="AcTx">
<string id="size" value="large" />
<string id="font" value="text" />
<string id="multiline" value="true" />
<string id="colour" value="white" />
</widget>
<widget class="text" alignment="centre_y,left" id="AcTs" auto_size="all">
<string id="size" value="large" />
<string id="font" value="text" />
<string id="multiline" value="true" />
<string id="colour" value="white" />
</widget>
<widget class="picture" id="crdP" hidden="true" scale_picture="true" height="30">
<string id="image_alignment" value="right" />
</widget>
</container>
wiseguy100
Thank you so much 🙂
Holzi_85
No problem. 🙂
The id="plCO" container above this should work the same way if you also wanna change the background colour or colour of the name of the goalscorer. 🙂
wiseguy100
Just played a match…Was a bloody nil nil draw. so had to reload the save to get a goal and lo and behold, it worked 🙂 Thank you. My ocd is now in order lol.
I tried the added lines you suggested to alter the text colour, but it had no effect, but…changing the "bg" to white did indeed work, so it's all readable now.
Holzi_85
Yes sorry, the colours for texts should be defined in match/match caption panel.xml
<!--default text colour-->
<flags id="dTXc" value="black"/>
<!--alternative text colour-->
<flags id="aTXc" value="white"/>
default colour for goal scorer; alternative colour for number of goals.
I added my match caption files so you can have a look and adjust them to your needs.