Windows 10 reached EOS (end of support) on October 14, 2025. For more information, see this article.

تلاش سپورٹ

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.

مزید سیکھیں

How do I change the height of the bookmarks toolbar?

  • 2 جواب دیں
  • 3 میں یہ مسئلہ ہے
  • 308 دیکھیں
  • آخری جواب بذریعہ William

more options

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.
منسلک شدہ اسکرین شاٹٹس

William کی جانب سے میں ترمیمکی گئ

منتخب شدہ حل

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

اس جواب کو سیاق و سباق میں پڑھیں 👍 1

تمام جوابات (2)

more options

منتخب شدہ حل

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

more options

Thank you, just what I'm looking for.