http://deluxeanimeforum.vforums.co.uk/
What i'm trying to do is make a side table for both sides that will fit in the black area around my forum perfectly, as well as it will scroll. I have the tables set to the right height to fit in the black area, but i cant get them to move back into the black area, they want to push against the forum, also i took a snip-it from one of wright's codes for the hover/scroll effect but for some reason it keeps trying to hover all my boards as well. Can someone help me finish the code?
headerCode:
- <style>
- body {
- margin-top: 20px;
- }
- </style>
- <table width="100%" border="0" style="position: fixed; left: 0px; top: 4px">
- <tr>
- <td align="center">
- <table width="92%" cellpadding="0" cellspacing="1" align="center">
- <tr>
- <td width="20%" vAlign="top" align="center">
- <br />
- <br />
- <table class="border" width="95%" cellpadding="4" cellspacing="1">
- <tr>
- <td class="title2" align="center" width="100%">
- <font size=2>Left Menu</font>
- </td>
- </tr>
- <tr>
- <td class="window1" align="center">
- <font size=2>Left Top Box Content</font>
- </td>
- </tr>
- <tr>
- <td class="window1" align="center">
- <font size=2>Left Middle Box Content</font>
- </td>
- </tr>
- <tr>
- <td class="window1" align="center">
- <font size=2>Left Bottom Box Content</font>
- </td>
- </tr>
- </table>
- </td>
- <td width="60%" align="center" vAlign="top">
footerCode:
- </td>
- <td width="20%" vAlign="top" align="center">
- <br />
- <br />
- <table class="border" width="95%" cellpadding="4" cellspacing="1">
- <tr>
- <td class="title2" align="center" width="100%">
- <font size=2>Right Menu</font>
- </td>
- </tr>
- <tr>
- <td class="window1" align="center">
- <font size=2>Right Top Box Content</font>
- </td>
- </tr>
- <tr>
- <td class="window1" align="center">
- <font size=2>Right Middle Box Content</font>
- </td>
- </tr>
- <tr>
- <td class="window1" align="center">
- <font size=2>Right Bottom Box Content</font>
- </td>
- </tr>
- </table>
- </td>
- </tr>
- </table>
- </td>
- </tr>
- </table>
Unfortunately the way you have done it, it wont work. I'll have to take a look at it later for you and code it from scratch!
ah ok, hey i gave it a try at least
bump
bump
put this: position: fixed; left: 0px; top: 4px
in both of these near the start of both parts: <table class="border" width="95%" cellpadding="4" cellspacing="1">
I'm sure that'll fix it... Just guessing!
so like this:
head:Code:
- <style>
- body {
- margin-top: 20px;
- }
- </style>
- <table width="100%" border="0" style="position: fixed; left: 0px; top: 4px">
- <tr>
- <td align="center">
- <table width="92%" cellpadding="0" cellspacing="1" align="center">
- <tr>
- <td width="20%" vAlign="top" align="center">
- <br />
- <br />
- <table class="border" width="95%" cellpadding="4" cellspacing="1">
- <tr>
- <td class="title2" align="center" width="100%">
- <font size=2>Left Menu</font>
- </td>
- </tr>
- <tr>
- <td class="window1" align="center">
- <font size=2>Left Top Box Content</font>
- </td>
- </tr>
- <tr>
- <td class="window1" align="center">
- <font size=2>Left Middle Box Content</font>
- </td>
- </tr>
- <tr>
- <td class="window1" align="center">
- <font size=2>Left Bottom Box Content</font>
- </td>
- </tr>
- </table>
- </td>
- <td width="60%" align="center" vAlign="top">
foot:
Code:
- </td>
- <td width="20%" vAlign="top" align="center">
- <br />
- <br />
- <table class="border" width="95%" cellpadding="4" cellspacing="1" style="position: fixed; left: 0px; top: 4px">
- <tr>
- <td class="title2" align="center" width="100%">
- <font size=2>Right Menu</font>
- </td>
- </tr>
- <tr>
- <td class="window1" align="center">
- <font size=2>Right Top Box Content</font>
- </td>
- </tr>
- <tr>
- <td class="window1" align="center">
- <font size=2>Right Middle Box Content</font>
- </td>
- </tr>
- <tr>
- <td class="window1" align="center">
- <font size=2>Right Bottom Box Content</font>
- </td>
- </tr>
- </table>
- </td>
- </tr>
- </table>
- </td>
- </tr>
- </table>
if so it doesnt work they all just go to the top..
Try this:
Global Header
<style>
body {
margin-top: 20px;
}
</style>
<table class="border" width="20%" cellpadding="4" cellspacing="1" style="position: fixed; left: 0px; top: 4px">
<tr>
<td class="title2" align="center" width="100%">
<font size=2>Left Menu</font>
</td>
</tr>
<tr>
<td class="window1" align="center">
<font size=2>Left Top Box Content</font>
</td>
</tr>
<tr>
<td class="window1" align="center">
<font size=2>Left Middle Box Content</font>
</td>
</tr>
<tr>
<td class="window1" align="center">
<font size=2>Left Bottom Box Content</font>
</td>
</tr>
</table>
Global Footer
<table class="border" width="20%" cellpadding="4" cellspacing="1" style="position: fixed; right: 0px; top: 4px">
<tr>
<td class="title2" align="center" width="100%">
<font size=2>Right Menu</font>
</td>
</tr>
<tr>
<td class="window1" align="center">
<font size=2>Right Top Box Content</font>
</td>
</tr>
<tr>
<td class="window1" align="center">
<font size=2>Right Middle Box Content</font>
</td>
</tr>
<tr>
<td class="window1" align="center">
<font size=2>Right Bottom Box Content</font>
</td>
</tr>
</table>
Resize your forum using the 'resize' in the Modify Skins area.
ok ty that works great
Welcome!