How to change the size of RSS font?

Hey, I was just wondering how can I change the size of RSS font?
https://kodi.wiki/view/RSS_ticker

I read all the info here, but I don’t know where to enter the XML code? I tried adding it to RssFeeds.xml but that didn’t work, so could you please help me out a bit?

Thanks. :slight_smile:

The information you mention is for skin-developers so I’m guessing this has to be done in the skin settings (if provided). If not, you could try to modify the skin settings (search in /usr/share/kodi/addons in the xml-files but be aware that an update of the skin probably will erase this…

Have a look in Home.xml:

	<control type="rss" id="1">
		<left>0</left>
		<bottom>0</bottom>
		<width>1920</width>
		<height>35</height>
		<font>Font30</font>
		<textcolor>TextColor2</textcolor>
		<headlinecolor>TextColor2</headlinecolor>
		<titlecolor>TextColor2</titlecolor>
		<urlset>1</urlset>
		<include>WindowFadeAnimation</include>
	</control>

Try changing Font30 to Font27 or Font25 for smaller, Font33 or Font36 for bigger. To make your changes permanent, copy the whole skin.osmc and edit that, all as described on the kodi wiki.

Hey, thank for the info. I’m using Arctic Zephyr theme, and I found a file called Include-Home.xml, so I’m guessing that’s it.

One question though, can I just paste the code or do I need to put inside of a specific element?
For example, here’s the content of Home.xml

    <include name="HomeHeader">
    <!-- Header -->
    <control type="group">
        <visible>Skin.HasSetting(home.showheader)</visible>

        <animation effect="slide" start="0" end="0,-250" time="150" condition="[!Skin.HasSetting(home.classicwidgets) + Control.HasFocus(301)]">Conditional</animation>
        <animation effect="slide" start="0" end="0,-250" time="150">WindowClose</animation>
        <animation effect="slide" end="0" start="0,-250" time="150">WindowOpen</animation>
        <control type="image" description="TopBG">
            <width>100%</width>
            <top>0</top>
            <height>240</height>
            <aspectratio aligny="top">scale</aspectratio>
            <texture colordiffuse="Background">common/bg.jpg</texture>
            <animation effect="fade" start="100" end="75" time="200" condition="true">Conditional</animation>
        </control>
        <control type="image" description="FanartOverlay">
            <width>100%</width>
            <height>240</height>
            <top>0</top>
            <aspectratio aligny="bottom">scale</aspectratio>
            <texture colordiffuse="FloorFade">common/floor.png</texture>
        </control>
        <control type="image" description="Shadow">
            <width>100%</width>
            <height>16</height>
            <top>240</top>
            <texture flipy="false">common/shadow16B.png</texture>
        </control>
        <include>Furniture_Header</include>
        <control type="group">
            <visible>Player.HasMedia</visible>
            <include>Animation.FadeIn</include>
            <include>Animation.FadeOut</include>
            <include>Furniture_NowPlaying</include>
        </control>
    </control>

I don’t know if I should have a special include element with a designated name. I checked the file, there’s no mention of RSS anywhere. Maybe I should try looking into other xml files until I find the one that references RSS and then make the changes?

try grep -rli 'rss' to find the rss element.

Hi,

From looking at the github, the change needs to be made in Custom_Rss.xml, for that skin.

Tom.

Thanks Tom, this fixed my problem. :slight_smile:

1 Like