You might be able to, I've found this bit of code in the match goal update.xml file located in data\panels:
<pre class="ip-ubbcode-code-pre"> <widget class="table" id="mlst" mode="fill_rows" auto_size_rows="true" layout="-1,-2,20,10,20,-2,-3" fixed_size_rows="false"><layout class="stick_to_sides_attachment" alignment="horizontal"/><!-- set the colum properties --><list id="column_properties"><record index="0" alignment="left,centre_y"/><record index="1" alignment="right,centre_y"/><record index="2" alignment="right,centre_y"/><record index="3" alignment="centre,centre_y"/><record index="4" alignment="left,centre_y"/><record index="5" alignment="left,centre_y"/><record index="6" alignment="right,centre_y" spec="text"/></list><list id="column_display_properties"><record index="0" id="m_it" top="2" bottom="2"/><record index="1" id="m_t1"/><record index="2" id="m_s1"/><record index="3" id="m_dv"/><record index="4" id="m_s2"/><record index="5" id="m_t2"/><record index="6" id="m_pt" right="4" top="3" bottom="2"/></list> </pre>
It looks like m_t1 - home team, m_s1 - home team score, m_dv - divider "-", m_s2 - away team score, m_t2 - away team.
Changing the code to this should do what you want:
<pre class="ip-ubbcode-code-pre"> <list id="column_display_properties"><record index="0" id="m_it" top="2" bottom="2"/><record index="1" id="m_t1"/><record index="2" id="m_t2"/><record index="3" id="m_s1"/><record index="4" id="m_dv"/><record index="5" id="m_s2"/><record index="6" id="m_pt" right="4" top="3" bottom="2"/></list> </pre>
You may also need to rearrange the widget class line at the top, to give the columns the correct size.
Though this will only affect the goal updates panel within the match (if it even works) - you'd have to try and find the similar code in the xml files that control the display of results on the comps screen, fixture screen, match screen etc...
|