Mozilla 도움말 검색

고객 지원 사기를 피하세요. 저희는 여러분께 절대로 전화를 걸거나 문자를 보내거나 개인 정보를 공유하도록 요청하지 않습니다. "악용 사례 신고"옵션을 사용하여 의심스러운 활동을 신고해 주세요.

Learn More

Borderline between text bar and tab bar.

  • 1 답장
  • 0 이 문제를 만남
  • 최종 답변자: Beltion

more options

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.

문맥에 따라 이 답변을 읽어주세요 👍 0

모든 댓글 (1)

more options

선택된 해결법

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.

도움이 되셨습니까?

질문하기

글에 답글을 달기 위해서는 계정으로 로그인해야만 합니다. 계정이 아직 없다면 새로운 질문을 올려주세요.