Homepage › Forums › RetroPie Project › Emulation Station Themes › Removing all text apart from the game list. Can it be done? › Reply To: Removing all text apart from the game list. Can it be done?
04/21/2015 at 17:50
#95782
Participant
I am having the same issues as this thread, but all my labels and values for that info set are being displayed in the top left corner of the system select screen. They are completely missing from the Basic and Detailed views – only present in the System view.
Here is my code trying to get rid of them, placed in the global theme XML file. I tried giving them negative position values to set them off the screen and that is creating the issue…I think…
<view name="system, basic, detailed">
<text name="md_lbl_rating, md_lbl_releasedate, md_lbl_developer, md_lbl_publisher, md_lbl_genre, md_lbl_players, md_lbl_lastplayed, md_lbl_playcount, md_playcount, md_players, md_genre, md_publisher, md_developer">
<pos>-1 -1</pos>
<size>0.001 0.001</size>
</text>
<datetime name="md_lastplayed, md_releasedate">
<pos>-1 -1</pos>
<size>0.001 0.001</size>
</datetime>
<rating name="md_rating">
<pos>-1 -1</pos>
<size>0.001 0.001</size>
</rating>
</view>