Resizing the search bar: Difference between revisions

From MozillaZine Knowledge Base
Jump to navigationJump to search
(add Resize Search Box extension)
(changed link from extensionsmirror.nl to addons.mozilla.org)
 
Line 1: Line 1:
The [http://www.extensionsmirror.nl/index.php?showtopic=1342 Resize Search Box] extension lets you change the search bar width. You can also edit your [[userChrome.css]] file to add the following code ("400px" can be changed to something larger or smaller)
The [https://addons.mozilla.org/extensions/moreinfo.php?id=349 Resize Search Box] extension lets you change the search bar width. You can also edit your [[userChrome.css]] file to add the following code ("400px" can be changed to something larger or smaller)
  /* Make the Search box flex wider */
  /* Make the Search box flex wider */
  #search-container, #searchbar {
  #search-container, #searchbar {

Latest revision as of 21:56, 16 December 2005

The Resize Search Box extension lets you change the search bar width. You can also edit your userChrome.css file to add the following code ("400px" can be changed to something larger or smaller)

/* Make the Search box flex wider */
#search-container, #searchbar {
width: 400px !important;
}