Thread: drop-down problems
Results 1 to 5 of 5
Related
-
old problems Forum: HTML Forum
Replies: 4 -
Div Tag Problems Forum: HTML Forum
Replies: 0 -
vertical drop down menu with 'sub drop downs' problem Forum: Javascript Forum
Replies: 2 -
ie6 problems Forum: HTML Forum
Replies: 2
-
09-04-2002, 08:46 PM #1
drop-down problems
i'm having this problem 'bout a drop down menu that i want position at the bottom. here's the page: http://rostation3.tripod.com/downloads.html
see how the drop-down menu is a bit "aloft"? i want to to be low, just like the picture on the left. anyway?
-
09-04-2002, 09:23 PM #2
The form tag itself should be placed outside the table, while the remaining elements should be placed in the table cell however you want it displayed.
A quick example
PHP Code:<form=...>
<table>
<tr>
<td>
<select...>
<option>
</option>
</select>
</td>
</tr>
</table>
</form>
-
09-04-2002, 09:29 PM #3
it "kinda worked but i want the picture and the drop down bit lower--almost touching the red lines...
http://rostation3.tripod.com/downloads.html
Last edited by geek987; 09-04-2002 at 09:34 PM.
-
09-04-2002, 09:46 PM #4
I changed the lower table to a nested table within a new row of the first table. I also gave the parent cell of the nested table a colspan of 2 in oreder to match up with the 2 cells in the first row.
PHP Code:<Form name="jump">
<table border="0" cellspacing="0" cellpadding="0" width="755">
<tr>
<td align="left"><img src="downloads.jpg"></td>
<td align="right" valign="bottom">
<select name="menu" onChange="location=document.jump.menu.options[document.jump.menu.selectedIndex].value;" value="GO">
<option value="badge/index.html">Badges(4)</option>
<option value="barthez/index.html">Barthez(4)</option>
<option value="beckham/index.html">Beckham(9)</option>
<option value="blanc/index.html">Blanc(1)</option>
<option value="brown/index.html">Brown(1)</option>
<option value="butt/index.html">Butt(1)</option>
<option value="duos/index.html">Duos(2)</option>
<option value="ferdinand/index.html">Ferdinand(1)</option>
<option value="forlan/index.html">Forlan(1)</option>
<option value="giggs/index.html">Giggs(3)</option>
<option value="keane/index.html">Keane(1)</option>
<option value="neville/index.html">Neville(1)</option>
<option value="nistelrooy/index.html">Nistelrooy(1)</option>
<option value="cantona/index.html">Cantona(1)</option>
<option value="scholes/index.html">Scholes(2)</option>
<option value="solskjaer/index.html">Solskjaer(3)</option>
<option value="team/index.html">Team(18)</option>
<option value="veron/index.html">Veron(2)</option>
</select>
</td>
</tr>
<tr>
<td colspan="2">
<table border="1" bordercolor="#CF2830" cellspacing="0" cellpadding="0" width="755">
<tr>
<td>
<table border="0" cellspacing="0" cellpadding="25">
<tr>
<td>
<img src="badge/1.jpg" width="200" height="150">
</td>
<td>
<img src="badge/1.jpg" width="200" height="150">
</td>
<td>
<img src="badge/1.jpg" width="200" height="150">
</td>
</tr>
</table>
</td>
</tr>
</table>
</form>
Last edited by HTML; 09-04-2002 at 09:51 PM.
-
09-04-2002, 11:19 PM #5
...u r just...TERRIFIC!
i think i just figure out something--i kinda sux in HTML
Cloudjiffy- PaaS for Developers
10-05-2020, 12:30 AM in Web Hosting Forum