Paypal & XE Com validtion

With a great deal of help and no small amount of patience from the guys of the CSS forum, I have transformed site of some 600 pages from frames to up to date standards with CSS.

It has been a great learning experience, however having got so far, I am left with a number of errors which the validator says are there.

However these errors are in the coding supplied by Paypal and by XE.com.

An example is at www.c5d.co.uk/scotland.php

Can anything be done about these ? Or must I settle for this small number of non compliances

Thanks

Antony

Change:

[B]<a NAME="target">[/B]
<form action="https://www.paypal.com/cgi-bin/webscr" method="post">
<input type="hidden" name="cmd" value="_oe-gift-certificate">
<input type="hidden" name="business" value="antonylambert@certificates.fsnet.co.uk">
<input type="hidden" name="amount" value="18.00">
<input type="hidden" name="no_shipping" value="2">
<input type="hidden" name="no_note" value="1">
<input type="hidden" name="currency_code" value="GBP">
<input type="hidden" name="bn" value="PP-GiftCertBF">
<input type="hidden" name="fixed_denom" value="18.00">
<input type="hidden" name="style_theme" value="WT">
<input type="hidden" name="shopping_url" value="http://www.certificates.fsnet.co.uk/c5d.htm">
<input type="image" src="https://www.paypal.com/en_GB/i/btn/btn_buyAGiftCertificate_06.gif" style="border: 0px solid"  name="submit" alt="Make payments with PayPal - it's fast, free and secure!">
<img alt=""  src="https://www.paypal.com/en_GB/i/scr/pixel.gif" width="1" height="1">
</form>[B]</a>[/B]

to

[B]<div id="target">[/B]
<form action="https://www.paypal.com/cgi-bin/webscr" method="post">
<input type="hidden" name="cmd" value="_oe-gift-certificate">
<input type="hidden" name="business" value="antonylambert@certificates.fsnet.co.uk">
<input type="hidden" name="amount" value="18.00">
<input type="hidden" name="no_shipping" value="2">
<input type="hidden" name="no_note" value="1">
<input type="hidden" name="currency_code" value="GBP">
<input type="hidden" name="bn" value="PP-GiftCertBF">
<input type="hidden" name="fixed_denom" value="18.00">
<input type="hidden" name="style_theme" value="WT">
<input type="hidden" name="shopping_url" value="http://www.certificates.fsnet.co.uk/c5d.htm">
<input type="image" src="https://www.paypal.com/en_GB/i/btn/btn_buyAGiftCertificate_06.gif" style="border: 0px solid"  name="submit" alt="Make payments with PayPal - it's fast, free and secure!">
<img alt=""  src="https://www.paypal.com/en_GB/i/scr/pixel.gif" width="1" height="1">
</form>[B]</div>[/B]

Also with your XE select list you can’t have both AUD and NZD selected by default unless you add multiple to the select tag. Without the extra attribute only one will be selected and which of the two will depend on how the different browsers fix that error.

You might have to live with the errors relating to the script tag.

Thanks very much for this ?

It has worked perfectly. I have deleted the script which shouldn’t have been there anyway.

Everything now validates perfectly

Antony