Bugs Found
-
header.php:
the arial-controls value of “menu” is wrong.
<button class="menu-toggle navbar-toggle" aria-controls="menu" aria-expanded="false">
It should be “menu-main“:
<button class="menu-toggle navbar-toggle" aria-controls="menu-main" aria-expanded="false">
searchform.php:
the value=”” is not needed, should be removed and the alt=”” attribute is missing (causes an html5 validation error without it):
<input type="image" src="<?php echo get_template_directory_uri(); ?>/images/search-button.png" value="" id="search-button">
should be replaced with:
<input type="image" src="<?php echo get_template_directory_uri(); ?>/images/search-button.png" alt="Search" id="search-button">
style.css:
3 rule areas in style.css you refer to a non-existent class commentlist which is a clear mistype and should be comment-list
- The topic ‘Bugs Found’ is closed to new replies.