Reply To: social icons in sticky menu?

#952
livemesh
Keymaster

If you are happy with donating some space to the social icons in the sticky menu, it is quite easy to achieve this. Paste the following CSS into Custom CSS panel in theme options –

#sticky-menu {
float: left;
}

#sticky-menu-container .social-container {
position: relative;
top: 0;
right: 0;
float: right;
}

and make the following one line code change in {theme directory}/framework/extensions/framework-extender.php and you are done!

    function display_sticky_menu() {
        echo ' ';
    }