Ok, basically the issue that I'm having is this:
I have a left-aligned navigation bar and I'm trying to keep the navigation menu aligned to the top of the "sidebar" and have a logo image aligned to the bottom of the same sidebar. But I need to make it in such a way that when more text etc is added to the page and the height of the sidebar is increased, the menu stays at the top and the logo stays at the bottom.
At the moment I have this code:
<td style="background:url(images/sideshim.gif)" width="124" valign="top">
<!--- Navbar Start -->
<table cellpadding="5" cellspacing="0">
<tr>
<td>
<a href="main.htm" class="menu">HOME</a>
</td>
</tr>
<tr>
<td>
<a href="cranes.htm" class="menu">OUR CRANES</a>
</td>
</tr>
<tr>
<td>
<a href="main.htm" class="menu">CRANE DATABASE</a>
</td>
</tr>
<tr>
<td>
<a href="main.htm" class="menu">BRANCHES</a>
</td>
</tr>
<tr>
<td>
<a href="main.htm" class="menu">CONTACT</a>
</td>
</tr>
</table>
<img src="images/sidebarsarens.gif" alt="" height="127" width="124" align="bottom" />
<!--- Navbar End -->
</td>
I have a draft up at www.universalcranes.com/draft if it helps understand what I mean. I know it's something fairly simple that I've come across before, but I can't for the life of me remember how to fix it.
Any help would be greatly appreciated
ForestTech