how do i adjust the width on my search box? i want to place it on my sidebar, but it is to wide for the layout?
any help would be great
how do i adjust the width on my search box? i want to place it on my sidebar, but it is to wide for the layout?
any help would be great
Find this in your source
<form id="searchform" method="get" action="">
<div>
<input type="text" name="s" id="s" size="10" /><br />
<input type="submit" value="Go" />
</div>
</form>
Change size="10" to whatever suits your fancy. You can also change it via CSS by calling its id (#s).
This topic has been closed to new replies.