How to remove Page Actions "..." from Address bar? Firefox 62.0.2
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 */
- pageActionButton
{
display: none !important;
}
/* Put refresh button "inside" address bar */
- pageActionSeparator
{
margin-right:26px !important;
}
この投稿は Sloan により
選ばれた解決策
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
この回答をすべて読む 👍 0すべての返信 (5)
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.
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?
Hi, I have nothing else in my userChrome.css file just that code.
選ばれた解決策
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:
Much thanks, that did it.