We're calling on all EU-based Mozillians with iOS or iPadOS devices to help us monitor Apple’s new browser choice screens. Join the effort to hold Big Tech to account!

Этот сайт имеет ограниченную функциональность, пока мы проводим техническое обслуживание для улучшения его работы. Если какая-либо статья не решила вашу проблему и вы хотите задать вопрос, наше сообщество поддержки ждёт вас: @FirefoxSupport в Твиттере и /r/firefox на Reddit.

Поиск в Поддержке

Избегайте мошенников, выдающих себя за службу поддержки. Мы никогда не попросим вас позвонить, отправить текстовое сообщение или поделиться личной информацией. Сообщайте о подозрительной активности, используя функцию «Пожаловаться».

Подробнее

Userstyles Theme Problem

  • 6 ответов
  • 5 имеют эту проблему
  • 9 просмотров
  • Последний ответ от user1226569

more options

I'm using Userstyles with a custom "Edge" browser theme.

My code: http://pastebin.com/qYf7Q8J4

Problem is, I can't figure out how to remove that 1px looking white line below the navbar. I've fiddled with the css code endlessly, can't figure out which it is. It's global, not just one site I visited to clarify.

I'm using Userstyles with a custom "Edge" browser theme. My code: http://pastebin.com/qYf7Q8J4 Problem is, I can't figure out how to remove that 1px looking white line below the navbar. I've fiddled with the css code endlessly, can't figure out which it is. It's global, not just one site I visited to clarify.
Приложенные скриншоты

Все ответы (6)

more options

Can I trouble someone for help please? :)

more options

Do you have the DOM Inspector extension? You can use that to examine "Chrome" documents, which allow you to poke around on the toolbar and see, for example, which element has a border, or maybe it's not a border but part of the background.

https://addons.mozilla.org/firefox/addon/dom-inspector-6622/

You can access DOM Inspector from the classic menu bar under Tools > Web Developer. Its legacy shortcut of Ctrl+Shift+i has been superseded by the built-in Inspector.

I probably won't be on a Windows 10 system for several days, so hopefully you'll figure it out before then.

more options

Thanks. Can't figure out how to use DOM inspector. I have the window open, but it's different from the regular built in inspector which I use daily.

more options

On the DOM Inspector's File menu, use Inspect Chrome Document to select the current browser window. (It's easier when you don't have a lot of windows open.) Then you can use click-to-select to inspect the toolbar.

more options

Thanks. I got that far, but still can't tackle that line on the bottom.

I've tried:

#navigator-toolbox {
    background: rgba(23, 23, 23, 100) !important;   
    border-bottom: 0px !important;
}

#nav-bar {
    background: rgba(23, 23, 23, 100) !important;   
    border-bottom: 0px !important;
}

None seem to fix that line

Изменено cor-el

more options

Ok, found a solution on userstyles's site

  1. navigator-toolbox::after{

background-color: #000 !important; }

Thanks!