INTERACT FORUM

More => Old Versions => JRiver Media Center 20 for Windows => Topic started by: peterdrowan on January 29, 2015, 03:57:23 am

Title: changing font size in thumbnails view details
Post by: peterdrowan on January 29, 2015, 03:57:23 am
Is it possible to reduce the font size for the details text.  I can't always get the name in - it is truncated so I lose the number at the end when I have disk 1 to x of a series so I have to have larger thumb nails than I would like. In options I can globally change the font but I want just to change it for Details text not for all the menus etc.  Can I put in a carriage return to make it split over 2 lines.


Peter Rowan
Title: Re: changing font size in thumbnails view details
Post by: dtc on January 29, 2015, 09:34:03 am
You can use the html font size command in thumbnail text, e.g.  <font size = "85%> <//font>. There are also commands for bold, italics, underline and color. The are described in the HTML Font Properties section of the Expression Language section of the Wiki. You can put that in a conditional that only uses the smaller font if the string is longer than x characters (Length(...)).
Title: Re: changing font size in thumbnails view details
Post by: peterdrowan on February 01, 2015, 01:26:35 pm
Here is an example that works for anyone else trying to do this. I started with
[Artist]
[Name]
for thumbnail text.

This below reduces the font size for Album to 90% of what it was.

<font size="90" >[Album]<//font>
[Artist]

Peter Rowan
Title: Re: changing font size in thumbnails view details
Post by: ferday on February 01, 2015, 01:40:01 pm
should be <font size="85%">[Artist]</font>

it's standard html, which i'm bad at but thankfully google will easily tell you what you need for basic stuff like this

edit:  you got there before me. 
Title: Re: changing font size in thumbnails view details
Post by: peterdrowan on February 01, 2015, 02:48:23 pm
Thanks for the help.  Appreciated.   btw you don't put in % so it is
<font size="85">[Artist]</font>


Peter Rowan
Title: Re: changing font size in thumbnails view details
Post by: dtc on February 01, 2015, 03:01:21 pm
The closing element needs to be <//font> since / is a special character in MC.

% is optional.