Skip to content

Instantly share code, notes, and snippets.

@tosunkaya
Forked from adamsvoboda/vivaldi.md
Created June 1, 2024 20:24
Show Gist options
  • Save tosunkaya/e94f9dc364807eaa06d3a4580e09669b to your computer and use it in GitHub Desktop.
Save tosunkaya/e94f9dc364807eaa06d3a4580e09669b to your computer and use it in GitHub Desktop.
removes the vivaldi menu button and the padding on top of tabs, also moves down the tab group indicator so its visible after doing this
  1. open your vivaldi browser.html file: %LOCALAPPDATA%\Vivaldi\Application\1.0.435.42\resources\vivaldi (replace 1.0.435.42 with your version)

  2. add the following code under <link rel="stylesheet" href="style/common.css" />

<style>
  .vivaldi { display: none !important; }
  #tabs-container.top { padding-top: 0px !important;  padding-left: 0px !important; }
  .tab-group-indicator { top: -3px !important; }
</style>

adjust padding-top for #tabs-container.top and top for .tab-group-indicator as necessary if you want space

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment