I am using wordpress twentyten theme.
and in this i have set search widget.
Now i want to customize my search option which look like,
and i want to chane it like,
Can any one tell me where i have to change?
I am using wordpress twentyten theme.
and in this i have set search widget.
Now i want to customize my search option which look like,
and i want to chane it like,
Can any one tell me where i have to change?
You must be logged in to post a comment.
The php for the wordpress search form is
<?php get_search_form(); ?>
which writes out the following in the browserSo you’d need to find #searchform in your theme’s stylesheet and then customize the css from there. If you need more help try downloading firebug and using it to inspect the existing Css.
Since I can’t see the site I’ll show you how to figure it out using Google Chromes Developer Tools
I do however recommend that you create a WordPress Child Theme instead of modifying the TwentyEleven Theme Directly because if update your WordPress site (which happens frequently) all of your changes will be lost.