traderfjp wrote:No offense but the front page is very old school and the small text is hard to read.
Well as it's a listing it's primary function is to list things so choices are limited in what you can do with it. Having said that I'll be adding some graphics to spruce it up a bit. I was looking at the text myself and increasing the size is on the to do list.
ceccil wrote:The more graphics there are, the longer the pages take to load
Only initially, images are cached locally. There's a variety of reasons this site is so fast. One of them being it doesn't use tables for layouts which can considerably slow down the render time on pages if it's a big table. For example the subforum listings here look like this:
- Code: Select all
dd class="subforums">
<a href="http://nepacrossroads.com/forum-57.html" class="subforum unread" title="New posts">Anthracite Coal Discussion and News</a>
<a href="http://nepacrossroads.com/forum-71.html" class="subforum unread" title="New posts">The Best of Anthracite Coal Forum Topics</a>
<a href="http://nepacrossroads.com/forum-91.html" class="subforum read" title="No new posts">Coalcast Broadcasts with Patrick and Paul</a>
<a href="http://nepacrossroads.com/forum-58.html" class="subforum unread" title="New posts">Coal Stokers: Boilers, Furnaces and Stoves</a>
<a href="http://nepacrossroads.com/forum-55.html" class="subforum unread" title="New posts">Hand Fired Coal Stoves</a>
<a href="http://nepacrossroads.com/forum-67.html" class="subforum unread" title="New posts">Venting, Plumbing, Chimneys, Controls, Coal Bins</a>
<a href="http://nepacrossroads.com/forum-68.html" class="subforum unread" title="New posts">Using Bituminous Coal</a>
<a href="http://nepacrossroads.com/forum-54.html" class="subforum unread" title="New posts">Anthracite Coal Region History</a>
<a href="http://nepacrossroads.com/forum-70.html" class="subforum unread" title="New posts">Wood, Gas, Oil, Geothermal and Other Heating Units</a>
</dd>
A typical table layout might look like this:
- Code: Select all
<table>
<tr>
<td><a href="http://nepacrossroads.com/forum-57.html" class="subforum unread" title="New posts">Anthracite Coal Discussion and News</a></td>
<td><a href="http://nepacrossroads.com/forum-57.html" class="subforum unread" title="New posts">Anthracite Coal Discussion and News</a></td>
<td><a href="http://nepacrossroads.com/forum-57.html" class="subforum unread" title="New posts">Anthracite Coal Discussion and News</a></td>
</tr>
<tr>
<td><a href="http://nepacrossroads.com/forum-57.html" class="subforum unread" title="New posts">Anthracite Coal Discussion and News</a></td>
<td><a href="http://nepacrossroads.com/forum-57.html" class="subforum unread" title="New posts">Anthracite Coal Discussion and News</a></td>
<td><a href="http://nepacrossroads.com/forum-57.html" class="subforum unread" title="New posts">Anthracite Coal Discussion and News</a></td>
</tr>
<tr>
<td><a href="http://nepacrossroads.com/forum-57.html" class="subforum unread" title="New posts">Anthracite Coal Discussion and News</a></td>
<td><a href="http://nepacrossroads.com/forum-57.html" class="subforum unread" title="New posts">Anthracite Coal Discussion and News</a></td>
<td><a href="http://nepacrossroads.com/forum-57.html" class="subforum unread" title="New posts">Anthracite Coal Discussion and News</a></td>
</tr>
</table>
Instead of the browser having to calculate the position and size of one box per link it needs to calculate many. All in the details.

That's just one reason, there are others.