Shopping Menu Bar – Searchbox

Home Forums Omega Shopping Menu Bar – Searchbox

Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #1897
    Junior
    Participant

    how to put a search box on the menu bar?

    #1915
    han
    Keymaster

    Add this code into functions.php

    add_action ('omega_after_primary_menu','shopping_menu_search');
    function shopping_menu_search() {
    	?>
    	<form method="get" id="searchform" action="<?php echo home_url(); ?>/">
    		<div><input type="text" name="s" id="s" placeholder="Search" />
    		<input type="submit" id="searchsubmit" value="Search" class="btn" />
    		</div>
    	</form>
    <?php
    }
    #1931
    Junior
    Participant

    very good

    thank

    how can I customize the search box?
    also adjust the positioning?

    thank you once again.

    #1968
    han
    Keymaster

    you can use css

    #2753
    MartijnMIC
    Participant

    How must you do it in CSS? I can’t find the solution for this.

Viewing 5 posts - 1 through 5 (of 5 total)

You must login to reply to this topic.