FliegendeWurst's corner of the WWW

Fixing the position of TST's new tab button

2023-07-30

Here you can learn how to change the position of the new tab button for the Tree Style Tab browser extension. With this change, the new tab button is always at the bottom of the tab tree. Opening a new tab with the mouse is then as simple as clicking at the bottom left of the screen. No more aiming at a 20 pixels high region below the last opened tab!

Simply add the CSS code below to TST's custom style option ("Advanced" > "Extra style rules for contents provided by Tree Style Tab").

#tabbar .after-tabs {
  display: none;
}

#tabbar ~ .after-tabs {
  display: flex !important;
}

:root {
  --after-tabs-area-size: 20px !important;
}


© FliegendeWurst, 2022-2023 (excluding evident exceptions). Source repository.
This work is licensed under a Creative Commons Attribution 4.0 International License.
Website design inspired by Isabel Roses's website and Utku Demir's website.