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?

#94779
theslx
Participant

I’ve been playing around with this as well and I found an easy way to get rid of the text all together. I had the text running in front of the box art as well.
I solved this by changing he pos and size of each md_ element i don’t wish to see to:


<pos>0.05 0.15</pos>
<size>0.01 0.01</size>

I had to paste this about 18 times in a theme.xml for one system. It’s easily copy pasted further to other systems though.

This is my simple xml’s detailed view portion:

<view name="detailed">
	
<!-- <measuring rectangle 
		<image name="measure" extra="true">
			<pos>0.025 0.6</pos>
			<origin>0 0</origin>
			<size>0.125 0.301</size>
			<path>./../art/white.png</path>
			<color>ff00ff</color>
		</image> 
-->

		<image name="md_image">
			<pos>0.025 0.22</pos>
<!-- 			<size>0.12 0.301</size>
 -->			<maxSize>0.12 0.301</maxSize>
			<origin>0 0</origin>
		</image>
		
		<text name="md_lbl_rating">
			<pos>0.05 0.15</pos>
			<size>0.01 0.01</size>
		</text>
		
		<text name="md_lbl_releasedate">
			<pos>0.05 0.15</pos>
			<size>0.01 0.01</size>
		</text>
		
		<text name="md_lbl_developer">
			<pos>0.05 0.15</pos>
			<size>0.01 0.01</size>
		</text>

		<text name="md_lbl_publisher">
			<pos>0.05 0.15</pos>
			<size>0.01 0.01</size>
		</text>
		
		<text name="md_lbl_genre">
			<pos>0.05 0.15</pos>
			<size>0.01 0.01</size>
		</text>
		
		<text name="md_lbl_players">
			<pos>0.05 0.15</pos>
			<size>0.01 0.01</size>
		</text>

		<text name="md_lbl_lastplayed">
			<pos>0.05 0.15</pos>
			<size>0.01 0.01</size>
		</text>

		<text name="md_lbl_playcount">
			<pos>0.05 0.15</pos>
			<size>0.01 0.01</size>
		</text>
		
		<text name="md_playcount">
			<pos>0.05 0.15</pos>
			<size>0.01 0.01</size>
		</text>

		<datetime name="md_lastplayed">
			<pos>0.05 0.15</pos>
			<size>0.01 0.01</size>
		</datetime>
		
		<text name="md_players">
			<pos>0.05 0.15</pos>
			<size>0.01 0.01</size>
		</text>
		
		<text name="md_genre">
			<pos>0.05 0.15</pos>
			<size>0.01 0.01</size>
		</text>

		<text name="md_publisher">
			<pos>0.05 0.15</pos>
			<size>0.01 0.01</size>
		</text>
		
		<text name="md_developer">
			<pos>0.05 0.15</pos>
			<size>0.01 0.01</size>
		</text>
		
		<datetime name="md_releasedate">
			<pos>0.05 0.15</pos>
			<size>0.01 0.01</size>
		</datetime>
		
		<rating name="md_rating">
			<pos>0.05 0.15</pos>
			<size>0.01 0.01</size>
			<filledPath>./../art/mid.png</filledPath>
			<unfilledPath>./../art/mid.png</unfilledPath>
		</rating>
		
		<text name="md_description">
			<pos>0.05 0.15</pos>
			<size>0.01 0.01</size>
		</text>
		
		<textlist name="gamelist">
			<pos>0.615 0.22</pos>
			<size>0.359 0.68</size>
			<alignment>left</alignment>
			<horizontalMargin>0.01</horizontalMargin>
		</textlist>

	</view>
	

Hope this helps and thanks for the idea :)