Is there a way to edit the search box size (width) etc? I've been told its done by altering the stylesheets via CSS. Well I know its CSS I just can't seem to figure out how. I'm not sure which Class controlls the length etc. If anyone could help me out I would be most appreciative.

- Isaac

Comments

parablood’s picture

oh I'm using drupal 6 and a Zen subtheme ^_^

Mark Linden’s picture

Firefox + Firebug (plugin for Firefox) = CSS bliss

parablood’s picture

Yea I know.. :p I been trying to figure it out with Firebug and Webdevloper I'm close just can't seem to get the right class etc... and with CSS everyone in drupal is like.. figure it out urself its CSS!!! ... sigh....

Mark Linden’s picture

http://themegarden.org/drupal50/?q=node&theme=zen

zen.css (line 216)


#search-box {                                        
width:100px;      /* old value: 200 px */  
}

parablood’s picture

Thanks paradiddle I put that into my stylesheet but no luck getting the search input box bigger. I even went to that link you gave me and put that same code in there on line 216 but still no luck...

parablood’s picture

Found it:

#edit-search-theme-form-1 {
width:275px;
}

thanks for the help