Viewing 9 posts - 1 through 9 (of 9 total)
  • Author
    Posts
  • #811364

    Hello, how can i add the search bar before the social icon?

    Thanks

    D.

    pic

    #811673

    Hey csogordaniel,

    Try the following:

    Add this to the bottom of functions.php

    
    function add_custom_script(){
    ?>
    <script>
    (function($){
        $(window).load(function() {
        	$(".social_bookmarks").prepend($("#menu-item-search").detach());
        });
    })(jQuery);
    </script>
    <?php
    }
    add_action('wp_footer', 'add_custom_script');

    and add this to quick css:

    li#menu-item-search a {
        line-height: 32px !important;
        height: auto !important;
    margin-left:-50px!important;
    }

    Best regards,
    Jordan Shannon

    #812007

    Hello Jordan,

    Thanks, but its dont work correctly. Now its is the good place, but when i reload a page i see how its “jumping” to there.

    Best regards,

    Daniel

    • This reply was modified 7 years, 5 months ago by csogordaniel.
    #812189

    Hi Daniel,

    If the JavaScript solutions is not working for you, you could edit helper-main-menu.php file and render it in the correct location from the server.

    If you need further assistance please let us know.
    Best regards,
    Victoria

    #812912

    Hello Victora,

    Tha JS solution is “good”, but is there any solution for the “moving” problem?

    Thanks,

    Daniel

    #813043

    Hi Daniel,

    The code that moves the search executes when the page is ready, you could hide the search initially and just show it when it is in the correct location already.

    
    #menu-item-search {
        display: none;
    }
    
    
    function add_custom_script(){
    ?>
    <script>
    (function($){
        $(window).load(function() {
        	$(".social_bookmarks").prepend($("#menu-item-search").css("display", "block").detach());
        });
    })(jQuery);
    </script>
    <?php
    }
    add_action('wp_footer', 'add_custom_script');
    

    Best regards,
    Victoria

    #813131

    try this solution i answered you in the other thread: https://kriesi.at/support/topic/search-in-top-header-2/#post-813057

    for very small screens i will have a look now what can be done.

    #813134

    Hi,


    @Guenni007
    , thanks for the suggestions.

    Best regards,
    Jordan Shannon

    #813144

    so here is my solution – you have to have header with extra-element second-navigation !!!
    in this case the second-navigation is empty – but it is declared on Menu as secondary-menu !

    This to functions.php of child-theme:

    add_filter( 'avf_execute_avia_meta_header', '__return_true', 10, 1);
    add_filter( 'avia_meta_header', 'avia_append_search_nav_mod');
    function avia_append_search_nav_mod()
    {
    	        global $avia_config;
    	        ob_start();
    	        get_search_form();
    	        $form =  htmlspecialchars(ob_get_clean()) ;
    
    	        $items .= '<div id="menu-item-search" class="noMobile menu-item menu-item-search-dropdown menu-item-avia-special">
    							<a href="?s=" data-avia-search-tooltip="'.$form.'" '.av_icon_string('search').'><span class="avia_hidden_link_text">'.__('Search','avia_framework').'</span></a>
    	        		   </div>';
    
        echo $items;
    }

    this to quick.css:

    #top #header_meta #menu-item-search {
        list-style: outside none none;
    padding-left: 20px
    }
    
    #top #header_meta .avia-search-tooltip {
        margin-left: -60px;
        top: 18px !important;
    }
    
    #top #header_meta .avia-search-tooltip .avia-arrow-wrap {
        right: 80px;
    }
    
    @media only screen and (max-width: 768px){
    
    .responsive #header_meta .sub_menu {
        float: right;
        right: 45%;
        position: relative;
        top: 10px;
        width: auto;
    }
    
    .responsive #header .social_bookmarks {
        float: right;
        position: relative;
        right: 40%;
        width: auto;
    }
    
    .av_icon_active_right .social_bookmarks {
        padding-left: 0;
    }
    
    #top #header_meta .avia-search-tooltip {
        margin-left: 30px;
        top: 18px !important;
    }
    
    #top #header_meta .avia-search-tooltip .avia-arrow-wrap {
        right: 170px;
    }
    }

    look here on top: https://webers-testseite.de/
    go and pull the browser window smaller to see how the behavior is on that.

    by the way ismael – isn’t possible to add the list point into the sub-menu ?

Viewing 9 posts - 1 through 9 (of 9 total)
  • You must be logged in to reply to this topic.