[ SPEL ] Wat zit er onder CTRL+V?
Forumregels
Dit forum is voor alle zinnige gesprekken buiten phpBB om. Discussies en gesprekken over interessante onderwerpen.
Een nieuw onderwerp moet..:
Dit forum is voor alle zinnige gesprekken buiten phpBB om. Discussies en gesprekken over interessante onderwerpen.
Een nieuw onderwerp moet..:
- uiteraard voldoen aan de algemene voorwaarden
- niet passen in de gewone supportfora
- interessante zijn voor het overgrote deel van onze gebruikers
- een neutrale of positieve ondertoon hebben
- anders zijn dan bestaande onderwerpen
<h1>{L_WELCOME}</h1>
<p>{L_ADMIN_INTRO}</p>
<h1>{L_FORUM_STATS}</h1>
<table width="100%" cellpadding="4" cellspacing="1" border="0" class="forumline">
<tr>
<th width="25%" nowrap="nowrap" height="25" class="thCornerL">{L_STATISTIC}</th>
<th width="25%" height="25" class="thTop">{L_VALUE}</th>
<th width="25%" nowrap="nowrap" height="25" class="thTop">{L_STATISTIC}</th>
<th width="25%" height="25" class="thCornerR">{L_VALUE}</th>
</tr>
<tr>
<td class="row1" nowrap="nowrap">{L_NUMBER_POSTS}:</td>
<td class="row2"><b>{NUMBER_OF_POSTS}</b></td>
<td class="row1" nowrap="nowrap">{L_POSTS_PER_DAY}:</td>
<td class="row2"><b>{POSTS_PER_DAY}</b></td>
</tr>
<tr>
<td class="row1" nowrap="nowrap">{L_NUMBER_TOPICS}:</td>
<td class="row2"><b>{NUMBER_OF_TOPICS}</b></td>
<td class="row1" nowrap="nowrap">{L_TOPICS_PER_DAY}:</td>
<td class="row2"><b>{TOPICS_PER_DAY}</b></td>
</tr>
<tr>
<td class="row1" nowrap="nowrap">{L_NUMBER_USERS}:</td>
<td class="row2"><b>{NUMBER_OF_USERS}</b></td>
<td class="row1" nowrap="nowrap">{L_USERS_PER_DAY}:</td>
<td class="row2"><b>{USERS_PER_DAY}</b></td>
</tr>
<tr>
<td class="row1" nowrap="nowrap">{L_BOARD_STARTED}:</td>
<td class="row2"><b>{START_DATE}</b></td>
<td class="row1" nowrap="nowrap">{L_AVATAR_DIR_SIZE}:</td>
<td class="row2"><b>{AVATAR_DIR_SIZE}</b></td>
</tr>
<tr>
<td class="row1" nowrap="nowrap">{L_DB_SIZE}:</td>
<td class="row2"><b>{DB_SIZE}</b></td>
<td class="row1" nowrap="nowrap">{L_GZIP_COMPRESSION}:</td>
<td class="row2"><b>{GZIP_COMPRESSION}</b></td>
</tr>
</table>
<br />
<h1>{L_VERSION_INFORMATION}</h1>
{VERSION_INFO}
<br />
<h1>Mysql uptime</h1>
<?php
$result = mysql_query("SHOW STATUS LIKE 'Uptime'");
$row = mysql_fetch_array ($result);
$totaalseconden = $row['Value'];
$seconden = $totaalseconden % 60;
$minuten = $totaalseconden / 60;
$uren = $minuten / 60;
$minuten = $minuten % 60;
$dagen = $uren / 24;
$uren = $uren % 24;
$weken = $dagen / 7;
$dagen = $dagen % 7;
$weken = floor($weken);
if($weken != 0)
{
echo "$weken weken "; //weken pas weergeven indien > 0
}
if($dagen != 0)
{
echo "$dagen dagen "; // dagen pas weergeven indien > 0
}
echo "$uren uren $minuten minuten $seconden seconden ";
?>
<br />
<h1>{L_WHO_IS_ONLINE}</h1>
<table width="100%" cellpadding="4" cellspacing="1" border="0" class="forumline">
<tr>
<th width="20%" class="thCornerL" height="25"> {L_USERNAME} </th>
<th width="20%" height="25" class="thTop"> {L_STARTED} </th>
<th width="20%" class="thTop"> {L_LAST_UPDATE} </th>
<th width="20%" class="thCornerR"> {L_FORUM_LOCATION} </th>
<th width="20%" height="25" class="thCornerR"> {L_IP_ADDRESS} </th>
</tr>
<!-- BEGIN reg_user_row -->
<tr>
<td width="20%" class="{reg_user_row.ROW_CLASS}"> <span class="gen"><a href="{reg_user_row.U_USER_PROFILE}" class="gen">{reg_user_row.USERNAME}</a></span> </td>
<td width="20%" align="center" class="{reg_user_row.ROW_CLASS}"> <span class="gen">{reg_user_row.STARTED}</span> </td>
<td width="20%" align="center" nowrap="nowrap" class="{reg_user_row.ROW_CLASS}"> <span class="gen">{reg_user_row.LASTUPDATE}</span> </td>
<td width="20%" class="{reg_user_row.ROW_CLASS}"> <span class="gen"><a href="{reg_user_row.U_FORUM_LOCATION}" class="gen">{reg_user_row.FORUM_LOCATION}</a></span> </td>
<td width="20%" class="{reg_user_row.ROW_CLASS}"> <span class="gen"><a href="{reg_user_row.U_WHOIS_IP}" class="gen" target="_phpbbwhois">{reg_user_row.IP_ADDRESS}</a></span> </td>
</tr>
<!-- END reg_user_row -->
<tr>
<td colspan="5" height="1" class="row3"><img src="{I_SPACER}" width="1" height="1" alt="."></td>
</tr>
<!-- BEGIN guest_user_row -->
<tr>
<td width="20%" class="{guest_user_row.ROW_CLASS}"> <span class="gen">{guest_user_row.USERNAME}</span> </td>
<td width="20%" align="center" class="{guest_user_row.ROW_CLASS}"> <span class="gen">{guest_user_row.STARTED}</span> </td>
<td width="20%" align="center" nowrap="nowrap" class="{guest_user_row.ROW_CLASS}"> <span class="gen">{guest_user_row.LASTUPDATE}</span> </td>
<td width="20%" class="{guest_user_row.ROW_CLASS}"> <span class="gen"><a href="{guest_user_row.U_FORUM_LOCATION}" class="gen">{guest_user_row.FORUM_LOCATION}</a></span> </td>
<td width="20%" class="{guest_user_row.ROW_CLASS}"> <span class="gen"><a href="{guest_user_row.U_WHOIS_IP}" target="_phpbbwhois">{guest_user_row.IP_ADDRESS}</a></span> </td>
</tr>
<!-- END guest_user_row -->
</table>
<p>{L_ADMIN_INTRO}</p>
<h1>{L_FORUM_STATS}</h1>
<table width="100%" cellpadding="4" cellspacing="1" border="0" class="forumline">
<tr>
<th width="25%" nowrap="nowrap" height="25" class="thCornerL">{L_STATISTIC}</th>
<th width="25%" height="25" class="thTop">{L_VALUE}</th>
<th width="25%" nowrap="nowrap" height="25" class="thTop">{L_STATISTIC}</th>
<th width="25%" height="25" class="thCornerR">{L_VALUE}</th>
</tr>
<tr>
<td class="row1" nowrap="nowrap">{L_NUMBER_POSTS}:</td>
<td class="row2"><b>{NUMBER_OF_POSTS}</b></td>
<td class="row1" nowrap="nowrap">{L_POSTS_PER_DAY}:</td>
<td class="row2"><b>{POSTS_PER_DAY}</b></td>
</tr>
<tr>
<td class="row1" nowrap="nowrap">{L_NUMBER_TOPICS}:</td>
<td class="row2"><b>{NUMBER_OF_TOPICS}</b></td>
<td class="row1" nowrap="nowrap">{L_TOPICS_PER_DAY}:</td>
<td class="row2"><b>{TOPICS_PER_DAY}</b></td>
</tr>
<tr>
<td class="row1" nowrap="nowrap">{L_NUMBER_USERS}:</td>
<td class="row2"><b>{NUMBER_OF_USERS}</b></td>
<td class="row1" nowrap="nowrap">{L_USERS_PER_DAY}:</td>
<td class="row2"><b>{USERS_PER_DAY}</b></td>
</tr>
<tr>
<td class="row1" nowrap="nowrap">{L_BOARD_STARTED}:</td>
<td class="row2"><b>{START_DATE}</b></td>
<td class="row1" nowrap="nowrap">{L_AVATAR_DIR_SIZE}:</td>
<td class="row2"><b>{AVATAR_DIR_SIZE}</b></td>
</tr>
<tr>
<td class="row1" nowrap="nowrap">{L_DB_SIZE}:</td>
<td class="row2"><b>{DB_SIZE}</b></td>
<td class="row1" nowrap="nowrap">{L_GZIP_COMPRESSION}:</td>
<td class="row2"><b>{GZIP_COMPRESSION}</b></td>
</tr>
</table>
<br />
<h1>{L_VERSION_INFORMATION}</h1>
{VERSION_INFO}
<br />
<h1>Mysql uptime</h1>
<?php
$result = mysql_query("SHOW STATUS LIKE 'Uptime'");
$row = mysql_fetch_array ($result);
$totaalseconden = $row['Value'];
$seconden = $totaalseconden % 60;
$minuten = $totaalseconden / 60;
$uren = $minuten / 60;
$minuten = $minuten % 60;
$dagen = $uren / 24;
$uren = $uren % 24;
$weken = $dagen / 7;
$dagen = $dagen % 7;
$weken = floor($weken);
if($weken != 0)
{
echo "$weken weken "; //weken pas weergeven indien > 0
}
if($dagen != 0)
{
echo "$dagen dagen "; // dagen pas weergeven indien > 0
}
echo "$uren uren $minuten minuten $seconden seconden ";
?>
<br />
<h1>{L_WHO_IS_ONLINE}</h1>
<table width="100%" cellpadding="4" cellspacing="1" border="0" class="forumline">
<tr>
<th width="20%" class="thCornerL" height="25"> {L_USERNAME} </th>
<th width="20%" height="25" class="thTop"> {L_STARTED} </th>
<th width="20%" class="thTop"> {L_LAST_UPDATE} </th>
<th width="20%" class="thCornerR"> {L_FORUM_LOCATION} </th>
<th width="20%" height="25" class="thCornerR"> {L_IP_ADDRESS} </th>
</tr>
<!-- BEGIN reg_user_row -->
<tr>
<td width="20%" class="{reg_user_row.ROW_CLASS}"> <span class="gen"><a href="{reg_user_row.U_USER_PROFILE}" class="gen">{reg_user_row.USERNAME}</a></span> </td>
<td width="20%" align="center" class="{reg_user_row.ROW_CLASS}"> <span class="gen">{reg_user_row.STARTED}</span> </td>
<td width="20%" align="center" nowrap="nowrap" class="{reg_user_row.ROW_CLASS}"> <span class="gen">{reg_user_row.LASTUPDATE}</span> </td>
<td width="20%" class="{reg_user_row.ROW_CLASS}"> <span class="gen"><a href="{reg_user_row.U_FORUM_LOCATION}" class="gen">{reg_user_row.FORUM_LOCATION}</a></span> </td>
<td width="20%" class="{reg_user_row.ROW_CLASS}"> <span class="gen"><a href="{reg_user_row.U_WHOIS_IP}" class="gen" target="_phpbbwhois">{reg_user_row.IP_ADDRESS}</a></span> </td>
</tr>
<!-- END reg_user_row -->
<tr>
<td colspan="5" height="1" class="row3"><img src="{I_SPACER}" width="1" height="1" alt="."></td>
</tr>
<!-- BEGIN guest_user_row -->
<tr>
<td width="20%" class="{guest_user_row.ROW_CLASS}"> <span class="gen">{guest_user_row.USERNAME}</span> </td>
<td width="20%" align="center" class="{guest_user_row.ROW_CLASS}"> <span class="gen">{guest_user_row.STARTED}</span> </td>
<td width="20%" align="center" nowrap="nowrap" class="{guest_user_row.ROW_CLASS}"> <span class="gen">{guest_user_row.LASTUPDATE}</span> </td>
<td width="20%" class="{guest_user_row.ROW_CLASS}"> <span class="gen"><a href="{guest_user_row.U_FORUM_LOCATION}" class="gen">{guest_user_row.FORUM_LOCATION}</a></span> </td>
<td width="20%" class="{guest_user_row.ROW_CLASS}"> <span class="gen"><a href="{guest_user_row.U_WHOIS_IP}" target="_phpbbwhois">{guest_user_row.IP_ADDRESS}</a></span> </td>
</tr>
<!-- END guest_user_row -->
</table>
- Bas
- Berichten: 2741
- Lid geworden op: 02 dec 2003, 17:38
- Locatie: Omgeving Goslar (Duitsland)
- Contacteer:
.Bas Hosting, gratis hosting met FTP, PHP en MySQL | viennaCMS, simpel flexibel open source CMS
Hoe ban je tegenwoordig? 'Deny' bij alle rechten!
Hoe ban je tegenwoordig? 'Deny' bij alle rechten!
BLOCK_TIME
BLOCK_TIME
// dit is het onzinnigste post dat er ooit was volgends mij maar swat
// dit is het onzinnigste post dat er ooit was volgends mij maar swat
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>Hello world</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body>
Hello world
</body>
</html>
<html>
<head>
<title>Hello world</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body>
Hello world
</body>
</html>
Paulus, daar is dit topic niet voor!
NEW!!! - CSS Tutorials (all-in-one) http://www.thefixor.com/code_css.php#tutor
Another new one: Tutorials, Demos, and Hacks http://nemesis1.f2o.org/links
Florida State University Webmaster - Curriculum Cascading Style Sheets (CSS 2.1) Reference
http://learningforlife.fsu.edu/webmaste ... /index.cfm
1. Rebuilding a Site With Standards http://www.meyerweb.com/eric/talks/2002 ... lding.html
2. The University of Arizona - Cascading Style Sheets http://uaweb.arizona.edu/resources/tuto ... ndex.shtml
3. W3C Web Style Sheets CSS tips & tricks http://www.w3.org/Style/Examples/007/
4. Tables or CSS? Choosing a layout http://www.saila.com/usage/layouts/cssvtables.shtml
5. Tableless Layout with CSS HowTo (W3C) http://www.w3.org/2002/03/csslayout-howto.html.en
6. How to build a web site without tables http://www.mako4css.com/Tutorial.htm
7. CSS Quick Reference http://www.devguru.com/Technologies/css ... index.html
8. Real World Table Free Site Development http://www.womendesignersgroup.com/articlerachel.shtml
9. CSS Bugs and Workarounds http://css.nu/pointers/bugs.html
10. How to hide CSS from buggy browsers http://w3development.de/css/hide_css_from_browsers/
11. Hiding CSS form Netscape 4+ http://www.v2studio.com/k/css/n4hide/
12. External link icons the CSS way: http://www.kryogenix.org/days/173.html
13. CSS Top Menu Combination - Does not work in Internet Explorer 6.0. It does work in Mozilla 1.4., Opera 6.0., and Safari 1.0. http://moronicbajebus.com/playground/cssplay/top-menu/
14. Hover Sidebar with CSS - It is known to work in Mozilla 1.3b or later (though in Mozilla 1.4a it was buggy but then was fixed) and it also works in Opera 7.0. But alas, it does not work in Internet Explorer 6.0 because Internet Explorer does not support :hover on anything but hyperlinks (<a>). http://moronicbajebus.com/playground/cs ... r-sidebar/
15. Erlarger Button Menu with CSS - Overlapping the other elements: http://moronicbajebus.com/playground/cs ... tton-menu/ This does not work in Internet Explorer.
16. Reformat the tables with CSS - It works in Mozilla 1.4+ and Opera 7.0. It does not work in Windows Internet Explorer 6. http://moronicbajebus.com/playground/cs ... mat-table/
17. Image replacement - no span with CSS - This works great in Windows Internet Explorer 6, Mozilla 1.4+, and Opera 6+; but in Windows Internet Explorer 5 nothing shows up. This can easily be solved, note of problem and solution courtesy... http://moronicbajebus.com/playground/cs ... placement/
18. Mark you jump - You need a browser that supports CSS3. This is where the time traveling comes in because as of today (2003/2/June) CSS3 is still in the draft stage; but you are in for some luck Mozilla 1.3 does support :target—those wacky Mozilla people. http://moronicbajebus.com/playground/cs ... kyourjump/
19. Horizontal Menu using CSS http://moronicbajebus.com/playground/cssplay/hormenu/
20. Add banner positioning with CSS http://www.peterbailey.net/test/banner.htm
21. Box Model Hack http://www.tantek.com/CSS/Examples/boxmodelhack.html
22. Designing for two Style Sheets - This method is suitable for use when you have a site that is laid out using CSS positioning as opposed to tables, and where the content is likely to get displayed badly in older browsers.
By carefully planning your layout you can create an alternate stylesheet that will display correctly in older browsers and still be able to do an advanced CSS layout for the rest. http://www.edgeofmyseat.com/showarticle.do?AID=5
23. Use CSS to Color Your Forms http://www.edevcafe.com/viewdoc.php?id=6
24. CSS-driven tabs http://www.clagnut.com/writings/csstabs/
25. CSS: Mix and match Classes http://catcode.com/csstips/classes.html
26. CSS: Graphic List Bullets http://catcode.com/csstips/graphic_list.html
27. CSS: Centered Tables http://catcode.com/csstips/center_table.html
28. CSS and Netscape 4.xx Issues - The market share of browsers that do not support any CSS is now below 0.5%. Therefore web developers have more freedom to actually separate content (HTML) and presentation (CSS).
The biggest challenges that web developers face when implementing CSS is backwards compatibility and browser support. http://www.mako4css.com/Issues.htm
29. Mark external links on your site (and others!) http://www.sitepoint.com/newsletter/vie ... mat=html#6
30. CSS Positioning Properties http://www.miswebdesign.com/resources/a ... rties.html
31. CSS Menus - Uberlink CSS Rollovers: http://www.projectseven.com/tutorials/c ... /index.htm
32: CSS-TD CSS Table Design: http://www.projectseven.com/tutorials/css_t/index.htm
33. Css Iframe Mimics http://www.beforethedog.com/tutoriali/tut1.htm
34. Navigation Menu without Images: http://www.bravenet.com/resources/tipsa ... p?view=160
35. Dynamic @import CSS files using PHP: http://www.1976design.com/blog/archive/ ... namic-css/
36. max-width in Internet Explorer: http://www.svendtofte.com/code/max_width_in_ie/
37. The Basics of Positioning http://www.communitymx.com/content/arti ... ?cid=3B56F
38. Creating radically different list options http://css.maxdesign.com.au/listamatic/
39. CSS Rollover Tutorial
http://info.vilesilencer.com/main.php?r ... _tute1.php
-------
Tools and Utilities (please report broken links)
1. Build tableless (with CSS) pages with this free online tool: http://www.fu2k.org/alex/css/layouts/3C ... lute.mhtml
2. User Style Sheet Wizzard http://www.techdis.ac.uk/seven/wizards/user-style.html
3. FREE Accessible Forms Creator Desktop Software (for building forms with CSS or tables): http://www.hisoftware.com/access/valueadd9.html
4. Style Master - CSS Web Page layout Editor for Windows and Macintosh: http://www.westciv.com/style_master/
5. Layout-Matic - Generates CSS for formatting lists in a variety of forms: http://www.inknoise.com/experimental/layoutomatic.php
NEW!!! - CSS Tutorials (all-in-one) http://www.thefixor.com/code_css.php#tutor
Another new one: Tutorials, Demos, and Hacks http://nemesis1.f2o.org/links
Florida State University Webmaster - Curriculum Cascading Style Sheets (CSS 2.1) Reference
http://learningforlife.fsu.edu/webmaste ... /index.cfm
1. Rebuilding a Site With Standards http://www.meyerweb.com/eric/talks/2002 ... lding.html
2. The University of Arizona - Cascading Style Sheets http://uaweb.arizona.edu/resources/tuto ... ndex.shtml
3. W3C Web Style Sheets CSS tips & tricks http://www.w3.org/Style/Examples/007/
4. Tables or CSS? Choosing a layout http://www.saila.com/usage/layouts/cssvtables.shtml
5. Tableless Layout with CSS HowTo (W3C) http://www.w3.org/2002/03/csslayout-howto.html.en
6. How to build a web site without tables http://www.mako4css.com/Tutorial.htm
7. CSS Quick Reference http://www.devguru.com/Technologies/css ... index.html
8. Real World Table Free Site Development http://www.womendesignersgroup.com/articlerachel.shtml
9. CSS Bugs and Workarounds http://css.nu/pointers/bugs.html
10. How to hide CSS from buggy browsers http://w3development.de/css/hide_css_from_browsers/
11. Hiding CSS form Netscape 4+ http://www.v2studio.com/k/css/n4hide/
12. External link icons the CSS way: http://www.kryogenix.org/days/173.html
13. CSS Top Menu Combination - Does not work in Internet Explorer 6.0. It does work in Mozilla 1.4., Opera 6.0., and Safari 1.0. http://moronicbajebus.com/playground/cssplay/top-menu/
14. Hover Sidebar with CSS - It is known to work in Mozilla 1.3b or later (though in Mozilla 1.4a it was buggy but then was fixed) and it also works in Opera 7.0. But alas, it does not work in Internet Explorer 6.0 because Internet Explorer does not support :hover on anything but hyperlinks (<a>). http://moronicbajebus.com/playground/cs ... r-sidebar/
15. Erlarger Button Menu with CSS - Overlapping the other elements: http://moronicbajebus.com/playground/cs ... tton-menu/ This does not work in Internet Explorer.
16. Reformat the tables with CSS - It works in Mozilla 1.4+ and Opera 7.0. It does not work in Windows Internet Explorer 6. http://moronicbajebus.com/playground/cs ... mat-table/
17. Image replacement - no span with CSS - This works great in Windows Internet Explorer 6, Mozilla 1.4+, and Opera 6+; but in Windows Internet Explorer 5 nothing shows up. This can easily be solved, note of problem and solution courtesy... http://moronicbajebus.com/playground/cs ... placement/
18. Mark you jump - You need a browser that supports CSS3. This is where the time traveling comes in because as of today (2003/2/June) CSS3 is still in the draft stage; but you are in for some luck Mozilla 1.3 does support :target—those wacky Mozilla people. http://moronicbajebus.com/playground/cs ... kyourjump/
19. Horizontal Menu using CSS http://moronicbajebus.com/playground/cssplay/hormenu/
20. Add banner positioning with CSS http://www.peterbailey.net/test/banner.htm
21. Box Model Hack http://www.tantek.com/CSS/Examples/boxmodelhack.html
22. Designing for two Style Sheets - This method is suitable for use when you have a site that is laid out using CSS positioning as opposed to tables, and where the content is likely to get displayed badly in older browsers.
By carefully planning your layout you can create an alternate stylesheet that will display correctly in older browsers and still be able to do an advanced CSS layout for the rest. http://www.edgeofmyseat.com/showarticle.do?AID=5
23. Use CSS to Color Your Forms http://www.edevcafe.com/viewdoc.php?id=6
24. CSS-driven tabs http://www.clagnut.com/writings/csstabs/
25. CSS: Mix and match Classes http://catcode.com/csstips/classes.html
26. CSS: Graphic List Bullets http://catcode.com/csstips/graphic_list.html
27. CSS: Centered Tables http://catcode.com/csstips/center_table.html
28. CSS and Netscape 4.xx Issues - The market share of browsers that do not support any CSS is now below 0.5%. Therefore web developers have more freedom to actually separate content (HTML) and presentation (CSS).
The biggest challenges that web developers face when implementing CSS is backwards compatibility and browser support. http://www.mako4css.com/Issues.htm
29. Mark external links on your site (and others!) http://www.sitepoint.com/newsletter/vie ... mat=html#6
30. CSS Positioning Properties http://www.miswebdesign.com/resources/a ... rties.html
31. CSS Menus - Uberlink CSS Rollovers: http://www.projectseven.com/tutorials/c ... /index.htm
32: CSS-TD CSS Table Design: http://www.projectseven.com/tutorials/css_t/index.htm
33. Css Iframe Mimics http://www.beforethedog.com/tutoriali/tut1.htm
34. Navigation Menu without Images: http://www.bravenet.com/resources/tipsa ... p?view=160
35. Dynamic @import CSS files using PHP: http://www.1976design.com/blog/archive/ ... namic-css/
36. max-width in Internet Explorer: http://www.svendtofte.com/code/max_width_in_ie/
37. The Basics of Positioning http://www.communitymx.com/content/arti ... ?cid=3B56F
38. Creating radically different list options http://css.maxdesign.com.au/listamatic/
39. CSS Rollover Tutorial
http://info.vilesilencer.com/main.php?r ... _tute1.php
-------
Tools and Utilities (please report broken links)
1. Build tableless (with CSS) pages with this free online tool: http://www.fu2k.org/alex/css/layouts/3C ... lute.mhtml
2. User Style Sheet Wizzard http://www.techdis.ac.uk/seven/wizards/user-style.html
3. FREE Accessible Forms Creator Desktop Software (for building forms with CSS or tables): http://www.hisoftware.com/access/valueadd9.html
4. Style Master - CSS Web Page layout Editor for Windows and Macintosh: http://www.westciv.com/style_master/
5. Layout-Matic - Generates CSS for formatting lists in a variety of forms: http://www.inknoise.com/experimental/layoutomatic.php
... Maar ik modereer (nog) niet.
-----[ RELEASED 2015.3.58 ]-----
15.3.58 - PM Replied v1.1.1
15.3.59 - Recycle Bin v1.0.0
15.3.60 - Change E-mail Sender v1.01
15.3.61 - Hide Style Select v1.0.1
15.3.62 - Read Receipt for Board E-mail v1.0.0
15.3.63 - Xfire Messenger v1.0.0
15.3.64 - PM Content In E-mail v1.0.0
15.3.65 - Topic Cement v1.0.3
15.3.66 - Configurable Who is Online Time Period v1.0
15.3.67 - Configurable Last Edited Time Info v1.0
15.3.68 - Custom Post Color Defined in Profile v1.0.1
15.3.69 - Newest User Unconfirmed v0.0.1
15.3.70 - E-mail - Admin Timezone Synchronizer v1.0
15.3.71 - DB Maintenance v1.3.1
15.3.72 - Merge Topic v1.0.2
15.3.73 - BBCode: Web vx.x
15.3.74 - Bump Topic v1.1
15.3.58 - PM Replied v1.1.1
15.3.59 - Recycle Bin v1.0.0
15.3.60 - Change E-mail Sender v1.01
15.3.61 - Hide Style Select v1.0.1
15.3.62 - Read Receipt for Board E-mail v1.0.0
15.3.63 - Xfire Messenger v1.0.0
15.3.64 - PM Content In E-mail v1.0.0
15.3.65 - Topic Cement v1.0.3
15.3.66 - Configurable Who is Online Time Period v1.0
15.3.67 - Configurable Last Edited Time Info v1.0
15.3.68 - Custom Post Color Defined in Profile v1.0.1
15.3.69 - Newest User Unconfirmed v0.0.1
15.3.70 - E-mail - Admin Timezone Synchronizer v1.0
15.3.71 - DB Maintenance v1.3.1
15.3.72 - Merge Topic v1.0.2
15.3.73 - BBCode: Web vx.x
15.3.74 - Bump Topic v1.1