This content has been marked as final.
Show 2 replies
-
1. Re: CCS issue with search box
MurraySummers Mar 11, 2013 6:43 AM (in response to matthew stuart)You can try adding this -
position:relative;
top:20px;
to the rule for the button in that container.
-
2. Re: CCS issue with search box
osgood_ Mar 11, 2013 7:51 AM (in response to matthew stuart)Floating both form elements left should work and give them the same height, set the margin of the 'button' id css to 0 if you use the float option because you don't need to close up the gap left by the image when using inline-block;
#button, #searchbox {
float: left;
height: 26px;
}
#searchwrap #searchform #button {
margin: 0;
}



