Kodi Community Forum
Removing Home Title Icon - Printable Version

+- Kodi Community Forum (https://forum.kodi.tv)
+-- Forum: Support (https://forum.kodi.tv/forumdisplay.php?fid=33)
+--- Forum: Skins Support (https://forum.kodi.tv/forumdisplay.php?fid=67)
+---- Forum: Eminence (https://forum.kodi.tv/forumdisplay.php?fid=213)
+---- Thread: Removing Home Title Icon (/showthread.php?tid=330408)



Removing Home Title Icon - RedBullCan - 2018-03-31

Hi guys, I have just finished setting up Eminence 2.0 to my preference. However, I cant seem to find a setting to remove the home title Icon/home title text from the top left of every menu item. There are no settings for this so I figure I would need to change the XML somewhere in the theme files. How would I go about doing this? or even if this sort of customisation is indeed possible. 

Thanks


RE: Removing Home Title Icon - fadas - 2018-04-26

have the same problem.


RE: Removing Home Title Icon - roc4fun - 2018-07-15

I'd love to be able to do this too!


RE: Removing Home Title Icon - nightshade55 - 2019-04-03

anyone ever figure out how to remove this home icon


RE: Removing Home Title Icon - insync44 - 2019-04-28

(2019-04-03, 18:57)nightshade55 Wrote: anyone ever figure out how to remove this home icon

That's the reason I don't use this Skin. That icon on the LHS upper left annoys me. Big Grin


RE: Removing Home Title Icon - the_other_guy - 2019-04-28

do not know this skin but would start with TopBarOverlay.xml


RE: Removing Home Title Icon - drheiser - 2019-07-02

(2019-04-28, 03:15)the_other_guy Wrote: do not know this skin but would start with TopBarOverlay.xml

go into the skin folder 16x9. Open the file includes_furniture.xml. Changes in RED. It affects the icon, the text and the background-image.

<include name="Furniture_TopBar_Tile">
        <control type="image">
            ...
            <visible>!Skin.HasSetting(global.hideobjectshadows) + !String.IsEqual(Skin.CurrentColourTheme,Light) + !Window.IsVisible(home)</visible>
            <texture border="75">common/header-shadow-24.png</texture>
...

 <control type="image">
            ...
            <texture border="75" colordiffuse="Background">common/header.png</texture>
            <visible>!Window.IsVisible(weather) + !VideoPlayer.IsFullscreen + !Window.IsVisible(visualization) + !Window.IsVisible(home)</visible>
            <animation effect="fade" start="100" end="80" condition="!Skin.HasSetting(background.hidefanart) + String.IsEqual(Skin.String(fanart.opacity),10)">Conditional</animation>
            <animation effect="fade" start="100" end="70" condition="!Skin.HasSetting(background.hidefanart) + String.IsEqual(Skin.String(fanart.opacity),20)">Conditional</animation>
            <animation effect="fade" start="100" end="60" condition="!Skin.HasSetting(background.hidefanart) + String.IsEqual(Skin.String(fanart.opacity),30)">Conditional</animation>
            <animation effect="fade" start="100" end="50" condition="!Skin.HasSetting(background.hidefanart) + String.IsEqual(Skin.String(fanart.opacity),40)">Conditional</animation>
            <animation effect="fade" start="100" end="40" condition="!Skin.HasSetting(background.hidefanart) + String.IsEqual(Skin.String(fanart.opacity),50)">Conditional</animation>
            <animation effect="fade" start="100" end="30" condition="!Skin.HasSetting(background.hidefanart) + String.IsEqual(Skin.String(fanart.opacity),60)">Conditional</animation>
            <animation effect="fade" start="100" end="20" condition="!Skin.HasSetting(background.hidefanart) + String.IsEqual(Skin.String(fanart.opacity),70)">Conditional</animation>
            <animation effect="fade" start="100" end="10" condition="!Skin.HasSetting(background.hidefanart) + String.IsEqual(Skin.String(fanart.opacity),80)">Conditional</animation>
            <visible>!Skin.HasSetting(background.hidefanart) + Integer.IsLess(Skin.String(fanart.opacity),90) + !String.IsEmpty(Skin.String(fanart.opacity))</visible>
        </control>
        <control type="image">
            ....
            <texture border="75">common/header.png</texture>
            <visible>true + !Window.IsVisible(home)</visible>
            <colordiffuse>$VAR[Furniture_TopBar_Tile_BGCOLOR]</colordiffuse>
            <animation effect="fade" start="100" end="90" time="200" condition="Skin.HasSetting(home.transparent) + [Window.IsVisible(weather)]">Conditional</animation>
        </control>
...

<include name="Furniture_TopBar_Tile_Content">
        <control type="image">
             ..
            <texture>$VAR[Furniture_TopBar_Tile_Icon]</texture>
            <aspectratio>keep</aspectratio>
            <colordiffuse>HomeBarFG</colordiffuse>
            <visible>!Container.Scrolling + !Window.IsVisible(home)</visible>
...

       <control type="label">
            ...
            <font>Font-Sublabel</font>
            <align>center</align>
            <textcolor>HomeBarFG</textcolor>
            <label>$VAR[Furniture_TopBar_Tile_Text]</label>
            <visible>true + !Window.IsVisible(home)</visible>
        </control>