Kodi Community Forum
Concept vision plus estuary gold kodi19 - Printable Version

+- Kodi Community Forum (https://forum.kodi.tv)
+-- Forum: Development (https://forum.kodi.tv/forumdisplay.php?fid=32)
+--- Forum: Skinning (https://forum.kodi.tv/forumdisplay.php?fid=12)
+---- Forum: WIP Skins (https://forum.kodi.tv/forumdisplay.php?fid=160)
+---- Thread: Concept vision plus estuary gold kodi19 (/showthread.php?tid=365834)



vision plus estuary gold kodi19 - the_other_guy - 2021-12-05

have seen a lot of users asking for bigger fonts on estuary there is no way to add to page as the text elements are to small
but it can be done with an overlay
after     <include>OpenClose_Right</include> add
xml:

<control type="group">
                            <control type="image">
                <left>0</left>
                <top>0</top>
                <width>100%</width>
                <height>125</height>
                <texture colordiffuse="D0FFFFFF" border="0,55,0,0">colors/black.png</texture>
            </control>
        
                            <control type="textbox">
                        <top>-70</top>
                        <width>90%</width>
                        <height>283</height>
                        <align>center</align>
                        <aligny>center</aligny>
                        <font>font52_title</font>
                        <label>$INFO[ListItem.Label]</label>
                        <titlecolor>dialog_tint</titlecolor>
                    <textcolor>white</textcolor>
                    <shadowcolor>dialog_tint</shadowcolor>
                
                        <visible>String.IsEmpty(ListItem.Art(banner)</visible>
                    </control>
                        <control type="image">
                        <left>33%</left>
                <alignx>center</alignx>
                <top>30</top>
                <width>500</width>
                <height>93</height>
                <texture>$INFO[ListItem.Art(banner)]</texture>
                    <bordertexture colordiffuse="border_alpha">colors/gold.png</bordertexture>
                <bordersize>4</bordersize>
                <aspectratio aligny="center">scale</aspectratio>
            <visible>!String.IsEmpty(ListItem.Art(banner)</visible>
            </control>
            </control>



ImageImageImageImage


RE: vision plus estuary gold kodi19 - ontap - 2021-12-05

Which .xml file are you putting this in ?  "includes.home.xml " ?


RE: vision plus estuary gold kodi19 - the_other_guy - 2021-12-06

you can add it in home.xml
or you can do it as an include


RE: vision plus estuary gold kodi19 - the_other_guy - 2021-12-18

a demo can be seen at 
https://forum.kodi.tv/showthread.php?tid=356021
https://forum.kodi.tv/showthread.php?tid=365957