Difference between revisions of "Adjust Font Size"

From LinuxMCE
Jump to: navigation, search
 
(5 intermediate revisions by 5 users not shown)
Line 1: Line 1:
 +
[[Category:Configuration]]
 +
[[category: Displays]]
 +
[[category: accessibility]]
 +
{{Versioninfo}}
 +
 +
 
=Adjusting The Font Size=
 
=Adjusting The Font Size=
In some cases it may be neccesary to adjust the font size for the onscreen orbiter. These instructions allow you to change that font size, but please be carefull when using phpmyadmin as it can create serious issues if mistakes are made. That being said, you will need phpMyadmin installed. Instructions found at http://wiki.linuxmce.org/index.php/Phpmyadmin
+
In some cases, it may be necessary to adjust the font size for the on-screen orbiter. These instructions allow you to change that font size, but please be careful when using phpmyadmin as it can create serious issues if mistakes are made. That being said, you will need phpMyadmin installed. Instructions found at http://wiki.linuxmce.org/index.php/Phpmyadmin
  
 
==Changing the Fonts==
 
==Changing the Fonts==
Line 11: Line 17:
 
*Done
 
*Done
  
 +
==Example==
  
 +
* To see all defined fonts just run following query:
 +
SELECT PK_StyleVariation, Font, PixelHeight, Description FROM Style a INNER JOIN StyleVariation b ON a.PK_Style=b.FK_Style;
 +
* To increase font size on the right panel in the UI2 audio/video/photos grid run that query:
 +
  UPDATE StyleVariation SET PixelHeight=65 WHERE PK_StyleVariation IN(1,22);
  
 
Thanks to Itsik for providing the instructions.
 
Thanks to Itsik for providing the instructions.
[[category: Displays]]
 
[[category: tutorials]]
 
[[catagory: accessibility]]
 

Latest revision as of 16:57, 19 October 2012

Version Status Date Updated Updated By
710 Unknown N/A N/A
810 Unknown N/A N/A
1004 Unknown N/A N/A
1204 Unknown N/A N/A
1404 Unknown N/A N/A
Usage Information


Adjusting The Font Size

In some cases, it may be necessary to adjust the font size for the on-screen orbiter. These instructions allow you to change that font size, but please be careful when using phpmyadmin as it can create serious issues if mistakes are made. That being said, you will need phpMyadmin installed. Instructions found at http://wiki.linuxmce.org/index.php/Phpmyadmin

Changing the Fonts

user=root no pass.
  • Choose db pluto main.
  • Still on the left side pick table style variations
  • Choose browse and you will be presented the font settings.
  • Make your changes, then make sure to completely regen the orbiter using the webadmin.
  • Done

Example

  • To see all defined fonts just run following query:
SELECT PK_StyleVariation, Font, PixelHeight, Description FROM Style a INNER JOIN StyleVariation b ON a.PK_Style=b.FK_Style;
  • To increase font size on the right panel in the UI2 audio/video/photos grid run that query:
  UPDATE StyleVariation SET PixelHeight=65 WHERE PK_StyleVariation IN(1,22);

Thanks to Itsik for providing the instructions.