Hi Howard,
On 24 Oct 12 11:24 Howard Neil <
h.n...@which.net> said:
>
http://www.hneil.plus.com/cor.html
It helps!
The first thing I did was check the URL with the W3C validator. It
shows 13 errors and one warning for the page. I had hoped that
BlueGriffon's parser would automatically sort out such issues on
saving the page, but obviously, it doesn't.
However, checking through the error list they are all because of the
table containing your menu is not designed for HTML5. You definitely
need the HTML4 TRANSITIONAL doctype for that code.
Then looking at the source I see the code:
<html xmlns="
http://www.w3.org/1999/xhtml">
It is this that makes BlueGriffon present the .xht filetype on saving.
BlueGriffon normally generates:
<html>
for HTML doctypes.
I then saved the page locally and loaded it into BlueGriffon. It did
not report a parse error and loaded normally, so I cannot reproduce
the error you report.
However, I discovered that BlueGriffon will choke if you go to SOURCE
view and attempt to edit the <html> line. It corrupts the page
completely on return to WYSIWYG view. So the answer is you need to
edit that line using an external text editor.
As for the cure for the page.
I'd tried creating a new HTML4 TRANSITIONAL page in BlueGriffon and
then pasting in the bulk of your content in SOURCE view. That still
left two validation errors. One resulting from the <style> code from
the web buttons generator you used and the other related to the nested
tables you have used for page layout (Always a bad idea. Tables should
only be used for display of tabular data - in your case just the
schedule of choir engagements).
I'm not sure if this is sufficient to help you get to the bottom of
the problem, but it should go a fair way. Ideally, even for an HTML4
Transitional doctype you should be using CSS to control the layout of
your page.
Incidentally, I have a demonstration page at:
http://www.gregtutor.plus.com/webdesign/demohmenugraphic.html
which shows a method, using an unordered list and CSS, to produce menu
buttons very similar to yours.
There's an explanation of the code at:
http://www.gregtutor.plus.com/kompozer08/menudesign.html#graphics
though that does depend, in part, on your being familiar with material
earlier in the tutorial.
Hope this all helps!