Windows 10 reached EOS (end of support) on October 14, 2025. If you are on Windows 10, see this article.

Search Support

Avoid support scams. We will never ask you to call or text a phone number or share personal information. Please report suspicious activity using the “Report Abuse” option.

Learn More

Hierdie gesprek is in die argief. Vra asseblief 'n nuwe vraag as jy hulp nodig het.

How do I change the height of the bookmarks toolbar?

  • 2 antwoorde
  • 3 hierdie probleem
  • 297 views
  • Laaste antwoord deur William

The bookmarks toolbar is too narrow when I choose the compact density in customize settings.

The bookmarks toolbar is too narrow when I choose the compact density in customize settings.
Aangehegde skermkiekies

Gewysig op deur William

Gekose oplossing

You could try a custom style rule in a userChrome.css file.

Rule:

/* Use Normal top and bottom padding for Compact */
#PlacesToolbarItems .bookmark-item {
  padding-top: 2px !important;
  padding-bottom: 2px !important;
}

About userChrome.css files:

https://www.userchrome.org/what-is-userchrome-css.html

Lees dié antwoord in konteks 👍 1

All Replies (2)

Gekose oplossing

You could try a custom style rule in a userChrome.css file.

Rule:

/* Use Normal top and bottom padding for Compact */
#PlacesToolbarItems .bookmark-item {
  padding-top: 2px !important;
  padding-bottom: 2px !important;
}

About userChrome.css files:

https://www.userchrome.org/what-is-userchrome-css.html

Thank you, just what I'm looking for.