This site will have limited functionality while we undergo maintenance to improve your experience. If an article doesn't solve your issue and you want to ask a question, we have our support community waiting to help you at @FirefoxSupport on Twitter and/r/firefox on Reddit.

Search Support

Avoid support scams. We will never ask you to call or text a phone number or share personal information. Please report suspicious activity using the “Report Abuse” option.

Learn More

Hierdie gesprek is in die argief. Vra asseblief 'n nuwe vraag as jy hulp nodig het.

How to remove Page Actions "..." from Address bar? Firefox 62.0.2

  • 5 antwoorde
  • 1 het hierdie probleem
  • 2 views
  • Laaste antwoord deur Sloan

more options

Hi, I would like to remove / disable the Page Actions "..." from the Address Bar, the usual method of editing the userChrome.css file an inserting the following code no longer works for me.

/* Remove Page Actions Menu */

  1. pageActionButton

{

 display: none !important;

} /* Put refresh button "inside" address bar */

  1. pageActionSeparator

{

   margin-right:26px !important;

}

Hi, I would like to remove / disable the Page Actions "..." from the Address Bar, the usual method of editing the userChrome.css file an inserting the following code no longer works for me. <code> /* Remove Page Actions Menu */ #pageActionButton { display: none !important; } /* Put refresh button "inside" address bar */ #pageActionSeparator { margin-right:26px !important; } </code>

Gewysig op deur Sloan

Gekose oplossing

It seems there's a hidden .txt extension on your userChrome.css file name. That's why Firefox doesn't see it.

To access that so you can remove it, check step #4 here:

https://www.userchrome.org/how-create-userchrome-css.html

Lees dié antwoord in konteks 👍 0

All Replies (5)

more options

For some reason the number one is replacing the original code which should be a pound sign before the pageActionButton and pageActionSeparator, anyways you get the jist I hope.

more options

Hi Sloan, the site uses a "wiki" syntax. To post code, you can use pre tags instead of code tags:

/* Remove Page Actions Menu */
#pageActionButton 
{
  display: none !important;
}
/* Put refresh button "inside" address bar */
#pageActionSeparator
{
    margin-right:26px !important;
}

As far as I can tell, #pageActionButton is still the correct selector for the ••• icon.

Could something earlier in the file be interfering?

more options

Hi, I have nothing else in my userChrome.css file just that code.

more options

Gekose oplossing

It seems there's a hidden .txt extension on your userChrome.css file name. That's why Firefox doesn't see it.

To access that so you can remove it, check step #4 here:

https://www.userchrome.org/how-create-userchrome-css.html

more options

Much thanks, that did it.