If you are seeing this message, it is possible the page did not load properly. Please hit reload/refresh on your browser.
If you still see this message, you probably do not have a browser that supports
web standards, although its content is accessible to any browser or Internet device.
Posted: 11/12/01 11:05 am Putting a border or double border around your forum
The way you do this is to simply put your forum in a table.
You'll need to put some code into your Custom HTML area, and it will override the banners that you have set in the images tab for each forum. You can then put the banners into the forum introduction area using html, unless you use the same banner in each forum, in which case you can just put it at the end of the custom header code below using <img src="full url">
If you still want to do this, then put this in the custom header (3rd box): <div align="center">
<table width="95%">
<tr>
<td align="center" style="border: 2px solid #XXXXXX">
And this into the custom footer (4th box): </td>
</tr>
</table>
</div>
The width set above is 95%, but you can change that to anything you like. If you make it in pixels rather than percentages, then your forum will also be a fixed size. The maximum width you should go is 780px, which is a good size for 800 x 600 browsers. You can make it smaller, of course.
Posted: 11/27/01 8:21 am For a double border:
Put this into the third box: <div align="center">
<table width="95%" style="border: 2px solid #000000">
<tr>
<td align="center" style="border: 4px solid #CC0000">
And this into the fourth box: </td>
</tr>
</table>
</div>
Change the colours of both the border and background colour to those you select. If you don't want the background of the tables to be a colour, simply delete background-color: #XXXXXX; from both
cellpadding="2" is the space between the borders. Adjust it as you like, and change the border width from 1px to your own desired widths.
Posted: 8/29/02 2:18 am Using different border styles
You can also use other border styles - a good one to try is dotted. It looks best as 1px, but you can experiment. Just substitue solid for dotted.
Older systems won't see the dotted border.
Put this into the third box: <div align="center">
<table width="95%" style="border: 1px dotted #000000" cellpadding="4">
<tr>
<td align="center" style="border: 4px dotted #CC0000">
And this into the fourth box: </td>
</tr>
</table>
</div>
Posted: 9/27/02 3:16 am using 'layered' tables to build up borders
You might want to use images or patterns as large borders - in this case you need to nest tables into each other with thick cellpadding.
<table style="width:100%">
<tr>
<td style="background-image: url(full url); background-color: #660000; padding: 20px">
<table style="width:100%">
<tr>
<td style="background-image: url(full url2); background-color: #ff0000; padding: 20px">
<table style="width:100%">
<tr>
<td style="background-image: url(full ur3); background-color: #cc0000; padding: 10px; text-align:center">
And this is where your forum goes.
</td></tr></table>
</td></tr></table>
</td></tr></table>
Posted: 11/27/05 4:12 pm forum specific table borders or backgrounds
1st you need a copy of the EZURL script.
Note: Only one copy of this script should be installed within the custom html area of your board.
Now, you need two lots of code, the first is some CSS (Cascading Style Sheet) code, the second is Javascript.
The CSS code is basically telling the visitors browser NOT to display any section of html that has the ID of triplebackg (this gets applied to all pages.
Unless...
The Javascript kicks in and the forum number (frm2) matches the forum the visitor is viewing and the script 'writes' more CSS to the browser and this then forces the browser to display the section of html that has the ID of triplebackg
Edit the 'frm2' within the script below to match the relevant forum you wish to use the borders/backgrond in.
If you want to use the code in more than one forum, just add more case statement sections of code.
Custom HTML Area 1st Text Box from the top
<style> #triplebackg {
display: none;
}
</style>
<script type="text/javascript">
/* FORUM-SPECIFIC HTML */
switch (ezForum) {
case "frm2":