Windows 10 will reach EOS (end of support) on October 14, 2025. For more information, 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

Reduce the tab height in pixels for FF29

  • 1 پاسخ
  • 6 have this problem
  • 5 views
  • آخرین پاسخ توسّط cor-el

more options

I have read all the threads her eon the forums. I have tried the addons. I have googled, and googled and googled.

Is there a way to reduce the height of the tabs in terms of pixels or not?

I have edited my css file. I have tried the classic theme restorer and other.

I like the overall look of FF29. I just want want the tabs the same height as they were in FF28 in terms of pixel height.

This affects all my computers running both Linux and Windows 7 Pro.

I have read all the threads her eon the forums. I have tried the addons. I have googled, and googled and googled. Is there a way to reduce the height of the tabs in terms of pixels or not? I have edited my css file. I have tried the classic theme restorer and other. I like the overall look of FF29. I just want want the tabs the same height as they were in FF28 in terms of pixel height. This affects all my computers running both Linux and Windows 7 Pro.

All Replies (1)

more options

There is a min-height: 31px set that you need to override by specifying a lower value and adding the !important flag.

#tabbrowser-tabs {
 height:26px!important;
 min-height: 26px !important;
}

.tab-background-start[selected=true]::after,
.tab-background-start[selected=true]::before,
.tab-background-start,
.tab-background-end,
.tab-background-end[selected=true]::after,
.tab-background-end[selected=true]::before {
  min-height: 26px !important;
}

See chrome://browser/skin/browser.css

#tabbrowser-tabs {
  min-height: 31px;
}

.tab-background-start[selected=true]::after,
.tab-background-start[selected=true]::before,
.tab-background-start,
.tab-background-end,
.tab-background-end[selected=true]::after,
.tab-background-end[selected=true]::before {
  min-height: 31px;
  width: 30px;
}

Modified by cor-el