Author Topic: Adjusting firefox menu font  (Read 2687 times)

royw

  • Guru
  • ****
  • Posts: 261
    • View Profile
Adjusting firefox menu font
« on: April 04, 2008, 10:14:21 pm »
On my system, firefox's menus were too small to read.  Here's a way to adjust them.

Create firefox chrome directory for root user:
Code: [Select]
susdo mkdir /root/.mozilla/firefox/pluto.default/chrome
Copy the example userChrome.css file from the linuxmce user account to the this directory:
Code: [Select]
sudo cp /home/linuxmce/.mozilla/firefox/*.default/chrome/userChrome-example.css /root/.mozilla/firefox/pluto.default/chrome/userChrome.css
Set ownership of the chrome directory and contents to root:root
Code: [Select]
sudo chown -R root:root /root/.mozilla/firefox/pluto.default/chrome
Edit /root/.mozilla/firefox/pluto.default/chrome/userChrome.css and add the following:
Code: [Select]
* {
font-size: 16pt !important
}
Adjust the font-size to whatever looks best on your system.

HTH,
Roy

ouie

  • Regular Poster
  • **
  • Posts: 29
    • View Profile
Re: Adjusting firefox menu font
« Reply #1 on: April 12, 2008, 02:12:58 am »
Thanks roy....I tried adjusting it from within Firefox but there is a Font size limit. You solution should solve that.