Log in

View Full Version : Table type question...



GhettoT
02-28-2007, 07:50 PM
Sorry for asking so many questions involving my site... It is like I said before, for my school's robotics team and it gets judged and winners are announced at regionals. This is our first year submitting a somewhat competitor as far as layout, design, and content so I want everything to be perfect...

So here is the question. On the site ( http://www.team330.org ) I have a menu, in the menu you see the Google search box, on the right of the search box I have an image that says "Go!" which is the submit button. Does anyone know how to make the button be "equal" with the search box?

Thanks again!

EDIT:
Slightly Off-Topic, but is it possible to load an image but NOT show the image using strictly HTML?

mburt
02-28-2007, 08:06 PM
How to you want the submit button to be equal? In what way, height, width, padding, margins?

mburt
02-28-2007, 08:10 PM
And question two: No, not with strictly HTML, but a simple CSS code would do the trick:

<img src="..." style="display:none">

GhettoT
02-28-2007, 08:22 PM
With CSS is still good! And I want it to be equal in height i guess... You see how it is in-line with the top of the search box? I want it to be in the middle... I tries padding-top but that didn't work...

mburt
02-28-2007, 08:33 PM
Your problem lies in your td tag, line 196:

<td align="center" valign="middle" style="padding-bottom:15px">
Change it to 8px or close to it.

GhettoT
02-28-2007, 08:54 PM
Changing that value moved everything... The searchbox and button... Any other ideas?