Gossamer Forum
Home : Products : Gossamer Links : Discussions :

Reducing Width of Search Input Field

Quote Reply
Reducing Width of Search Input Field
Hello,

Could anyone tell me how to reduce the width of Search Input Field?


Thanks.
Quote Reply
Re: [server0000] Reducing Width of Search Input Field In reply to
Hi,

You probably need to edit include_search.html (or include_search_bar.html), and possibly search.html, depending on which one you want to edit Smile

Cheers

Andy (mod)
andy@ultranerds.co.uk
Want to give me something back for my help? Please see my Amazon Wish List
GLinks ULTRA Package | GLinks ULTRA Package PRO
Links SQL Plugins | Website Design and SEO | UltraNerds | ULTRAGLobals Plugin | Pre-Made Template Sets | FREE GLinks Plugins!
Quote Reply
Re: [server0000] Reducing Width of Search Input Field In reply to
If you're using GLinks 3.x, then you can change its width using CSS. A rule like:
Code:
.searchbar input.text {
width: 100px;
}
should do it.

Adrian