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

Borderline between text bar and tab bar.

  • 1 பதிலளி
  • 0 இந்த பிரச்னைகள் உள்ளது
  • Last reply by Beltion

So i wanted to remove borderline between text bar and tab bar. After some googling i manege to do so by console(contl+shift+alt+i), in string "--tabs-navbar-separator-color: light-dark(rgba(0,0,0,.1), rgba(0,0,0,.3));" i change 3 to 0 and borderline gone. But every time i restart browser is all back. Is there any way to make it permanent ?

So i wanted to remove borderline between text bar and tab bar. After some googling i manege to do so by console(contl+shift+alt+i), in string "--tabs-navbar-separator-color: light-dark(rgba(0,0,0,.1), rgba(0,0,0,.3));" i change 3 to 0 and borderline gone. But every time i restart browser is all back. Is there any way to make it permanent ?

தீர்வு தேர்ந்தெடுக்கப்பட்டது

So in the end i just ask chatGPT and it works... Step-by-Step Guide

   Enable userChrome.css:
       Open Firefox and type about:config in the address bar and press Enter.
       Click "Accept the Risk and Continue".
       Search for toolkit.legacyUserProfileCustomizations.stylesheets.
       Double-click the entry to set it to true.
   Find Your Firefox Profile Folder:
       Type about:profiles in the address bar and press Enter.
       Locate the profile you are using (it’s usually the one marked as "Default Profile").
       Under the profile, click "Open Folder" (this will open the profile folder in your file explorer).
   Create chrome Folder:
       In your profile folder, check if a folder named chrome exists. If it doesn’t, create a new folder and name it chrome.
   Create/Edit userChrome.css:
       Inside the chrome folder, create a new file named userChrome.css if it doesn’t already exist.
       Open userChrome.css in a text editor (e.g., Notepad, Notepad++, VS Code).
   Add Custom CSS:
       Add the following CSS code to the userChrome.css file to remove the separator:
       css
       :root {
         --tabs-navbar-separator-color: rgba(0, 0, 0, 0) !important;
       }
   Save and Restart Firefox:
       Save the userChrome.css file.
       Restart Firefox to see the changes take effect.

Summary

By enabling the userChrome.css file, adding the custom CSS with !important, and restarting Firefox, you can permanently remove the border line between the text bar and the tab bar. This ensures that your custom style is applied consistently across sessions.

Read this answer in context 👍 0

All Replies (1)

தீர்வு தேர்ந்தெடுக்கப்பட்டது

So in the end i just ask chatGPT and it works... Step-by-Step Guide

   Enable userChrome.css:
       Open Firefox and type about:config in the address bar and press Enter.
       Click "Accept the Risk and Continue".
       Search for toolkit.legacyUserProfileCustomizations.stylesheets.
       Double-click the entry to set it to true.
   Find Your Firefox Profile Folder:
       Type about:profiles in the address bar and press Enter.
       Locate the profile you are using (it’s usually the one marked as "Default Profile").
       Under the profile, click "Open Folder" (this will open the profile folder in your file explorer).
   Create chrome Folder:
       In your profile folder, check if a folder named chrome exists. If it doesn’t, create a new folder and name it chrome.
   Create/Edit userChrome.css:
       Inside the chrome folder, create a new file named userChrome.css if it doesn’t already exist.
       Open userChrome.css in a text editor (e.g., Notepad, Notepad++, VS Code).
   Add Custom CSS:
       Add the following CSS code to the userChrome.css file to remove the separator:
       css
       :root {
         --tabs-navbar-separator-color: rgba(0, 0, 0, 0) !important;
       }
   Save and Restart Firefox:
       Save the userChrome.css file.
       Restart Firefox to see the changes take effect.

Summary

By enabling the userChrome.css file, adding the custom CSS with !important, and restarting Firefox, you can permanently remove the border line between the text bar and the tab bar. This ensures that your custom style is applied consistently across sessions.

Helpful?

கேள்வி எழுப்பு

You must log in to your account to reply to posts. Please start a new question, if you do not have an account yet.