Print Page | Close Window

customizing the forum

Printed From: Web Wiz Forums
Category: Web Wiz Web App Support Forums
Forum Name: Web Wiz Forums
Forum Description: Support forum for Web Wiz Forums application.
URL: https://forums.webwiz.net/forum_posts.asp?TID=7103
Printed Date: 17 April 2026 at 11:28am
Software Version: Web Wiz Forums 12.08 - https://www.webwizforums.com


Topic: customizing the forum
Posted By: daviduk
Subject: customizing the forum
Date Posted: 08 November 2003 at 2:51pm

hi there.

I have read the files on customizing. i have put my picture in and the menu links default to the middle but i want know how to place these where i want them. what code controils where they are placed?

In the notes i dont understand how i can put a column down the side when you start the coding in the header and finish it in the footer!

if that makes sense and you can help it would be appreciated.

dave




Replies:
Posted By: WebWiz-Bruce
Date Posted: 09 November 2003 at 2:34am
Use tables.

Start the table in the header:-

<table>
 <tr>
  <td>

Then close the tables in the footer:-

   </td>
  </tr>
</table>

The simplest way to do this is to create a template for your page leaving a table free to place the forum in.

The simply everyting before where you wish the forum to be shown place in the header and everything that is left place in the footer.


-------------
https://www.webwiz.net/web-wiz-forums/forum-hosting.htm" rel="nofollow - Web Wiz Forums Hosting
https://www.webwiz.net/web-hosting/windows-web-hosting.htm" rel="nofollow - ASP.NET Web Hosting


Posted By: uvena.com
Date Posted: 09 November 2003 at 2:28pm

Hopefyll you're talking about the alignment of the navigation at the top of the forum.

Dont forget to use BR tags before and after the table.. if you don't it can cause placement to be incorrect in IE6 (I dont use other browsers).  I recently created my own menu and ran into this problem..  when I didn't use the br tags it would cause errors in the way the hyper links were working, cause the link trail to be over the top of the nav.. etc. 

So I suggest exactly what Borg said, except place <BR> above and below the table.



Posted By: wistex
Date Posted: 11 November 2003 at 1:52pm

To add a colum down the side you would need to add another column to the table Borg created above.

Code in the Header:

<table width="100%">
 <tr>
  <td width="150">
   Navigation Menu
   Place html for navigation here!
  </td>
 </tr>

 <tr>
  <td>

The width="150" part specifies how many pixels wide you want the navigation to be.  The width="100%" part specifies that you want the table to use all the screen's real estate.

Code in footer:

   </td>
  </tr>
</table>

The above code would provide the basic shell for a navigation bar on the left hand side of the screen, with the forum appearing to the right of the navigation.

If you wanted a right hand column, add the code in red to the footer similar to how it is added to the header.

There are other attributes you can add.  If you need more information, you can do research on web about creating html tables.



-------------
http://www.wistex.com" rel="nofollow - WisTex Solutions
http://www.caribbeanchoice.com/forums" rel="nofollow - CaribbeanChoice Forums


Posted By: daviduk
Date Posted: 12 November 2003 at 5:44am

Excellent, all the above code works great- thankyou all for help in this. it looks just the way i want it to , I have now swapped from the layout to the .css customizing- it's fun. I am experimenting with the .css as never done this before, its going well.

Tahnks for your help again!

David.



Posted By: Lucent
Date Posted: 26 May 2004 at 1:41pm

Hi, I tried to use the code here, but my form seems to be pushed down to the bottom. Did I do something wrong?!

Here are the code I have in my header and footer, and I also post a image of my what I see on my form.

Here is the code I have in my header.asp
----------------------------------------
<table width="100%">
 <tr><table width="750%" border="0" cellspacing="0" cellpadding="0">
  <tr>
      <td height="200" bgcolor="#99FFFF">&nbsp;</td>
  </tr>
</table>

  <td width="150">
   <table width="150" border="0" cellspacing="0" cellpadding="0">
  <tr>
        <td height="300" bgcolor="#99CCFF">&nbsp; </td>
  </tr>
</table>
  </td>
</tr>
<tr>
  <td>
-----------------------------------------

footer.asp
-----------------------------------------
</td>
  </tr>
</table>
------------------------------------------

 

 



Posted By: numanme
Date Posted: 19 June 2005 at 9:36pm

Anyone got a working example of the footer and header



Posted By: dpyers
Date Posted: 20 June 2005 at 11:01am
http://forums.webwiz.net/forum_posts.asp?TID=13814




-------------

Lead me not into temptation... I know the short cut, follow me.


Posted By: numanme
Date Posted: 20 June 2005 at 7:53pm
Wink thanks dpyers


Posted By: Skyforum
Date Posted: 23 September 2005 at 7:35pm
FINALLY! Something I understand. I LOVE tables.....

You can wrap your entire forum on all 4 sides with tables and size them any way you want. There are a couple basic rules to remember.
  • You can't build this on the floor so you need to put it up on the <table>
  • Rows are = to <tr> and they go from side to side
  • Columns are = to <td> and they go from top to bottom
  • You need to / (close) each table, row or column when your done.
It's really that simple. if you want to put a nav menu on the left side of your forum, you need to build a <table> with 1 row and 2 columns.
<table>
  <tr>  <---- this is your row
    <td>   <-----this is your first column (menu here)
    </td>  <-----this is you closing your first column
    <td>   <-----this is your second column (forum goes here)
    </td>  <-----this is you closing your second column

  </tr>   <-----this is you closing your 1st row
</table>  <--- and then closing your table



Here's my header.asp & footer.asp. I placed tables on the left, right and the top of the forum.

Quote
Begin Header.asp
<table Width="98%">
<tr width="100%">
      <td align="center" colspan="3"> (row will span 3 columns)
Put the upper menu bar here. A single row, 1 column
</td>

</tr>
<tr width="100%"> Beginning of second row
<td valign="top" Width="15%">
Left Side Nav here. The first of 3 columns in this row
</td>
<td>

------------------------------------------------------
Ok, now leave this are blank, this is where the forum itself will be placed.
This is the end of the header and the beginning of the footer
------------------------------------------------------
Begin Footer.asp
</td>
      <td valign="top" width="10%">
Right Margin, the third column is here
</td>

   </tr> Now we close the row
</table> and close the table
<!-- footer -->
</body>
</html>




Now, all you have to do is decide how big you want each column. Look at my code and you'll see how I did it. it's realy simple... If I added another row, I could place even more page on the bottom effectively wrapping the entire thing. Don't forget to close your tags. Some browsers will work just fine without closing them, but others (not ie) will freak if you don't close em up.



Print Page | Close Window

Forum Software by Web Wiz Forums® version 12.08 - https://www.webwizforums.com
Copyright ©2001-2026 Web Wiz Ltd. - https://www.webwiz.net