Tìm kiếm hỗ trợ

Tránh các lừa đảo về hỗ trợ. Chúng tôi sẽ không bao giờ yêu cầu bạn gọi hoặc nhắn tin đến số điện thoại hoặc chia sẻ thông tin cá nhân. Vui lòng báo cáo hoạt động đáng ngờ bằng cách sử dụng tùy chọn "Báo cáo lạm dụng".

Learn More

Userstyles Theme Problem

  • 6 trả lời
  • 5 gặp vấn đề này
  • 6 lượt xem
  • Trả lời mới nhất được viết bởi 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.
Đính kèm ảnh chụp màn hình

Tất cả các câu trả lời (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

Được chỉnh sửa bởi cor-el vào

more options

Ok, found a solution on userstyles's site

  1. navigator-toolbox::after{

background-color: #000 !important; }

Thanks!