我在 Windows 7 中安装了 Firefox Quantum 网络浏览器,版本号 57.0.2(64 位)。
不幸的是Sidebar
, 的最大宽度约为 540 像素。
我尝试通过about:config
搜索“侧边栏”来增加此限制。然后我更改了设置devtools.工具箱.侧边栏.宽度;500价值600。然后我重启了 Firefox。但是没有用。
那么如何增加侧边栏的最大宽度?
答案1
Firefox 菜单 -> 帮助 -> 故障排除信息 -> 配置文件夹 -> 打开文件夹
应该有一个文件夹名称为
chrome
(全部小写)。如果没有,请创建它。在该
chrome
文件夹中,有userChrome.css
一个文件。如果不存在,则创建它。使用任何文本编辑器打开此文件。
在此文件中,如果没有 CSS 规则
#sidebar
,请创建它:
/* remove maximum/minimum width restriction of sidebar */
#sidebar-box {
max-width: none !important;
min-width: 0px !important;
}
- 重启 Firefox
答案2
看起来这个标签最近改名了。新标签是:
#sidebar-box {
max-width: none !important;
}
答案3
找到您的配置文件文件夹https://support.mozilla.org/en-US/kb/profiles-where-firefox-stores-user-data -如果里面没有 chrome 文件夹,请从此链接下载http://franklion.co.uk/GEN-LINKS/chrome.zip
编辑 userChrome.css 文件
/* 删除侧边栏的最大/最小宽度限制 */ #sidebar { max-width: none !important; min-width: 0px !important; }
重新加载浏览器