Kodi Community Forum

Full Version: I need Help with moving an Item to another Position.
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi,
i want to move the upper information part down, next to the the big channel number position.
Can anybody tell me how to this with the default skin?

Image
no help here.
thank you kodi community.
you are best community on planet. Tongue
@wedok,

That looks like the default Estuary skin. I'll move your post there, and maybe someone might know the answer to your question.
go to kodi theme
open addon.xml

edit
<extension point="xbmc.gui.skin" debugging="false"> to <extension point="xbmc.gui.skin" debugging="true">
save run kodi
go to tv page
it will give you a name to look for what page to edit (it may be DialogPVRChannelsOSD,xml ?)


the code you will need to change will look like this

<control type="label">
       <left>165</left>
       <top>46</top>
       <height>90</height>
       <right>120</right>
       <aligny>top</aligny>
       <font>font12</font>
       <label>$INFO[ListItem.Title]</label>
       <shadowcolor>text_shadow</shadowcolor>
      </control>
or      
<control type="label">
       <left>12</left>
       <top>0</top>
       <height>90</height>
       <width>75</width>
       <align>center</align>
       <aligny>center</aligny>
       <font>font32_title</font>
       <label>$INFO[ListItem.ChannelNumberLabel]</label>
       <shadowcolor>text_shadow</shadowcolor>
yop, got it now. Smile

skin.estuary.pvr.zip

Image