An easy way to add a search form where you want is to insert the following code in the place where you want the search form to be displayed:
<?php get_search_form(); ?>
Thanks Antonietta, just the answer I needed, the second underscore did the trick… Best wishes, Ron
<?php get_search_form(); ?> worked perfectly thank you.
Would it be possible to have the search match the transparency of the navbar?
Also I tried <div align=”right” <?php get_search_form(); ?> </div> so It’d apear on the right side which it did manage to work but for whatever reason search is no longer functional you can still type into it but it’ll no longer search. is there anyway I could have it align to the right of the nav bar & not break it?
Hi Brandon,
Try closing the div:
<div align="right"><?php get_search_form(); ?></div>