Freepages-Help-L Archives

Archiver > Freepages-Help > 2008-11 > 1228078557


From: "Barry Carlson" <>
Subject: Re: [FreeHelp] MastHead Include; unordered List ; Mail-to JS
Date: Mon, 1 Dec 2008 09:55:57 +1300
References: <e3afe72a0811301223k7e55574cu123e86940d92ac3d@mail.gmail.com>


On Monday, December 01, 2008 9:23 AM (UTC+13)
Judy wrote:-

> The only
> thing I don't understand is, Validator says I cannot use a pararaph or
> br tag between the main list items, and the last 2 items in my nav.
> Why can't I have space in between list items?
> I have the list as
> (First, a bunch of items here done same way as next one)
> <..li>My Last List Item<./li>
> <.br>
> <.li>additional item<./li>
> <.li>very last item<./li>
> with the open ul tag before the very first one... and closed ul after
> the very last item.
>
> I'd really like to keep a little room in the list to set off the last
> 2 items from the main list. Would it be better to close off the top
> unordered list. Then add space, and re-open a second unordered list,
> then add the last two items, then close the second unordered list?
-----------------------
Judy

Use the div (as suggested by the Validator) in the following fasion:-

<!--code>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">;
<html xmlns="http://www.w3.org/1999/xhtml"; xml:lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
<title>List Space</title>
<style type="text/css">
#spacer {line-height:16px;}
</style>
</head>
<body>
<ul>
<li>My Last List Item</li>
</ul>
<div id="spacer"></div>
<ul>
<li>additional item</li>
<li>very last item</li>
</ul>
</body>
</html>
</code-->

Also, you should have my comments from a previous email re the JavaScript
email address encryptor.

Barry


This thread: