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!
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