site check

Out of context: Reply #1

  • Started
  • Last post
  • 5 Responses
  • CAJTBr0

    all looks fine.

    i noticed some coding errors which might affect the way it looks in some browsers. couple of examples:

    in the events page you have two closing html tags (with a bunch of extra closing tags in between them).

    You've doubled up tags without putting anything in between. i notice you have some <td>spacer</td>s - brs have to have something in between them in some browsers to have any effect, eg you have

    Brussel<br>
    <br>

    could be fixed with

    Brussel&ltbr>
    &nbsp<br>

    or better still

    Brussel<br />
    &nbsp<br />

    to conform with xhtml while still being compatible with old netscape (though it doesn't matter as the rest of the code doesn't conform & you have iframes anyway).

    but this is just tiny stuff, it all looks and feels nice, simple and clean overall and seems quite functional. out of interest, are you using some way to update it other than just editing the html?

    --apologies if code egs don't display right, it was a mess of &amps

View thread