<?xml version="1.0" encoding="utf-8" ?>
<?xml-stylesheet type="text/xsl" href="RSS_xslt_style.asp" version="1.0" ?>
<rss version="2.0" xmlns:WebWizForums="https://syndication.webwiz.net/rss_namespace/">
 <channel>
  <title>Web Wiz Support and Community Forums : customizing the forum</title>
  <link>https://forums.webwiz.net/</link>
  <description><![CDATA[This is an XML content feed of; Web Wiz Support and Community Forums : Web Wiz Forums : customizing the forum]]></description>
  <copyright>Copyright (c) 2006-2013 Web Wiz Forums - All Rights Reserved.</copyright>
  <pubDate>Fri, 17 Apr 2026 16:17:27 +0000</pubDate>
  <lastBuildDate>Fri, 23 Sep 2005 19:35:18 +0000</lastBuildDate>
  <docs>http://blogs.law.harvard.edu/tech/rss</docs>
  <generator>Web Wiz Forums 12.08</generator>
  <ttl>360</ttl>
  <WebWizForums:feedURL>https://forums.webwiz.net/RSS_post_feed.asp?TID=7103</WebWizForums:feedURL>
  <image>
   <title><![CDATA[Web Wiz Support and Community Forums]]></title>
   <url>https://forums.webwiz.net/forum_images/web_wiz_forums.png</url>
   <link>https://forums.webwiz.net/</link>
  </image>
  <item>
   <title><![CDATA[customizing the forum :     FINALLY! Something I understand....]]></title>
   <link>https://forums.webwiz.net/customizing-the-forum_topic7103_post91003.html#91003</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://forums.webwiz.net/member_profile.asp?PF=21547">Skyforum</a><br /><strong>Subject:</strong> 7103<br /><strong>Posted:</strong> 23&nbsp;September&nbsp;2005 at 7:35pm<br /><br />FINALLY! Something I understand. I LOVE tables.....<br><br>You can wrap your entire forum on all 4 sides with tables and size themany way you want. There are a couple basic rules to remember.<br><ul>  <li>You can't build this on the floor so you need to put it up on the &lt;table&gt;</li></ul><ul>  <li>Rows are = to &lt;tr&gt; and they go from side to side<br>  </li></ul><ul>  <li>Columns are = to &lt;td&gt; and they go from top to bottom</li>  <li>You need to / (close) each table, row or column when your done.<br>  </li></ul>It's really that simple. if you want to put a nav menu on the left sideof your forum, you need to build a &lt;table&gt; with 1 row and 2columns.<br><font color="#ff00ff">&lt;table&gt;</font><br>&nbsp; <font color="#0000ff">&lt;tr&gt;&nbsp; &lt;---- this is your row</font><br>&nbsp;&nbsp;&nbsp; <font color="#ff0000">&lt;td&gt;&nbsp;&nbsp; &lt;-----this is your first column (menu here)<br>&nbsp;&nbsp;&nbsp; &lt;/td&gt;&nbsp; &lt;-----this is you closing your first column<br>&nbsp;&nbsp;&nbsp; &lt;td&gt;&nbsp;&nbsp; &lt;-----this is your second column (forum goes here)<br>&nbsp;&nbsp;&nbsp; &lt;/td&gt;&nbsp; &lt;-----this is you closing your second column</font><br>&nbsp;<font color="#0000ff"> &lt;/tr&gt;&nbsp;&nbsp; &lt;-----this is you closing your 1st row</font><br><font color="#ff00ff">&lt;/table&gt;&nbsp; &lt;--- and then closing your table</font><br><br><br><br>Here's my header.asp &amp; footer.asp. I placed tables on the left, right and the top of the forum.<br><br><table width="99%"><tr><td class="BBquote"><img src="forum_images/quote_box.png" title="Quote" alt="Quote" style="vertical-align: text-bottom;" /> <br>Begin Header.asp<br><pre id="line1"><font color="#ff00ff">&lt;<span ="start-tag">table</span><span ="attribute-name"> Width</span>=<span ="attribute-value">"98%"</span>&gt;</font><br>   <font color="#0000ff">&lt;<span ="start-tag">tr</span><span ="attribute-name"> width</span>=<span ="attribute-value">"100%"</span>&gt;</font><br></pre><pre id="line17">      <font color="#ff0000">&lt;<span ="start-tag">td</span><span ="attribute-name"> align</span>=<span ="attribute-value">"center" </span><span ="attribute-name">colspan</span>=<span ="attribute-value">"3"</span>&gt; (row will span 3 columns)<br>      Put the upper menu bar here. A single row, 1 column<br>      &lt;/<span ="end-tag">td</span>&gt;</font><br>   <font color="#0000ff">&lt;/<span ="end-tag">tr</span>&gt;</font><br>   <font color="#0000ff">&lt;<span ="start-tag">tr</span><span ="attribute-name"> width</span>=<span ="attribute-value">"100%"</span>&gt; Beginning of second row</font><br>      <font color="#ff0000">&lt;<span ="start-tag">td</span><span ="attribute-name"> valign</span>=<span ="attribute-value">"top" </span><span ="attribute-name">Width</span>=<span ="attribute-value">"15%"</span>&gt;<br>      Left Side Nav here. The first of 3 columns in this row<br>      &lt;/<span ="end-tag">td</span>&gt;<br>      &lt;<span ="start-tag">td</span>&gt;</font><br>------------------------------------------------------<br>Ok, now leave this are blank, this is where the forum itself will be placed. <br>This is the end of the header and the beginning of the footer<br>------------------------------------------------------<br> Begin Footer.asp<br>      <font color="#ff0000">&lt;/<span ="end-tag">td</span>&gt;<br></font></pre><pre id="line482"><font color="#ff0000">      &lt;<span ="start-tag">td</span><span ="attribute-name"> valign</span>=<span ="attribute-value">"top" </span><span ="attribute-name">width</span>=<span ="attribute-value">"10%"</span>&gt;<br>      Right Margin, the third column is here<br>      &lt;/<span ="end-tag">td</span>&gt;</font><br></pre><pre id="line488">   <font color="#0000ff">&lt;/<span ="end-tag">tr</span>&gt; Now we close the row</font><br><font color="#ff00ff">&lt;/<span ="end-tag">table</span>&gt; and close the table<br></font><span ="comment">&lt;!-- footer --&gt;</span><br>&lt;/<span ="end-tag">body</span>&gt;<br>&lt;/<span ="end-tag">html</span>&gt;</pre><br><br></td></tr></table><br><br>Now, all you have to do is decide how big you want each column. Look atmy code and you'll see how I did it. it's realy simple... If I addedanother row, I could place even more page on the bottom effectivelywrapping the entire thing. Don't forget to close your tags. Somebrowsers will work just fine without closing them, but others (not ie)will freak if you don't close em up.<br><span style="font-size:10px"><br /><br />Edited by Skyforum - 23&nbsp;September&nbsp;2005 at 10:16pm</span>]]>
   </description>
   <pubDate>Fri, 23 Sep 2005 19:35:18 +0000</pubDate>
   <guid isPermaLink="true">https://forums.webwiz.net/customizing-the-forum_topic7103_post91003.html#91003</guid>
  </item> 
  <item>
   <title><![CDATA[customizing the forum : thanks dpyers ]]></title>
   <link>https://forums.webwiz.net/customizing-the-forum_topic7103_post85453.html#85453</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://forums.webwiz.net/member_profile.asp?PF=10143">numanme</a><br /><strong>Subject:</strong> 7103<br /><strong>Posted:</strong> 20&nbsp;June&nbsp;2005 at 7:53pm<br /><br /><IMG height=17 alt=Wink src="http://forums.webwiz.net/smileys/smiley2.gif" width=17 align=absMiddle border="0">&nbsp;thanks <SPAN =bold>dpyers</SPAN><BR>]]>
   </description>
   <pubDate>Mon, 20 Jun 2005 19:53:26 +0000</pubDate>
   <guid isPermaLink="true">https://forums.webwiz.net/customizing-the-forum_topic7103_post85453.html#85453</guid>
  </item> 
  <item>
   <title><![CDATA[customizing the forum : http://forums.webwiz.net/forum_posts.asp?TID=13814    ...]]></title>
   <link>https://forums.webwiz.net/customizing-the-forum_topic7103_post85437.html#85437</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://forums.webwiz.net/member_profile.asp?PF=9949">dpyers</a><br /><strong>Subject:</strong> 7103<br /><strong>Posted:</strong> 20&nbsp;June&nbsp;2005 at 11:01am<br /><br />http://forums.webwiz.net/forum_posts.asp?TID=13814<br><br><br>]]>
   </description>
   <pubDate>Mon, 20 Jun 2005 11:01:37 +0000</pubDate>
   <guid isPermaLink="true">https://forums.webwiz.net/customizing-the-forum_topic7103_post85437.html#85437</guid>
  </item> 
  <item>
   <title><![CDATA[customizing the forum : Anyone got a working example of...]]></title>
   <link>https://forums.webwiz.net/customizing-the-forum_topic7103_post85383.html#85383</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://forums.webwiz.net/member_profile.asp?PF=10143">numanme</a><br /><strong>Subject:</strong> 7103<br /><strong>Posted:</strong> 19&nbsp;June&nbsp;2005 at 9:36pm<br /><br /><P =Ms&#111;normal style="MARGIN: 0cm 0cm 0pt"><FONT face="Times New Roman" size=3>Anyone got a working example of the footer and header </FONT></P>]]>
   </description>
   <pubDate>Sun, 19 Jun 2005 21:36:25 +0000</pubDate>
   <guid isPermaLink="true">https://forums.webwiz.net/customizing-the-forum_topic7103_post85383.html#85383</guid>
  </item> 
  <item>
   <title><![CDATA[customizing the forum : Hi, I tried to use the code here,...]]></title>
   <link>https://forums.webwiz.net/customizing-the-forum_topic7103_post58100.html#58100</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://forums.webwiz.net/member_profile.asp?PF=10476">Lucent</a><br /><strong>Subject:</strong> 7103<br /><strong>Posted:</strong> 26&nbsp;May&nbsp;2004 at 1:41pm<br /><br /><P><IMG src="http://www.empowergroupinc.com/1.jpg" border="0">Hi, I tried to use the code here, but my form seems to be pushed down to the bottom. Did I do something wrong?! </P><P>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.</P><P>Here is the code I have in my header.asp<BR>----------------------------------------<BR>&lt;table width="100%"&gt;<BR>&nbsp;&lt;tr&gt;&lt;table width="750%" border="0" cellspacing="0" cellpadding="0"&gt;<BR>&nbsp; &lt;tr&gt;<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;td height="200" bgcolor="#99FFFF"&gt;&amp;nbsp;&lt;/td&gt;<BR>&nbsp; &lt;/tr&gt;<BR>&lt;/table&gt;</P><P>&nbsp; &lt;td width="150"&gt;<BR>&nbsp;&nbsp; &lt;table width="150" border="0" cellspacing="0" cellpadding="0"&gt;<BR>&nbsp; &lt;tr&gt;<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;td height="300" bgcolor="#99CCFF"&gt;&amp;nbsp; &lt;/td&gt;<BR>&nbsp; &lt;/tr&gt;<BR>&lt;/table&gt;<BR>&nbsp; &lt;/td&gt;<BR>&lt;/tr&gt;<BR>&lt;tr&gt;<BR>&nbsp; &lt;td&gt;<BR>-----------------------------------------</P><P>footer.asp<BR>-----------------------------------------<BR>&lt;/td&gt;<BR>&nbsp; &lt;/tr&gt;<BR>&lt;/table&gt;<BR>------------------------------------------</P><P>&nbsp;</P><P>&nbsp;</P>]]>
   </description>
   <pubDate>Wed, 26 May 2004 13:41:26 +0000</pubDate>
   <guid isPermaLink="true">https://forums.webwiz.net/customizing-the-forum_topic7103_post58100.html#58100</guid>
  </item> 
  <item>
   <title><![CDATA[customizing the forum : Excellent, all the above code...]]></title>
   <link>https://forums.webwiz.net/customizing-the-forum_topic7103_post35905.html#35905</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://forums.webwiz.net/member_profile.asp?PF=13423">daviduk</a><br /><strong>Subject:</strong> 7103<br /><strong>Posted:</strong> 12&nbsp;November&nbsp;2003 at 5:44am<br /><br /><P>Excellent, all the above code works great- thankyou all for help in this. it looks just the way i want it to <IMG src="https://forums.webwiz.net/smileys/smiley17.gif" border="0">, 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.</P><P>Tahnks for your help again!</P><P>David.</P>]]>
   </description>
   <pubDate>Wed, 12 Nov 2003 05:44:57 +0000</pubDate>
   <guid isPermaLink="true">https://forums.webwiz.net/customizing-the-forum_topic7103_post35905.html#35905</guid>
  </item> 
  <item>
   <title><![CDATA[customizing the forum : To add a colum down the side you...]]></title>
   <link>https://forums.webwiz.net/customizing-the-forum_topic7103_post35841.html#35841</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://forums.webwiz.net/member_profile.asp?PF=12115">wistex</a><br /><strong>Subject:</strong> 7103<br /><strong>Posted:</strong> 11&nbsp;November&nbsp;2003 at 1:52pm<br /><br /><P>To add a colum down the side you would need to add another column to the table Borg created above.</P><P>Code in the Header:</P><P><FONT color=#006600>&lt;table width="100%"&gt;<BR><FONT color=#ff0000>&nbsp;&lt;tr&gt;<BR>&nbsp; &lt;td width="150"&gt;<BR>&nbsp;&nbsp; Navigation Menu<BR>&nbsp;&nbsp; Place html for navigation here!<BR>&nbsp; &lt;/td&gt;<BR>&nbsp;&lt;/tr&gt;</FONT><BR>&nbsp;&lt;tr&gt;<BR>&nbsp; &lt;td&gt;</FONT></P><P>The width="150" part specifies how many pixels wide you want the navigation to be.&nbsp; The width="100%" part specifies that you want the table to use all the screen's real estate.</P><P>Code in footer:</P><P><FONT color=#006600>&nbsp;&nbsp; &lt;/td&gt;<BR>&nbsp; &lt;/tr&gt;<BR>&lt;/table&gt;</FONT></P><P>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.</P><P>If you wanted a right hand column, add the code in red to the footer similar to how it is added to the header.</P><P>There are other attributes you can add.&nbsp; If you need more information, you can do research on web about creating html tables.</P>]]>
   </description>
   <pubDate>Tue, 11 Nov 2003 13:52:55 +0000</pubDate>
   <guid isPermaLink="true">https://forums.webwiz.net/customizing-the-forum_topic7103_post35841.html#35841</guid>
  </item> 
  <item>
   <title><![CDATA[customizing the forum : Hopefyll you&amp;#039;re talking about...]]></title>
   <link>https://forums.webwiz.net/customizing-the-forum_topic7103_post35544.html#35544</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://forums.webwiz.net/member_profile.asp?PF=12355">uvena.com</a><br /><strong>Subject:</strong> 7103<br /><strong>Posted:</strong> 09&nbsp;November&nbsp;2003 at 2:28pm<br /><br /><P>Hopefyll you're talking about the alignment of the navigation at the top of the forum.</P><P>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).&nbsp; I recently created my own menu and ran into this problem..&nbsp; 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.&nbsp; </P><P>So I suggest exactly what Borg said, except place &lt;BR&gt; above and below the table.</P>]]>
   </description>
   <pubDate>Sun, 09 Nov 2003 14:28:57 +0000</pubDate>
   <guid isPermaLink="true">https://forums.webwiz.net/customizing-the-forum_topic7103_post35544.html#35544</guid>
  </item> 
  <item>
   <title><![CDATA[customizing the forum : Use tables.  Start the table...]]></title>
   <link>https://forums.webwiz.net/customizing-the-forum_topic7103_post35467.html#35467</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://forums.webwiz.net/member_profile.asp?PF=1">WebWiz-Bruce</a><br /><strong>Subject:</strong> 7103<br /><strong>Posted:</strong> 09&nbsp;November&nbsp;2003 at 2:34am<br /><br />Use tables.<br><br>Start the table in the header:-<br><br>&lt;table&gt;<br>&nbsp;&lt;tr&gt;<br>&nbsp; &lt;td&gt;<br><br>Then close the tables in the footer:-<br><br>&nbsp;&nbsp; &lt;/td&gt;<br>&nbsp; &lt;/tr&gt;<br>&lt;/table&gt;<br><br>The simplest way to do this is to create a template for your page leaving a table free to place the forum in.<br><br>The simply everyting before where you wish the forum to be shown placein the header and everything that is left place in the footer.<br>]]>
   </description>
   <pubDate>Sun, 09 Nov 2003 02:34:04 +0000</pubDate>
   <guid isPermaLink="true">https://forums.webwiz.net/customizing-the-forum_topic7103_post35467.html#35467</guid>
  </item> 
  <item>
   <title><![CDATA[customizing the forum : hi there. I have read the files...]]></title>
   <link>https://forums.webwiz.net/customizing-the-forum_topic7103_post35422.html#35422</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://forums.webwiz.net/member_profile.asp?PF=13423">daviduk</a><br /><strong>Subject:</strong> 7103<br /><strong>Posted:</strong> 08&nbsp;November&nbsp;2003 at 2:51pm<br /><br /><P>hi there.</P><P>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?</P><P>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!</P><P>if that makes sense and you can help it would be appreciated.</P><P>dave</P>]]>
   </description>
   <pubDate>Sat, 08 Nov 2003 14:51:01 +0000</pubDate>
   <guid isPermaLink="true">https://forums.webwiz.net/customizing-the-forum_topic7103_post35422.html#35422</guid>
  </item> 
 </channel>
</rss>