Associate lables with form fields. Fixes #6859 props MarcoZ.

git-svn-id: http://svn.automattic.com/wordpress/trunk@7883 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
westi
2008-05-04 10:37:06 +00:00
parent 7623315990
commit 3cbcbbbfb4
39 changed files with 192 additions and 166 deletions

View File

@@ -1,4 +1,5 @@
<form method="get" id="searchform" action="<?php bloginfo('url'); ?>/">
<label class="hidden" for="s"><?php _e('Search for:'); ?></label>
<div><input type="text" value="<?php the_search_query(); ?>" name="s" id="s" />
<input type="submit" id="searchsubmit" value="Search" />
</div>

View File

@@ -616,6 +616,10 @@ blockquote cite {
text-align: center;
}
.hidden {
display: none;
}
hr {
display: none;
}