Viewing 3 replies - 1 through 3 (of 3 total)
  • Theme Author WP Puzzle

    (@wppuzzle)

    Use theme action hook like this

    
    function myslug_add_searchbox(){
    	echo '<div class="fr">'.
    	get_search_form();
    	echo '</div>';
    }
    add_action( 'basic_before_sitelogo', 'myslug_add_searchbox' );
    
    Thread Starter princewap

    (@princewap)

    it is showing search box above site title/logo but i want to show search box in right site of site title/logoi tried to change add action according to it also but not working please help me out

    Theme Author WP Puzzle

    (@wppuzzle)

    @princewap, you need some css customize as float:right

    or try copy header.php file to your child theme and customize html at this file

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘search box problem’ is closed to new replies.