Forum Moderators: open
Hi,
I was checking my pages with the HTML validator at [validator.w3.org...] and it keeps telling me my page is not ok because of :
Line 54, column 8: document type does not allow element "BR" here; assuming missing "LI" start-tag
<br><BR>
Line 56, column 8: document type does not allow element "BR" here; assuming missing "LI" start-tag
<br><BR>
OR Line 66, column 12: document type does not allow element "STRONG" here; assuming missing "LI" start-tag
<strong>I love beef dip at quiznoz</strong>
MY pages look ok, so i don't know what to do?
How to give more room after each </li> tag if not using <br>?
And another question, do i really have to put all my <li> tags between <ul> tags?
Are those issues a problem for SEO?
I know this is some questions, so thanks be advance if someone answers.
<ul>
<li>text</li>
<br>
<li>text</li>
</ul> To answer your questions: yes, you should always use a
<ul> around a list. To control the space between list items, you can use CSS. For example: li {
margin:5px 0;
} You can also use CSS to remove the margins on the
<ul> element.