好象不能把打开的标签页放在下面!

阅读:6607回复:9
2004-12-04 02:13
写私信
楼主#
别的浏览器可以设置在上面或者在下面,希望以后能放在下面,比较习惯!
2004-12-04 02:13
写私信
1楼#
如果你使用的是TBE的话,这个扩展可以让你选择把标签放在上下左右任何地方
2004-12-04 02:13
写私信
2楼#
TBE可以
2004-12-04 02:13
写私信
3楼#
修改userChrome.css

把标签页放在下面:

/* Display the Tabbar at the bottom */
#content > tabbox {-moz-box-direction: reverse;}


把标签页放在左边:

/* tabs at left */
#content > tabbox {
  -moz-box-orient: horizontal;
}
.tabbrowser-strip {
  -moz-box-orient: vertical;
  /* note: you can set this to -moz-scrollbars-vertical instead,
     but then the scrollbar will *always* be visible.  this way
     there is never a scrollbar, so it behaves like the tab bar
     normally does */
  overflow: -moz-scrollbars-none;
}
.tabbrowser-tabs {
  -moz-box-orient: horizontal;
  min-width: 10ex;   /* you may want to increase this value */
  -mox-box-pack: start;
  -moz-box-align: start;
}
.tabbrowser-tabs > hbox {
  -moz-box-orient: vertical;
  -moz-box-align: stretch;
  -moz-box-pack: start;
}
.tabbrowser-tabs > hbox > tab {
  -moz-box-align: start;
  -moz-box-orient: horizontal;
}
/* remove the close-tab button. trust me, you need to do this. */
.tabbrowser-tabs > stack {
  display: none;
}


把标签页放在右边:

上面两段代码一起用。


如果對userChrome.css不熟悉,請用ChromEdit擴展。
http://www.extensionsmirror.nl/extfiref ... .1.1.1.xpi
2004-12-04 02:13
写私信
4楼#
我怎么没找到userChrome.css这个文件呢?只找到了userChrome-example这个文件,一样吗?
用什么打开那个文件呢?把要添加的语句放在什么地方呢?
谢谢了。
2004-12-04 02:13
写私信
5楼#
sonyzh245:我怎么没找到userChrome.css这个文件呢?只找到了userChrome-example这个文件,一样吗?
用什么打开那个文件呢?把要添加的语句放在什么地方呢?
谢谢了。
回到原帖
把userChrome-example.css改名成userChrome.css位置同样。

用记事本就可以编辑,这些语句的位置不限,放在最后就是了
2004-12-04 02:13
写私信
6楼#
这里有一些关于userChrome.css的介绍。
http://www.ccw.com.cn/soft/apply/networ ... _114RJ.htm

userChrome.css 可以用任何文字编辑器修改,但是最简单的方法还是安裝ChromEdit编辑。
2004-12-04 02:13
写私信
7楼#
Louis:把userChrome-example.css改名成userChrome.css位置同样。

用记事本就可以编辑,这些语句的位置不限,放在最后就是了
回到原帖


我在ff的安装目录和个人配置文件夹里都找到了这个文件。
请问是要两个一起改还是只改其中一个就行了呢?
麻烦再回答一下,谢谢。
2004-12-04 02:13
写私信
8楼#
改profile里面那个就行了
2004-12-04 02:13
写私信
9楼#
谢谢。解决了。