Firefox- How to change font size of right-click context menu?

1

Using Firefox v9.0.1 on OS X Lion v10.7.2

In userChrome.css, how do I adjust the font size that appears in the context menu when you right-click on something (like a link) on a web page?

I tried DOM inspector but cannot decipher what I am looking for.

Related to this thread: Firefox- How to change font size of items in folder on bookmarks toolbar?

jsherk

Posted 2012-01-05T15:46:05.507

Reputation: 461

Answers

1

The CSS selector for the Right-click context menu is:

#contentAreaContextMenu * {
    property: value !important;
}

Example:

contextmenu

Any more userChrome.css tweaks? :)

iglvzx

Posted 2012-01-05T15:46:05.507

Reputation: 21 611

Sorry for late response... I do not seem to get emails when somebody responds to my questions! #contentAreaContextMenu menuitem { font-size: 12px !important; } is what I needed. I have accepted your answer as correct. thanks – jsherk – 2012-01-09T04:30:21.890