I need Help with moving an Item to another Position. - 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: Estuary (https://forum.kodi.tv/forumdisplay.php?fid=260) +---- Thread: I need Help with moving an Item to another Position. (/showthread.php?tid=332000) |
I need Help with moving an Item to another Position. - wedok - 2018-05-18 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? RE: I need Help with moving an Item to another Position. - wedok - 2018-05-22 no help here. thank you kodi community. you are best community on planet. RE: I need Help with moving an Item to another Position. - Karellen - 2018-05-22 @wedok, That looks like the default Estuary skin. I'll move your post there, and maybe someone might know the answer to your question. RE: I need Help with moving an Item to another Position. - the_other_guy - 2018-05-24 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> RE: I need Help with moving an Item to another Position. - wedok - 2018-05-24 yop, got it now. skin.estuary.pvr.zip |