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 21:14
		
		#95805
		
		
		
	
Participant
		
		
	Update – I was able to hide all of these by putting their position at 1 1, so as follows in the global xml file:
<view name="system, basic, detailed">
<text name="md_lbl_developer, md_lbl_publisher, md_lbl_genre, md_lbl_players, md_lbl_playcount, md_lbl_releasedate, md_lbl_lastplayed, md_lbl_rating">
    <pos>1 1</pos>
    <size>0.01 0.01</size>
</text>
		
<text name="md_playcount, md_players, md_genre, md_publisher, md_developer">
    <pos>1 1</pos>
    <size>0.01 0.01</size>
</text>
		
<datetime name="md_lastplayed, md_releasedate">
   <pos>1 1</pos>
   <size>0.01 0.01</size>
</datetime>
		
<rating name="md_rating">
   <pos>1 1</pos>
   <size>0.01 0.01</size>
</rating>
</view>This should work across the board and if tested functional you could probably call this resolved.