Търсене в помощните статии

Избягвайте измамите при поддръжката. Никога няма да ви помолим да се обадите или изпратите SMS на телефонен номер или да споделите лична информация. Моля, докладвайте подозрителна активност на "Докладване за злоупотреба".

Научете повече

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!