search bar in header
-
Can you add a search bar in the header of the theme Maxwell with css?
The blog I need help with is: (visible only to logged in users)
-
Hi,
Just add to your theme this code:
<?php get_search_form(); ?>Place this code everywhere where you want to have the search form.
Further you need to have “search.php” file in your theme which will show the search results.
Thanks,
Aakash Patel -
-
@gabbytrecipes, we cannot add php script like @aakashpatelsite suggests since we cannot edit the theme files here at WordPress.com.
We can move a search widget up into the header area sometimes using CSS. Add the following to your custom CSS and see what you think. Due to the size of your site title, I’ve had to limit this to screens 1080px and wider by using a Media Query.
@media screen and (min-width: 1080px) { #page { position: relative; } #search-10 { position: absolute; top: 50px; } } @media screen and (min-width: 1080px) and (max-width: 1120px) { #search-10 { right: 10px; } } -
@aakashpatelsite, for reference, the differences between WordPress.com and WordPress.org.
-
-
- The topic ‘search bar in header’ is closed to new replies.