Change Firefox Search Bar Size
Filed in: Mozilla, Tips n Tricks — October 11th, 2004
For any reason you want to resize the Firefox search bar width, add the following code to your userChrome.css file:
/* Make the Search box flex wider(in this case 400 pixels wide) */
#searchbar {
-moz-box-flex: 400 !important;
}
#search-container {
-moz-box-flex: 400 !important;
}
Reference: texturizer.net
Thought:
Personally I do not use resize the search bar, the default size is just right for me. The tip in texturizer only resize the container of search bar, but does not change its width. Thanks to UncleJim for the pointer.


