I can't be exact, but I've seen a lot of hints in the source code (not PHP source, HTML source) of PHPBB that demonstrate they at least know HTML. PHPBB is also the forum software used at AccessifyForum.com which is the forum for the Accessify site.
Visit Slightly Remarkable to see my portfolio, resumé, and consulting rates.
We can only hope for a completley CSS based forum, no tables and 100% accessable.
Disclaimer. (1) Whilst I will help you sometimes, if I feel like it, and my advice in relation to your actual question will be of good quality: my posts are to be taken with a pinch of salt. I will be sarcastic, deploy irony and include obscure cultural references for my own amusement without warning.
(2) You will gain nothing from complaining, and if you try to argue with me then you will not win. No matter how noble your battle seems, I am still better than you, don't be an hero.
Yes, actually, Forums are a great example of tabular data used on the web. They are most appropriately marked up as tables for the different forums and threads.
Forums would be the best example of a place where CSS and tables will work beautfully together. Imagine how much repetitive presentational markup there is in forums- that could all be replaced with a few classes and IDs. All the table markup would be the caption (that thread's name) the colgroup (info and post), then the tbody, which would be like
Code:
<tr id="post00001"><td><h4>Poster</h4>
<img src="/avatar.php?user=poster" alt="" height="50" width="50" />
<dl>
<dt>Registered</dt><dd>November 2004</dd>
<dt>Location</dt><dd>Timbuctu</dd>
<dt>Post count</dt><dd>8167</dd>
</dl>
Posted at 11-21-04, 3:06pm</td>
<td>This is my post, I like <em>cheese</em>, and <em class="blu">the colour blue</em>.<hr />»
- Poster, <a href="http://ww.example.com/">my site</a>.
<div> <ul class="actions">
<li><img src="/forum/images/off.gif" alt="Poster is offline" /> |
<li><a href="member.php?act=getinfo&user=poster"><img src="/forum/images/profile.gif"»
alt="Click Here to See the Profile for the tree" /></a></li>
<li><a href="private.php?act=newmessage&user=poster"><img src="/forum/images/sendpm.gif"»
alt="Click here to Send the tree a Private Message" /></a></li>
<li><a href="http://www.example.com/"><img src="/forum/images/home.gif"»
alt="Visit poster's homepage!" border="0"></a></li>
<li><a href="search.php?act=finduser&user=poster"><img src="/forum/images/find.gif"»
alt="Find more posts by Poster></a></li>
<li><a href="member2.php?act=addlist&userlist=buddy&user=poster">»
<img src="/forum/images/buddy.gif" alt="Add poster to your buddy list"></a></li>
</ul>
<ul class="reply">
<li><a href="editpost.php?act=editpost&postid=277769"><img src="/forum/images/edit.gif"»
alt="Edit/Delete Message"></a></li>
<li><a href="newreply.php?act=newreply&postid=277769"><img src="/forum/images/quote.gif"»
alt="Reply w/Quote"></a></li>
</ul></div></td></tr>
<tr>
Instead of... well, view source on these forums.
Last edited by Ben Rogers; 11-21-2004 at 02:20 PM.
Bookmarks