Skip to content

Instantly share code, notes, and snippets.

@Avasz
Last active January 1, 2016 20:39
Show Gist options
  • Select an option

  • Save Avasz/8198873 to your computer and use it in GitHub Desktop.

Select an option

Save Avasz/8198873 to your computer and use it in GitHub Desktop.
Customizing Firefox
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