First you need some .png photo files. You can go to
http://www.xbox-skins.net/ and get these or if your good, just make your own. I got mine from that site. I'll use one for example. On the skins website, browse to xbmc skins. Go to about page 8 and find the
Tiger Blue XL skin and download. Browse to the media folder and there will be a list of .pngs. Copy the media folder to your computer. Now you can just go in and browse as thumbnails. Take the ones you want to use and put them in you c:/skin/m360/media folder. You can rename them to whatever you like.
Next transfer these files from your c:/skin/mc360/PAL directly to your PC:
* custom1112_GamesHome.xml
* Home.xml
I'll use Home.xml as the example. First for both of the files you need to delete the mc360 logo.
CODE
<control>
<description>MC360 Logo</description>
<type>image</type>
<posx>428</posx>
<posy>89</posy>
<width>128</width>
<height>85</height>
<texture>xbmc_logo.png</texture>
<visible>!Control.HasFocus(1) + !Control.HasFocus(2)</visible>
<animation effect="fade" time="100">WindowOpen</animation>
</control>
Delete the entire code above. Next scroll down until you see the code below.
CODE
<description>Music description Multiline</description>
<type>label</type>
<posx>425</posx>
<posy>205</posy>
<width>210</width>
<height>200</height>
<wrapmultiline>true</wrapmultiline>
<include>19091</include>
<font>font14</font>
<textcolor>FF000000</textcolor>
<include>shadow-grey</include>
<visible>Control.HasFocus(5) + !Control.HasFocus(1) + !Control.HasFocus(2)</visible>
<animation effect="fade" time="100">WindowOpen</animation>
</control>
This is where you will add code. Copy and paste the same code right below it. It will look like so.
CODE
<description>Music description Multiline</description>
<type>label</type>
<posx>425</posx>
<posy>205</posy>
<width>210</width>
<height>200</height>
<wrapmultiline>true</wrapmultiline>
<include>19091</include>
<font>font14</font>
<textcolor>FF000000</textcolor>
<include>shadow-grey</include>
<visible>Control.HasFocus(5) + !Control.HasFocus(1) + !Control.HasFocus(2)</visible>
<animation effect="fade" time="100">WindowOpen</animation>
</control>
<description>Music description Multiline</description>
<type>label</type>
<posx>425</posx>
<posy>205</posy>
<width>210</width>
<height>200</height>
<wrapmultiline>true</wrapmultiline>
<include>19091</include>
<font>font14</font>
<textcolor>FF000000</textcolor>
<include>shadow-grey</include>
<visible>Control.HasFocus(5) + !Control.HasFocus(1) + !Control.HasFocus(2)</visible>
<animation effect="fade" time="100">WindowOpen</animation>
</control>
Then edit what you copy and pasted to look like code below. You can play around with the width and height of the .png to make it look perfect.
CODE
<description>Music description Multiline</description>
<type>label</type>
<posx>425</posx>
<posy>205</posy>
<width>210</width>
<height>200</height>
<wrapmultiline>true</wrapmultiline>
<include>19091</include>
<font>font14</font>
<textcolor>FF000000</textcolor>
<include>shadow-grey</include>
<visible>Control.HasFocus(5) + !Control.HasFocus(1) + !Control.HasFocus(2)</visible>
<animation effect="fade" time="100">WindowOpen</animation>
</control>
<control>
<description>Music Picture</description>
<type>image</type>
<posx>463</posx>
<posy>83</posy>
<width>105</width>
<height>105</height>
<wrapmultiline>true</wrapmultiline>
<include>19091</include>
<texture>music.png</texture>
<visible>Control.HasFocus(5) + !Control.HasFocus(1) + !Control.HasFocus(2)</visible>
<animation effect="fade" time="100">WindowOpen</animation>
</control>
To change your png just change this to whatever your png is.
CODE
<texture>music.png</texture>
Repeat above steps with the following:
*<description>Music description Multiline</description>
*<description>Pictures description Multiline</description>
*<description>Video description Multiline</description>
and so on. The only one you can't do (or I haven't figured out is the mc360 guide).
You'll repeat the same steps in the custom1112_GamesHome.xml.
The only difference between the 2 is that you'll need to change the <posx>463</posx> to <posx>428</posx> in the custom1112_GamesHome.xml. Hope I didn't confuse anyone too much. Have fun with this. Be sure to make a backup of the original xmls just in case you delete or add something wrong.