hi jade, i'm still loving the apple zen, but having a few small problems (well just one right now, i've figured most of the others out to some extent)...

i'm trying to change the search header at the top, and i know that you're not too keen on adjusting inputs, but i'm just wondering if you have some insight into why i *cannot* get the search button and the input box to line up vertically. I just want them to line up that way, i'm not worried about width wise unless they're SUPER far apart.
here is my css code for the #navmainsearch section:
Code:
#navMainSearch {
/*area around search box and button including whole navmain area*/
margin:0 auto ;
text-align:right;
padding:0px 0px 0px 0px;
}
#navMainSearch input {
/*seems to move the search button*/
margin:0px ;
background-color:#A1C541;
text-align:right;
padding:0px 0px;
}
#navMainSearch input[type=text] {
margin: 0px 0 0 0;
}
#navMainSearch input.topSearch{
margin: 0 0 0px 0px;
padding: 0px 0 0 0;
}
i have this at code starting at line 19 of my tpl_search_header.php file:
PHP Code:
$content .= zen_draw_input_field('keyword', '', 'size="6" maxlength="30" style="width: 100px" value="' . HEADER_SEARCH_DEFAULT_TEXT . '" onfocus="if (this.value == \'' . HEADER_SEARCH_DEFAULT_TEXT . '\') this.value = \'\';" onblur="if (this.value == \'\') this.value = \'' . HEADER_SEARCH_DEFAULT_TEXT . '\';"') . ' <input type="image" img src="images/button_search.gif"' . HEADER_SEARCH_BUTTON . '" style="width: 70px" />';
to give it a button image instead of the standard search button.
basically the only reason i'm doing this is because i want the navmain area to be the same height as the dropdown menu link height, so it balances evenly on top and bottom of the header image... and the standard search thingie was just too tall and i'm too much of a noob to figure out how to make my own imaged search thingie like you have in cherry zen...
if anybody else has any suggestions, i'd love to hear them too!
thanks so much!
Bookmarks