been a while guys... again.... buuut I've been released from the IDF and started working again (yay!)... and -fun fun fun- it's in PHP!
So how's everybody been? and does anybody remember me? :-p
So for lack of a better place to go for help, I'm attacking you guys!
I'm having a bit of a problem with some HTML formatting... I've got a form with a single text input and two images used for buttons. I want them all to be aligned on the same horizontal line. Unfotunately they aren't. the images are 4px (IE... 6px in Firefox) higher than the input.
<form id="searchForm" style="display: inline;" method="get">
<input type="text" size="20" name="q" id="q" onfocus="this.select();" value="<?=$searchStr?>" style="text-align: top" />
<img class="faq" onclick="searchSubmit();" src="images/faq/search.gif" align="bottom" />
<img class="faq" onclick="document.location = 'faq.php';" src="images/faq/clear_search.gif" />
</form>
the faq class is defined in the css as follows:
image.faq {
cursor: pointer;
}
the images are both of height 22px, as is the text input. so wtf?