Die Funktionalität dieser Website ist durch Wartungsarbeiten eingeschränkt, die Ihr Erlebnis verbessern sollen. Wenn ein Artikel Ihr Problem nicht löst und Sie eine Frage stellen möchten, können Sie unsere Gemeinschaft über @FirefoxSupport auf Twitter, /r/firefox oder Reddit fragen.

Hilfe durchsuchen

Vorsicht vor Support-Betrug: Wir fordern Sie niemals auf, eine Telefonnummer anzurufen, eine SMS an eine Telefonnummer zu senden oder persönliche Daten preiszugeben. Bitte melden Sie verdächtige Aktivitäten über die Funktion „Missbrauch melden“.

Weitere Informationen

Firefox navigation bar no longer has lines in between suggestions/sites. Is there any way to readd them?

  • 4 Antworten
  • 3 haben dieses Problem
  • 5 Aufrufe
  • Letzte Antwort von cor-el

more options

Firefox navigation bar no longer has lines in between suggestions/sites. Is there any way to readd them?

Firefox navigation bar no longer has lines in between suggestions/sites. Is there any way to readd them?

Alle Antworten (4)

more options

Hi o1831159,

What is the distinction between suggestions and sites? Could you elaborate on that?

more options

hello kadir, i think the user refers to the dropdown results that appear when you type into the location bar (see change #1 in http://www.browsomatic.com/2012/07/Firefox-17-address-bar-improved.html)

more options

Thanks, madperson, makes sense.

o1831159, there might be an addon out there to bring that feature back, but it's not possible within Firefox itself.

more options

See [/questions/939334]

Add code to the userChrome.css file below the default @namespace line.

The customization files userChrome.css (interface) and userContent.css (websites) are located in the chrome folder in the user profile folder.


@namespace url(http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul);

.autocomplete-richlistitem { padding-top: 2px !important; padding-bottom: 2px !important; }
.autocomplete-richlistitem:not(:first-child) { border-top: 1px solid #ddd !important; }
.autocomplete-richlistitem[selected="true"] { border-top-color: transparent !important; }

*|span.ac-emphasize-text { 
 box-shadow: inset 0 0 1px 1px rgba(0,255,255,1)!important;
 background-color: rgba(0,255,255,0.2)!important;
}

Geändert am von cor-el