Join the AMA (Ask Me Anything) with the Firefox leadership team to celebrate Firefox 20th anniversary and discuss Firefox’s future on Mozilla Connect. Mark your calendar on Thursday, November 14, 18:00 - 20:00 UTC!

Este site está com funcionalidades limitadas enquanto realizamos manutenção para melhorar sua experiência de uso. Se nenhum artigo resolver seu problema e você quiser fazer uma pergunta, nossa comunidade de suporte pode te ajudar em @FirefoxSupport no Twitter e /r/firefox no Reddit.

Pesquisar no site de suporte

Evite golpes de suporte. Nunca pedimos que você ligue ou envie uma mensagem de texto para um número de telefone, ou compartilhe informações pessoais. Denuncie atividades suspeitas usando a opção “Denunciar abuso”.

Saiba mais

Esta discussão foi arquivada. Faça uma nova pergunta se precisa de ajuda.

change right-click refresh position

  • 6 respostas
  • 1 tem este problema
  • 1 exibição
  • Última resposta de kiwizoom

more options

Hello, it's been awhile since I had firefox.

So, when you right-click on a page in the newest version, you get a menu with icons in the top row. I'm used to refresh even being a low element on the list, but now it's to the side, a kind of annoying position to navigate to and may hit back/forward/favorite. Up and down motions are much easier to do on a mouse than side to side or diagonals.

I'd like for the refresh button to be the first element to the left, where back is, which is the shortest distance. I'm a compulsive right-click refresher. (otherwise, I have to use my left hand to do a refresh, or go aaall the way up to the tiny button in the address bar)

Hello, it's been awhile since I had firefox. So, when you right-click on a page in the newest version, you get a menu with icons in the top row. I'm used to refresh even being a low element on the list, but now it's to the side, a kind of annoying position to navigate to and may hit back/forward/favorite. Up and down motions are much easier to do on a mouse than side to side or diagonals. I'd like for the refresh button to be the first element to the left, where back is, which is the shortest distance. I'm a compulsive right-click refresher. (otherwise, I have to use my left hand to do a refresh, or go aaall the way up to the tiny button in the address bar)

Solução escolhida

You can set one of those four items as the first by giving it a -moz-box-ordinal-group:0!important CSS rule.

#context-back
#context-forward
#context-reload
#context-stop

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

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

#context-reload { -moz-box-ordinal-group:0 !important; }

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

You can use this button to go to the currently used Firefox profile folder:


If you prefer text labels in the right-click context menu instead of the icons for Back, Forward and Reload and the star to bookmark the page then you can install the "Classic Theme Restorer" extension. You can find the option to get text labels instead of icons in the context menu in the Options/Preferences of the CTR extension in the General UI section.

  • Replace page context menu icons with labels (back, forward, stop, reload, bookmark page)

Note that you can navigate the icons in the context menu via the Up and Down cursor keys and press the Enter key to invoke the action like you can with the other items in the context menu.


Ler esta resposta 👍 0

Todas as respostas (6)

more options

hi, there would also be the f5 key as another option to reload a page :-)

more options

I know, but that still involves removing my left hand from propping my face and hitting the keyboard

more options

Solução escolhida

You can set one of those four items as the first by giving it a -moz-box-ordinal-group:0!important CSS rule.

#context-back
#context-forward
#context-reload
#context-stop

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

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

#context-reload { -moz-box-ordinal-group:0 !important; }

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

You can use this button to go to the currently used Firefox profile folder:


If you prefer text labels in the right-click context menu instead of the icons for Back, Forward and Reload and the star to bookmark the page then you can install the "Classic Theme Restorer" extension. You can find the option to get text labels instead of icons in the context menu in the Options/Preferences of the CTR extension in the General UI section.

  • Replace page context menu icons with labels (back, forward, stop, reload, bookmark page)

Note that you can navigate the icons in the context menu via the Up and Down cursor keys and press the Enter key to invoke the action like you can with the other items in the context menu.


Alterado por cor-el em

more options

Well burn my biscuits! That worked.

I had to play with it for awhile - I just installed FireFox so it's worth noting like in the userChrome link that a default user won't have a Chrome folder with a userChrome.css in it, it must be created.

Also had to remove the namespace for it to be a change for every page, I assume. And of course a browser restart for changes.

Thanks!

Alterado por kiwizoom em

more options

The @namespace line should be there at the start of the file for proper functioning and avoiding namespace issues.

more options

When I leave your exact namespace in, it no longer works