Hello,
Although I have a lot more to learn about with Zoom, as I make my way through the ins and out of the product, I came to the validating stage, and thought you might appreciate knowing what I found.
Validating the markup as XHTML 1.0 Transitional (http://validator.w3.org/), without any modification to any file, I was not successful.
In viewing the W3C validator errors; making the changes below; and, testing again for compliance, I was able to validate without any errors.
The changes I had to make are as follows:
search_template.html
Replace <html> Required to be xhtml compliant.
search.php
Line 1305
Change opening span tag to an opening div tag; you can't wrap an unordered list in a span tag
Line 1345
Change closing span tag to closing div tag; you can't wrap an unordered list in a span tag
search.php
Lines 1313
Modify and change position of closing input tag; the input closing tag needs to be a self-closing tag.
search.php
Lines 1328
Modify and change position of closing input tag; the input closing tag needs to be a self-closing tag.
It is my hope that these changes will be included with the next build, so the page are compliant without any necessary modifications.
I -must- echo the sentiments of others who sing your praises ... the product itself and this forum, the informative, patient, and friendly replies, are why I decided on purchasing Zoom! Your product is great and your support is top-notch!
I thank you!
Although I have a lot more to learn about with Zoom, as I make my way through the ins and out of the product, I came to the validating stage, and thought you might appreciate knowing what I found.
Validating the markup as XHTML 1.0 Transitional (http://validator.w3.org/), without any modification to any file, I was not successful.
In viewing the W3C validator errors; making the changes below; and, testing again for compliance, I was able to validate without any errors.
The changes I had to make are as follows:
search_template.html
Replace <html> Required to be xhtml compliant.
HTML Code:
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
Line 1305
Change opening span tag to an opening div tag; you can't wrap an unordered list in a span tag
PHP Code:
$OutputBuffers[$OUTPUT_FORM_CATEGORIES] = "<div class=\"zoom_categories\">\n";
Change closing span tag to closing div tag; you can't wrap an unordered list in a span tag
PHP Code:
$OutputBuffers[$OUTPUT_FORM_CATEGORIES] .= "</div>\n";
Lines 1313
Modify and change position of closing input tag; the input closing tag needs to be a self-closing tag.
PHP Code:
$OutputBuffers[$OUTPUT_FORM_CATEGORIES] .= " />$STR_FORM_CATEGORY_ALL</li>\n";
Lines 1328
Modify and change position of closing input tag; the input closing tag needs to be a self-closing tag.
PHP Code:
$OutputBuffers[$OUTPUT_FORM_CATEGORIES] .= " />$catnames[$i]</li>\n";
I -must- echo the sentiments of others who sing your praises ... the product itself and this forum, the informative, patient, and friendly replies, are why I decided on purchasing Zoom! Your product is great and your support is top-notch!
I thank you!
Comment