I need Help with moving an Item to another Position.
#1
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
Reply
#2
no help here.
thank you kodi community.
you are best community on planet. Tongue
Reply
#3
@wedok,

That looks like the default Estuary skin. I'll move your post there, and maybe someone might know the answer to your question.
My Signature
Links to : Official:Forum rules (wiki) | Official:Forum rules/Banned add-ons (wiki) | Debug Log (wiki)
Links to : HOW-TO:Create Music Library (wiki) | HOW-TO:Create_Video_Library (wiki)  ||  Artwork (wiki) | Basic controls (wiki) | Import-export library (wiki) | Movie sets (wiki) | Movie universe (wiki) | NFO files (wiki) | Quick start guide (wiki)
Reply
#4
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>
Reply
#5
yop, got it now. Smile

skin.estuary.pvr.zip

Image
Reply

Logout Mark Read Team Forum Stats Members Help
I need Help with moving an Item to another Position.0