How do I insert a search box on the header?

Support Forums for LiveMesh Themes & Plugins Forums Invent Theme Support How do I insert a search box on the header?

Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #22356
    amsltsmith
    Participant

    Hello,

    How do I insert a search box on the right side of the top header, above the main header?

    #22369
    Veena
    Moderator

    Have you added anything in the top header area?

    Can you pls try the below code changes .

    Pls insert the below code in file framework/functions/header-title-area.php inside the
    function mo_display_top_header_area() .

    
    echo '<div id="top-search">';
     get_search_form();
    echo '</div>';
    

    and have this custom CSS in themeoptions –

    div#top-search {
        float: right;
    }
    

    You may need to style it accordingly .

    Pls see the attached screenshot .

    #22390
    amsltsmith
    Participant

    That worked. Thank you so much for all your help.

Viewing 3 posts - 1 through 3 (of 3 total)
  • The topic ‘How do I insert a search box on the header?’ is closed to new replies.