Should I be using padding, margins & inline?

Thanks for this

I did copy and paste the Menu file as well.

What typing errors do you mean ?

Antony

Oops. I made a mistake. Please delete the duplicate “id” on the scotland.php page shown below. The div just above it is correctly assigned id=“products”. The div with the red id does not require an id or class (just like the same div in the “target” form).


<!-- BEGIN products -->
            <div id="products">
                <form target="paypal" action="https://www.paypal.com/cgi-bin/webscr" method="post">
                    <div [COLOR="#FF0000"][s]id="products"[/s][/COLOR]>
                        <input type="hidden" name="cmd" value="_s-xclick">


OK Done

Antony

Almost…! The wrong one was zapped… (:

Please change this:


<!-- BEGIN products -->
            <div>
                <form target="paypal" action="https://www.paypal.com/cgi-bin/webscr" method="post">
                    <div [COLOR="#FF0000"]id="products"[/COLOR]>

To this:


<!-- BEGIN products -->
            <div [COLOR="#0000FF"]id="products"[/COLOR]>
                <form target="paypal" action="https://www.paypal.com/cgi-bin/webscr" method="post">
                    <div>

OK done again

Antony

Perfect!

Moving right along… I believe the next page is northernireland.php. Let me know if that’s the wrong one.

These pages seem to have differences that make them interesting to code. Let me describe a couple.

On homepage.php, the text under the heading “The Service” is a group of short, vertically spaced paragraphs.

On northernireland.php, the text is a group of short closely spaced “paragraphs” without the ususal paragraph margins between them. This actually looks pretty good when written as a default bulleted list. :slight_smile: By default, the line spacing remains exactly as you see it now. It could be spaced like the other lists, if preferred. The questions are, do you prefer the standard paragraph look or the list look; and if list, how widely should the items be separated?

Another difference is the sentence that begins, “What do others charge?”. On the homepage, the sentence is written in two colors and is all on one line. On northernireland, there is a header followed by a paragraph. Which do you prefer?

Would you like to pick a common style for all of the pages or do you prefer different styles? Using a common style is easier to code and typically gives a more consistent user experience.

Are you sure the c5dmenu.php has been updated? I’m still seeing the code for the old menu.

I would like to get this feedback from you before trying to finish the northernireland page.

Thanks for your message. I have tried to do the Paypal stuff myself and it appears to be satisfactory. The files validate OK, the buttons works, but I’d like you to check them all the same if you don’t mind.

Yes, there are technical differences in the pages which is because it how they grew up a long time ago.

The key page is the home page and I prefer the layout like that. I can sort out putting <p> tags there.

As for What do others charges, I have utilised the code you gave me for the Scotland page and they should now be all the same.

I have re updated the C5D Menu

It is definitely now up to date

Antony

[FONT=Verdana]Hi, Antony.

The c5dmenu looks good, and you did a nice job of inserting the PayPal and Currency Converter code into the page. (Much better than I could have done without indents :slight_smile: ).

There is one problem that affects the rendering of the PayPal stuff that you can easily fix.
This is one of those occasions where “indents”, or aligning tags, is helpful.

Notice the following 3 lines:


<input type="hidden" name="on0" value="Northern Irish Certificate">Northern Irish Certificate<select name="os0">
	<option value="Option 1"> £ 18.00 GBP</option>
</select> 

They are better written as follows:


<input type="hidden" name="on0" value="Northern Irish Certificate">
[color=blue]<p>[/color]Northern Irish Certificate[color=blue]</p>[/color]
<select name="os0">
	<option value="Option 1"> £ 18.00 GBP</option>
</select> 

You can see that the select tags are not part of the preceeding <input> tag AND you can see that <p> tags have been added around the text.

Make these changes and see how the page renders in your browser.

I am including some changes to c5dstyles.css to center the <option> element, fix two of my errors, and improve a few other things.

I am also including the version of northernireland.php that I had already worked up. You can use it if you wish (it already has the text within <p> tags) or toss it in the bit bucket. With appropriate adjustments, it validates clean in all 3 doctypes.[/FONT]

Add to c5dstyles.css:


[color=blue]ul.service {
    list-style-type:none;
    padding:0;
    margin:0;
}[/color]

In the “PayPal and Give-a-Cert” portion of c5dstyles.css, please make the following changes:


#products {
    display:table;
    [color=red][s]padding-bottom:12px;[/s][/color]    /* delete this line completely. my error. */
    margin:0 auto [color=blue]24px[/color];    /* add bottom margin */
}
#products p {
    text-align:center;
    margin-top:0;
}
[color=blue]#products select {[/color]        /* ADD this selector and styles */
    [color=blue]display:block;
    margin:0 auto;
}[/color]
#products input[type="image"] {
    display:block;
    border:0;
    margin:20px auto 0;
}
#target {
    display:table;
    [color=red][s]padding-bottom:12px;[/s][/color]    /* delete this line completely. my error. */
    margin:0 auto [color=blue]16px[/color];    /* add bottom margin */
}
[color=blue]#target h2 {[/color]        /* ADD this selector and styles */
    [color=blue]text-align:center;
    margin:0 0 19px;
}[/color]

Under the “Miscellaneous” portion at the bottom of the file, please add the follow item:


[color=blue].clearfloats {    /* ADD this selector and style */
    padding-bottom:8px;
}[/color]
.clearfloats:before,
.clearfloats:after {
    content:"";
    display:table;
    line-height:0;
}
.clearfloats:after {
    clear:both;
}

northernireland.php


<!DOCTYPE html>
<html lang="en">
<head>
    <title>C5D Certificates in 5 Days Northern Ireland</title>
    <meta charset="utf-8">
    <link rel="stylesheet" href="http://www.c5d.co.uk/c5dstyle.css" type="text/css" media="screen">
    <link rel="stylesheet" href="http://www.c5d.co.uk/c5ddropdownmenu.css" type="text/css" media="screen">
    <script src="http://www.c5d.co.uk/mootools-1.2.5-core-yc.js" type="text/javascript"></script>
    <script src="http://www.c5d.co.uk/MenuMatic_0.68.3.js" type="text/javascript"></script>
</head>
<body>
<script type="text/javascript">
window.addEvent('domready', function() {
    var myMenu = new MenuMatic();
});
</script>
<div id="wrapper">
    <div id="container" class="container">
<!-- BEGIN c5dmenu.php INCLUDE -->
<?php include $_SERVER["DOCUMENT_ROOT"] . "/c5dincludes/c5dmenu.php"; ?>
<!-- END c5dmenu.php INCLUDE -->
        <p><a href="https://secure.jotformeu.com/form/20562335218347">New: Secure Order Form Now Available</a></p>
        <h1>A Personal Service not just a Certificate Supplier.</h1>
        <p><span class="redul">Certificates in 5 Days (C5D)</span> has been around since 1999 and during that time has established a reputation for being reliable and efficient as well as easy and friendly to deal with. Besides supplying your certificates, I'd be happy to look at any brickwalls that might need knocking down, although I can't promise to do that.</p>
        <p>This is the Northern Irish section of the well known C5D English Service. The system is similar to that of England and Wales but the downside is that certificates are more expensive and take longer to be issued. Usually about a fortnight.</p>
        <p><span class="redul">Certificates in 5 Days.</span> Obviously I can't get them to your letter box in that time, but I can normally scan or transcribe them to the <in box> of your e mail address, so if speed of information appeals to you, then read on !</p>
        <h2>The Service:</h2>
        <ul class="service">
            <li>Certificates are obtained and scanned to you.</li>
            <li>Certificates are obtained from the ONS unless "original copies" including signatures are usually supplied from the local office.</li>
            <li>On receipt by me, they are scanned or a transcription e mailed to you. It's your choice. The default option is a scan.</li>
            <li>The entries are then posted by air mail to you. The usual delivery time is about a week or so after the scan.</li>
            <li>There are occasional GRONI delays which prevent me achieving this timeframe and I shall then scan the entries to you on the day of receipt by me. The GRONI advertise any delays on their website.</li>
        </ul>
        <h2>For certificates from other parts of the UK please click on the relevant link:</h2>
        <ul class="census1841">
            <li><a href="http://www.c5d.co.uk/homepage.php">England &amp; Wales</a></li>
            <li><a href="http://www.c5d.co.uk/scotland.php">Scotland</a></li>
            <li><a href="http://www.c5d.co.uk/northernireland.php">Northern Ireland</a></li>
            <li><a href="http://www.c5d.co.uk/roi.php">Republic of Ireland</a></li>
            <li><a href="http://www.c5d.co.uk/nzcerts.php">New Zealand Certificates</a></li>
        </ul>
        <h2>And for Probates &amp; Administrations:</h2>
        <ul class="census1841">
            <li><a href="http://www.c5d.co.uk/probates.php">Probates &amp; Administrations</a></li>
        </ul>
        <p>Other services may appear cheaper, but often exclude fees for postage and packing, and most will not scan the certificates as they come through. If you'd care to compare prices, just click on one of the adverts below.</p>
        <h2>The Costs:</h2>
        <p>The preferred method of payment is by credit card and if you adopt this method the cost is £ 18.00. If I already hold your card details, then a simple e mail will suffice. Otherwise to pay by credit card, please complete the <a href="https://secure.jotformeu.com/form/20562335218347">Secure Order Form</a>. If you would prefer me not to hold your card details, then please complete this <a href="http://form.jotformeu.com/form/20561260421339">Order Form</a> which will take you to the Paypal web site to make payment. There is also a Paypal shopping cart lower down the page.  I am happy to accept a personal cheque in your currency, but I do incur a commission for this. The cost of certificates per cheque is the equivalent of £ 16.00 (please use the exchange rate calculator below) BUT there is a commission of £ 5 per order, not certificate, for these types of orders. A credit card or Paypal is therefore much cheaper. Once I have acknowledged your order, this cannot be cancelled as I pay for the certificates prior to their receipt. Nor is there any refund available for the same reason.</p>
        <p>All transactions are processed in sterling at £18.00 on receipt of your order.</p>
<!-- BEGIN productwrap -->
        <h2>To pay for a certificate by Paypal or Google Check Out please click the relevant symbol below:</h2>
        <div id="productwrap">
<!-- BEGIN products -->
            <div id="products">
                <form action="https://www.paypal.com/cgi-bin/webscr" method="post">
                    <div>
                        <input type="hidden" name="cmd" value="_s-xclick">
                        <input type="hidden" name="hosted_button_id" value="G8APJLP9V68VS">
                        <input type="hidden" name="on0" value="Northern Irish Certificate">
                        <p>Northern Irish Certificate</p>
                        <select name="os0">
                            <option value="Option 1">£ 18.00 GBP</option>
                        </select>
                        <input type="hidden" name="currency_code" value="GBP">
                        <input type="image" src="https://www.paypalobjects.com/en_GB/i/btn/btn_cart_LG.gif" name="submit" alt="PayPal &#8212; The safer, easier way to pay online.">
                        <img src="https://www.paypalobjects.com/en_GB/i/scr/pixel.gif" alt="">
                    </div>
                </form>
            </div>
<!-- END products -->
<!-- BEGIN target -->
            <h2>Give A Certificate to a Friend</h2>
            <div id="target">
                <form action="https://www.paypal.com/cgi-bin/webscr" method="post">
                    <div>
                        <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" name="submit" src="https://www.paypal.com/en_GB/i/btn/btn_buyAGiftCertificate_06.gif" alt="Make payments with PayPal - it's fast, free and secure!">
                        <img src="https://www.paypal.com/en_GB/i/scr/pixel.gif" alt="">
                    </div>
                </form>
            </div>
<!-- END target -->
        </div>
<!-- END productwrap -->
        <p><span class="redul">What do others charge?</span> Click on each of the ads below to compare.</p>
        <script type="text/javascript"> <!--
google_ad_client = "pub-2250361376307882";
google_ad_width = 728;
google_ad_height = 90;
google_ad_format = "728x90_as";
google_ad_type = "text_image";
google_ad_channel = "";
//-->
        </script>
        <script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js"></script>
        <p>To pay by cheque please use this facility to calculate the cost in your currency. Multiply £ 18.00 by the number of certificates you want and add £ 5 for the exchange rate fee.</p>
        <p>For cheques from South Africa, these must be approved for payment abroad.</p>
<!-- BEGIN xeconverter -->
        <div id="xeconverter">
            <p class="xehead">xe.com&nbsp; Universal Currency Converter<sup> &copy;</sup></p>
            <div class="formwrap">
                <div class="fieldheads">
                    <p>Convert this amount of sterling</p>
                    <p>into this type of currency.</p>
                </div>
                <form action="http://www.xe.com/ucc/convert.cgi" method="post">
                    <div class="fieldwrap">
                        <div>
                            <input size="5" value="18.00" name="Amount">
                        </div>
                        <div>
                            <select size="6" name="From" id="From">
                                <option value="GBP" selected="selected">United Kingdom Pounds GBP</option>
                            </select>
                        </div>
                        <div>
                            <select size="6" name="To" id="To">
                                <option value="AUD" selected="selected">Australia Dollars AUD</option>
                                <option value="CAD">Canada Dollars CAD</option>
                                <option value="EUR">Euro EUR</option>
                                <option value="NZD">New Zealand Dollars NZD</option>
                                <option value="ZAR">South Africa Rand ZAR</option>
                                <option value="USD">United States Dollars USD</option>
                            </select>
                        </div>
                    </div>
                    <div class="submitwrap">
                        <input type="submit" value="Click Here to Perform Currency Conversion">
                    </div>
                </form>
            </div>
            <p class="xefoot">Universal Currency Converter under license from XE.com. &nbsp; <a href="http://www.xe.com/legal/">Terms of Use</a></p>
        </div>
        <p class="center">For quotes in any other currency, please contact me.</p>
<!-- END xeconverter -->
        <h2>Other Services for the Genealogist:</h2>
        <ul class="census1841">
            <li><a href="http://www.c5d.co.uk/groups.php">Family Group Orders</a></li>
            <li><a href="http://www.c5d.co.uk/sterlingpayments.php">Payment in Pounds</a></li>
            <li><a href="http://www.c5d.co.uk/parishrecords.php">Parish Register Entries</a></li>
            <li><a href="http://www.c5d.co.uk/censusentries.php">Census Entries</a></li>
            <li><a href="http://www.c5d.co.uk/research.php">Research Service</a></li>
        </ul>
<!-- START FMP & Ancestry adverts -->
        <div class="clearfloats"> <!-- adverts container (optional?) -->
            <div id="advert1">
                <a href="http://www.jdoqocy.com/click-5433512-10520381">
                    <img src="http://www.awltovhc.com/image-5433512-10520381" width="264" height="60" alt="264x60: I am your Nan">
                </a>
            </div>
            <div id="advert2">
                <a href="http://www.awin1.com/cread.php?s=265538&amp;v=2114&amp;q=126749&amp;r=127588">
                    <img src="http://www.awin1.com/cshow.php?s=265538&amp;v=2114&amp;q=126749&amp;r=127588" width="264" height="60" alt="264x60">
                </a>
            </div>
        </div>
<!-- END FMP & Ancestry adverts -->
    </div>
</div>
<div id="footer">
    <p class="copy">&copy; C5D-Certificates </p>
</div>
</body>
</html>


NOTES:

(1) The text associated with “The Service” is written in a list because that is how it appears on the page appears at this time.

(2) The list items can be changed to <p> tags very easily, if you wish; OR vertical margins can be applied to the list items so they are spaced apart like paragraphs. Don’t forget to delete the <ul> tags, if you change the <li>s to <p>s

Thanks for this, I guess the other Paypal forms need re styling now ?

So they have that revised on0 bit

I don’t think they need much else other than the “The Service” bit

Thanks

Antony

You’ve done quite well, Antony. I’m attaching the nzcerts.php page only because it’s done. Text is accounted for and <br> tags are gone, but the difference on the screen is minimal. Your choice.


<!DOCTYPE html>
<html lang="en">
<head>
    <title>C5D Certificates in 5 Days New Zealand</title>
    <meta charset="utf-8">
    <link rel="stylesheet" href="http://www.c5d.co.uk/c5dstyle.css" type="text/css" media="screen">
    <link rel="stylesheet" href="http://www.c5d.co.uk/c5ddropdownmenu.css" type="text/css" media="screen">
    <script src="http://www.c5d.co.uk/mootools-1.2.5-core-yc.js" type="text/javascript"></script>
    <script src="http://www.c5d.co.uk/MenuMatic_0.68.3.js" type="text/javascript"></script>
</head>
<body>
<script type="text/javascript">
window.addEvent('domready', function() {
    var myMenu = new MenuMatic();
});
</script>
<div id="wrapper">
    <div id="container" class="container">
<!-- BEGIN c5dmenu.php INCLUDE -->
<?php include $_SERVER["DOCUMENT_ROOT"] . "/c5dincludes/c5dmenu.php"; ?>
<!-- END c5dmenu.php INCLUDE -->
        <p><a href="https://secure.jotformeu.com/form/20562833320344">New: Secure Order Form Now Available</a></p>
        <h1>A Personal Service not just a Certificate Supplier.</h1>
        <p><span class="redul">Certificates in 5 Days (C5D)</span> has been around since 1999 and during that time has established a reputation for being reliable and efficient as well as easy and friendly to deal with. Besides supplying your certificates, I'd be happy to look at any brickwalls that might need knocking down, although I can't promise to do that.</p>
        <p><span class="redul">Certificates in 5 Days.</span> Obviously I can't get them to your letter box in that time, but I can normally scan or transcribe them to the <in box> of your e-mail address, so if speed of information appeals to you, then read on !</p>
        <p>This is the New Zealand section of the well known C5D English Service. The system is similar to that of England and Wales but the downside is that certificates are more expensive and take longer to be issued. Usually about three weeks.</p>
        <h2>The Service:</h2>
        <ul class="service">
            <li>Certificates are obtained by me.</li>
            <li>On receipt, they are scanned or a transcription e mailed to you. It's your choice. The default option is a scan.</li>
            <li>The entries are then posted by air mail to you. The usual delivery time is about a week or so after the scan.</li>
            <li>There are occasional Register Office delays which prevent me achieving this timeframe and I shall then scan the entries to you on the day of receipt by me. The NZ Registration Service advertise any delays on their website.</li>
        </ul>
        <h2>For certificates from other parts of the UK please click on the relevant link:</h2>
        <ul class="census1841">
            <li><a href="http://www.c5d.co.uk/homepage.php">England &amp; Wales</a></li>
            <li><a href="http://www.c5d.co.uk/scotland.php">Scotland</a></li>
            <li><a href="http://www.c5d.co.uk/northernireland.php">Northern Ireland</a></li>
            <li><a href="http://www.c5d.co.uk/roi.php">Republic of Ireland</a></li>
            <li><a href="http://www.c5d.co.uk/nzcerts.php">New Zealand Certificates</a></li>
        </ul>
        <h2>And for Probates &amp; Administrations:</h2>
        <ul class="census1841">
            <li><a href="http://www.c5d.co.uk/probates.php">Probates &amp; Administrations</a></li>
        </ul>
        <h2>The Costs</h2>
        <p>Other services may appear cheaper, but often exclude fees for postage and packing, and most will not scan the certificates as they come through. If you'd care to compare prices, just click on one of the adverts below.</p>
        <p>The preferred method of payment is by credit card and if you adopt this method the cost is £ 18.00. If I already hold your card details, then a simple e mail will suffice, otherwise to pay by credit card, please complete the <a href="https://secure.jotformeu.com/form/20562833320344">Order Form</a> If you would prefer not to give me your card details, then please complete this <a href="http://form.jotformeu.com/form/20561731469354">Order Form </a>which will take to the Secure Paypal web site to make payment. Alternatively a  Paypal secure shopping cart is lower down the page.  I am happy to accept a personal cheque in your currency, but I do incur a commission for this. The cost of certificates per cheque is the equivalent of £ 18.00 (please use the exchange rate calculator below) BUT there is a commission of £ 5 per order, not certificate, for these types of orders. A credit card or Paypal is therefore much cheaper. Once I have acknowledged your order, this cannot be cancelled as I pay for the certificates prior to their receipt. Nor is there any refund available for the same reason.</p>
        <p>All transactions are processed in sterling at £ 18.00 on receipt of your order.</p>
<!-- BEGIN productwrap -->
        <h2>To pay for a certificate by Paypal please click the relevant symbol below:</h2>
        <div id="productwrap">
<!-- BEGIN products -->
            <div id="products">
                <form action="https://www.paypal.com/cgi-bin/webscr" method="post">
                    <div>
                        <input type="hidden" name="cmd" value="_s-xclick">
                        <input type="hidden" name="hosted_button_id" value="J64R5VF9WBCS4">
                        <input type="hidden" name="on0" value="New Zealand Cert">
                        <p>New Zealand Cert</p>
                        <select name="os0">
                            <option value="New Zealand Certificate">New Zealand Certificate £ 18.00</option>
                        </select>
                        <input type="hidden" name="currency_code" value="GBP">
                        <input type="image" name="submit" src="https://www.paypal.com/en_US/GB/i/btn/btn_buynowCC_LG.gif" alt="PayPal - The safer, easier way to pay online.">
                        <img src="https://www.paypal.com/en_GB/i/scr/pixel.gif" alt="">
                    </div>
                </form>
            </div>
<!-- END products -->
<!-- BEGIN target -->
            <h2>Give A Certificate to a Friend</h2>
            <div id="target">
                <form action="https://www.paypal.com/cgi-bin/webscr" method="post">
                    <div>
                        <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" name="submit" src="https://www.paypal.com/en_GB/i/btn/btn_buyAGiftCertificate_06.gif" alt="Make payments with PayPal - it's fast, free and secure!">
                        <img src="https://www.paypal.com/en_GB/i/scr/pixel.gif" alt="">
                    </div>
                </form>
            </div>
<!-- END target -->
        </div>
<!-- END productwrap -->
        <h2>To pay by cheque</h2>
        <p>please use this facility to calculate the cost in your currency. Multiply £ 18.00 by the number of certificates you want and add £ 5 for the exchange rate fee.</p>
        <p>For cheques from South Africa, these must be approved for payment abroad.</p>
<!-- BEGIN xeconverter -->
        <div id="xeconverter">
            <p class="xehead">xe.com&nbsp; Universal Currency Converter<sup> &copy;</sup></p>
            <div class="formwrap">
                <div class="fieldheads">
                    <p>Convert this amount of sterling</p>
                    <p>into this type of currency.</p>
                </div>
                <form action="http://www.xe.com/ucc/convert.cgi" method="post">
                    <div class="fieldwrap">
                        <div>
                            <input size="5" value="18.00" name="Amount">
                        </div>
                        <div>
                            <select size="6" name="From" id="From">
                                <option value="GBP" selected="selected">United Kingdom Pounds GBP</option>
                            </select>
                        </div>
                        <div>
                            <select size="6" name="To" id="To">
                                <option value="AUD" selected="selected">Australia Dollars AUD</option>
                                <option value="CAD">Canada Dollars CAD</option>
                                <option value="EUR">Euro EUR</option>
                                <option value="NZD">New Zealand Dollars NZD</option>
                                <option value="ZAR">South Africa Rand ZAR</option>
                                <option value="USD">United States Dollars USD</option>
                            </select>
                        </div>
                    </div>
                    <div class="submitwrap">
                        <input type="submit" value="Click Here to Perform Currency Conversion">
                    </div>
                </form>
            </div>
            <p class="xefoot">Universal Currency Converter under license from XE.com. &nbsp; <a href="http://www.xe.com/legal/">Terms of Use</a></p>
        </div>
        <p class="center">For quotes in any other currency, please contact me.</p>
<!-- END xeconverter -->
        <h2>Other Services for the Genealogist:</h2>
        <ul class="census1841">
            <li><a href="http://www.c5d.co.uk/groups.php">Family Group Orders</a></li>
            <li><a href="http://www.c5d.co.uk/sterlingpayments.php">Payment in Pounds</a></li>
            <li><a href="http://www.c5d.co.uk/parishrecords.php">Parish Register Entries</a></li>
            <li><a href="http://www.c5d.co.uk/censusentries.php">Census Entries</a></li>
            <li><a href="http://www.c5d.co.uk/research.php">Research Service</a></li>
        </ul>
    </div>
</div>
<div>
    <p class="copy">&copy;C5D-Certificates</p>
</div>
</body>
</html>


Does this wrap up the pages that use c5dstyle.css?

Thanks, I’ll have a look at this in the morning.

Are you any good with forms ? I know the HTML isn’t right on this page but most of this I can manage. The key problem is that whilst the form is sent and comes through OK, there is never any infomation on it.

Is this your area ?

Antony

No, I have no knowledge of how forms work. Sorry. Perhaps someone with expertise writing forms will pitch in.

Is nzcerts.php the only page with a form that is malfunctioning, or are other pages having the same problem?

It might be best to start a new thread and introduce the issue with the form. Just a thought.

I have done the NZ page and it is fine now.

There are other pages, all the ones on the C5D drop down menu use it, but I am sure that I can manage from here.

My next task is to sort out this contact form.

PHP is some thing I know nothing about at all

Antony

OK. Thanks for the update and feedback. If you need more css help, you know where to find us :slight_smile:

Regarding the contact form, if you start a thread in another forum about it, I’d be grateful if you would send me a PM and let me know so I can follow it. I’d like to learn something about forms and php, if possible.

Cheers,
Ron