Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #275996

    Hi guys!

    Is it possible to move the cart icon to where the search icon is? I don’t need a search feature on my site, but having the shopping cart readily available would be great!

    Also, is it possible to spread the navigation text in the header across the entire header? As in, can the text be centered and spread out instead of aligning to the right? Thanks!

    #276305

    Hey avsurganov!

    Please add following code to Quick CSS in Enfold theme options under General Styling tab

    ul.cart_dropdown.visible_cart {
    position: absolute;
    }

    and then go to Appearance > Editor and add following code to Functions.php file

    function add_custom_script(){
    ?>
    <script>
    jQuery(window).load(function(){
    jQuery("ul.cart_dropdown.visible_cart").appendTo("div.avia-menu.av-main-nav-wrap:after");
    });
    </script>
    <?php
    }
    add_action('wp_footer', 'add_custom_script');

    Cheers!
    Yigit

    #276306

    Sorry, missed the second question..
    Please go to Enfold theme options > Header Layout > Header Layout > Menu and Logo Position and choose “logo center, menu below” option

    Cheers!
    Yigit

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