Homepage Forums RetroPie Project Emulation Station Themes How do you change the "button" graphics on ES 2.x? Reply To: How do you change the "button" graphics on ES 2.x?

#83618
phrazelle
Participant

i moved the helpsystem off the screen (using -1 -1) and put up a custom footer image:

this would be in your main theme xml file, and you would change the size and path properties to suit your build

	<view name="system, basic, detailed">
		
		<helpsystem name="help">
			<pos>-1 -1</pos>
		</helpsystem>
		
		<image name="footer" extra="true">
			<pos>0 1</pos>
			<origin>0 1</origin>
			<size>1 0.065</size>
			<path>./assets/footer.jpg</path>
		</image>
		
	</view>