Last active
January 1, 2016 20:39
-
-
Save Avasz/8198873 to your computer and use it in GitHub Desktop.
Customizing Firefox
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Changing Icon: | |
| Create folder named chrome in firefox profile directory, create file inside chrome called userChrome.css, add the following lines for the icons you want to change. | |
| #home-button{ | |
| list-style-image: url("skype.png") !important; | |
| } | |
| ------------------------------------------------------------------------------------------------------------------------------- | |
| Change grey to black: | |
| toolbox, | |
| #toolbar-menubar, | |
| #nav-bar, | |
| #PersonalToolbar, | |
| #FindToolbar, | |
| tabbox, | |
| tabbar, | |
| sidebarheader, | |
| #sidebar-box, | |
| window statusbarpanel { | |
| -moz-appearance: none !important; | |
| background-color: #000000 !important; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment