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: 6/11/03 1:23 pm all about sidebars
A sidebar is the general term for navigation, links or text that sits on one or both sides of your forum. There are many different ways that you can make a sidebar, and so there is more than one method outlined in these FAQs. Look for something that suits your needs and expertise in the following:
Basic sidebar templates - these sidebars give you the basic code in which to place your sidebar code. They do not give you links and text to edit. They may appear the most simple, but you have to do the coding to achieve a full sidebar.
1. basic html left sidebar
2. basic right sidebar
3. basic two sided sidebar
4. basic left sidebar with header
5. basic right sidebar with header
6. basic two sided sidebar with header
CSS based sidebars - this sidebar (also known as the ezdesign sidebar) is fully editable, and uses css for all styling (fonts, colours, bk images). Premade skins are available for this sidebar, and on a Gold board it can be turned on and off for different forums.
7. the ezdesign sidebar
Extra goodies -
8. sidebar on main page only
9. sidebar that doesn't override forum banners (see below for these sidebars)Edited by: atlass at: 6/11/03 2:24 pm
Posted: 6/11/03 2:03 pm 7. the ezdesign sidebar
The following sidebar code is slightly different to previous ones in a stylist way - the html that goes in boxes 3 and 4 on the custom html page contain NO colours, typeface or background image information. In fact, ALL stylistic editing is done via css (ie, a skin) which goes in box 1 on the custom html page.
Why this is better and easier than using html only, or html and inline css is because it makes changing colours, borders and typefaces in your sidebar so much easier. You don't have to go near your html code in box 3 or 4 again after you first create it, so you're not going to accidently mess up your tables just by trying to edit a background colour.
The instructions and code for this sidebar are found HERE.
Or use the sidebar generator, an online tool to automatically create sidebars, found HERE. Edited by: atlass at: 6/25/04 2:11 pm
Posted: 6/11/03 2:17 pm 8. sidebar on main page only
Actually, this involves javascript, but since most people look for sidebars under html I am putting it here.
You can use the following code to have your sidebar on your main page ONLY.
Note - if you are using a skinnable sidebar/ezdesign sidebar - then see THIS FAQ instead.
<div class="sidebar">
<table style="width: 150px; border: 1px black solid">
<tr>
<td align="center"> <h4>MY SIDEBAR</h4>
<br><br>
put any text or links you like in here<br><br>
<a href="#">a link</a><br>
<a href="#">another link</a><br>
<a href="#">a further link</a><br>
<a href="#">a farther link</a><br>
<a href="#">its a link</a><br>
</td>
</tr>
</table>
</div>
(Obviously edit the red bits!)
Edited by: Nutrocker at: 9/23/04 3:12 pm
Posted: 6/11/03 2:21 pm 9. a sidebar that doesn't override the banners
For a sidebar that doesn't override your forum banners, you can use the following code:
<tr>
<td class="sidebar" valign="top" align="center">
Put any text you like here, plus links if you want.
</td>
</tr>
</table> </div>
You can replace the entire code that is dark red with your own sidebar, or use section c1 from the ezdesign sidebar. The default skin (css) from the ezdesign sidebar can also be used.