Ky sajt do të funksionojë me kufizime, teksa bëjmë mirëmbajtjen e tij për të përmirësuar punën tuaj. Nëse një artikull nuk e zgjidh problemin tuaj dhe dëshironi të bëni një pyetje, kemi bashkësinë tonë të asistencës, e gatshme për t’ju ndihmuar, te @FirefoxSupport në Twitter dhe/r/firefox në Reddit.

Kërkoni te Asistenca

Shmangni karremëzime gjoja asistence. S’do t’ju kërkojmë kurrë të bëni një thirrje apo të dërgoni tekst te një numër telefoni, apo të na jepni të dhëna personale. Ju lutemi, raportoni veprimtari të dyshimtë duke përdorur mundësinë “Raportoni Abuzim”.

Mësoni Më Tepër

how can i remove the show history button/arrow on the adressbar?

more options

i don't want that button, I've already managed to remove the 3 dots page actions button near it using userChrome.css code but I've found no code for this one

i don't want that button, I've already managed to remove the 3 dots page actions button near it using userChrome.css code but I've found no code for this one
Foto të bashkëngjitura ekrani

Krejt Përgjigjet (2)

more options

protojunk said

how can i remove the show history button/arrow on the adressbar?

Are you referring to the forward and back arrow? If yes, you can add the following code snippet to your userChrome.css:

#back-button, #forward-button { display: none; }

Note: Keep in mind that userChrome.css isn't officially supported and that it can break when you update to a newer Firefox version.

Ndryshuar nga Danny Colin

more options

I think it's this one:

<xul:image anonid="historydropmarker" class="urlbar-history-dropmarker urlbar-icon chromeclass-toolbar-additional" tooltiptext="Show history"/>

You could try:

#urlbar .urlbar-history-dropmarker {
  display: none !important;
}

By the way, what is your rule for the Page Actions menu button? It seems to have left a large gap. If you are using visibility: hidden that doesn't collapse the space an element occupies. You can instead use visibility: collapse or display: none to recover that space.