How to hide XBMC logo in CCM
#1
I had a difficult time locating the XBMC logo (in the top left corner) in the CCM settings as it had been moved from the regular Home.xml.

It turns out the control is in /skin.confluence.custom.mod/720p/includes.xml. Simply search for the following:


<control type="image">
<description>LOGO</description>
<posx>0</posx>
<posy>5</posy>
<width>170</width>
<height>100</height>
<aspectratio aligny="top" align="left">keep</aspectratio>
<texture>xbmc-logo.png</texture>
<include>VisibleFadeEffect</include>
<include>Window_OpenClose_Animation</include>
<animation effect="fade" start="100" end="0" time="200" condition="Window.IsVisible(infodialog)">Conditional</animation>
<visible>!Skin.HasSetting(HideSystemWeather) | Skin.HasSetting(EnableMinSpec)</visible>
<visible>![Window.IsVisible(FullscreenVideo) | Window.IsVisible(Visualisation) | Window.IsVisible(loginscreen)]</visible>
</control>

I simply deleted this control and ta-da! No more logo on the home screen. Hope this helps someone.
Reply

Logout Mark Read Team Forum Stats Members Help
How to hide XBMC logo in CCM0