求教:如何让地址栏网页标识背景底色透明

阅读:8494回复:10
2012-01-03 22:19
写私信
楼主#
我把地址栏放到了标签后面,但地址栏网页标识背景底色不能搞成透明,网上搜遍了也没找到解决办法,见过一个全透明皮肤,做到了.所以应该有办法做到.求高手帮忙

图片:捕获.JPG

2012-01-03 22:19
写私信
1楼#
#identity-box {
background:transparent !important;
}
2012-01-03 22:19
写私信
2楼#
楼上的朋友,谢谢,我翻遍互联网都没找到解决方法,我天天在这等,终于等到了.高手呀,万分感谢..........
2012-01-03 22:19
写私信
3楼#
当前标签页透明....感觉不是太好~一眼扫过不知道哪个是当前标签页
2012-01-03 22:19
写私信
4楼#
可以改变当前标签页字体和字色呀
2012-01-03 22:19
写私信
5楼#
我最近也遇到和楼主同样的问题,不过我的办法是把图标隐藏起来~~
2012-01-03 22:19
写私信
6楼#
2楼代码好用。
2012-01-03 22:19
写私信
7楼#
v14 不用代碼...
Firefox 開啟安全模式,停用個人設定、佈景主題及擴充套件(無附加元件)測試:
說明 > 重新啟動但停用附加元件(Firefox 4+)
Firefox Profile: 說明 > 疑難排解資訊 > 開啟資料夾
排版引擎:Firefox(Gecko), Opera(Presto), Google Chrome(WebKit),
Safari(WebKit), Internet Explorer(Trident), Konqueror(KHTML)
2012-01-03 22:19
写私信
8楼#
你们还真能折腾,我F11就行了  
My Technical Blog: http://art-technical.blogspot.com/
2012-01-03 22:19
写私信
9楼#
请问把标签的改为透明的代码是哪个,可以告诉我吗?
2012-01-03 22:19
写私信
10楼#
/* 书签栏透明 */

toolbar {
        background-color: rgba(255,255,255,.0) !important;
}
/*地址栏宽度*/
-moz-document url(chrome://browser/content/browser.xul){
#urlbar {max-width:150px!important}
}
#urlbar {
min-width:80px !important;
}

/* 地址栏透明 */
#urlbar, #browser-bottombox, #nav-bar {
   background: transparent !important;
   border: none !important;
}
#identity-box {
background:transparent !important;
}
/* 隐藏地址栏历史下拉箭头 */
.urlbar-history-dropmarker { display: none !important;}
/* 去地址栏星星*/
#star-button {display: none !important}
/* 隐藏地址栏网站图标 */
#identity-box {display: none !important;}
 /*FireFox橙色菜单栏变透明*/
#appmenu-button{ background: transparent !important; }
/* 完全去掉橙色按钮*/
#appmenu-button{
   display:none !important;
}
各取所需吧