hey folks,
I was wondering if anyone could help me with a problem I having with a drop nav bar and a table.
I have created tables which automatically resize wit the window, eg:
<tr>
<td width=30%>
</td>
<TD>
<A href="index.html">
<IMG alt="Click to return to the main page." src="../images/logo.gif">
</A>
<br>
</td>
<td width=30%>
</td>
</tr>
I want to place a nav bar directly under the banner image, but i dont know how to do this. At the moment, I am only able place the menu on the page in a static position. Here is the code for the nav bar:
Code:
function init() {
// Get width of window, need to account for scrollbar width in Netscape.
fullWidth = getWindowWidth()
- (isMinNS4 && getWindowHeight() < getPageHeight() ? 16 : 0);
myNavBar1.resize(744);
myNavBar1.create();
myNavBar1.setzIndex(2);
myNavBar1.moveTo(130, 109); //this defines the starting position of the menu. (horizontal start position, vertical start)
}
if anyone could shed any light on this I would be really grateful - thank you!
Morris