INTERACT FORUM

Please login or register.

Login with username, password and session length
Advanced search  
Pages: [1]   Go Down

Author Topic: changing font size in thumbnails view details  (Read 1598 times)

peterdrowan

  • Junior Woodchuck
  • **
  • Posts: 62
changing font size in thumbnails view details
« 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
Logged

dtc

  • MC Beta Team
  • Citizen of the Universe
  • *****
  • Posts: 3027
Re: changing font size in thumbnails view details
« Reply #1 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(...)).
Logged

peterdrowan

  • Junior Woodchuck
  • **
  • Posts: 62
Re: changing font size in thumbnails view details
« Reply #2 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
Logged

ferday

  • MC Beta Team
  • Citizen of the Universe
  • *****
  • Posts: 1732
Re: changing font size in thumbnails view details
« Reply #3 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. 
Logged

peterdrowan

  • Junior Woodchuck
  • **
  • Posts: 62
Re: changing font size in thumbnails view details
« Reply #4 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
Logged

dtc

  • MC Beta Team
  • Citizen of the Universe
  • *****
  • Posts: 3027
Re: changing font size in thumbnails view details
« Reply #5 on: February 01, 2015, 03:01:21 pm »

The closing element needs to be <//font> since / is a special character in MC.

% is optional.
Logged
Pages: [1]   Go Up