How to increase font-size for Submenu Bookmarks ONLY? BOLD?

User Help for Mozilla Firefox
Post Reply
thoste
Posts: 317
Joined: June 7th, 2003, 12:45 am

How to increase font-size for Submenu Bookmarks ONLY? BOLD?

Post by thoste »

How can I increase the font-size for bookmarks IN SUB MENUS only (not in bookmark toolbar)?

How can I apply font-weight=bold for bookmarks IN SUB MENUS only (not in bookmark toolbar)?

It should somehow work in userChrome.css statements
User avatar
jscher2000
Posts: 11762
Joined: December 19th, 2004, 12:26 am
Location: Silicon Valley, CA USA
Contact:

Re: How to increase font-size for Submenu Bookmarks ONLY? BO

Post by jscher2000 »

Do you want code that affects all menus, including right-click context menus and classic menu bar menus (for example, Alt+B for bookmarks)? Or only the menus that drop from the Bookmarks Toolbar?
thoste
Posts: 317
Joined: June 7th, 2003, 12:45 am

Re: How to increase font-size for Submenu Bookmarks ONLY? BO

Post by thoste »

If possible only the menus that drop from the Bookmarks Toolbar.
User avatar
dickvl
Posts: 54161
Joined: July 18th, 2005, 3:25 am

Re: How to increase font-size for Submenu Bookmarks ONLY? BO

Post by dickvl »

That would be something like this:

Code: Select all

#PlacesToolbarItems  > .bookmark-item > menupopup :is(menu, menuitem) {
 font-size: 14px !important;
 font-weight: bold !important;
}
thoste
Posts: 317
Joined: June 7th, 2003, 12:45 am

Re: How to increase font-size for Submenu Bookmarks ONLY? BO

Post by thoste »

Works.
Thank you
Post Reply