headhesive.js icon indicating copy to clipboard operation
headhesive.js copied to clipboard

Missing select menu when cloning

Open franva opened this issue 7 years ago • 0 comments

Hi there,

I have a website which uses Headhesive, superfish and i18next. I have a header which has navigation bar. On this navigation bar, the 2nd navItem has a dropdown menu.

The Headhensive clones the whole header but missing the dropdown menu. This is the main menu

<nav id="main-menu" data-easing="easeInOutExpo" data-speed="1250">
                            <ul>
                                <li>
                                    <a href="#home">
                                        <div data-i18n="nav.home">Home</div>
                                    </a>
                                </li>
                                <li>
                                    <a href="#service">
                                        <div data-i18n="nav.services.title">Title</div>
                             
                                        <ul>
                                            <li>
                                                <a href="#service">
                                                    <div data-i18n="nav.services.ourservices">Our Services</div>
                                                </a>
                                            </li>
                                            <li>
                                                <a href="#how">
                                                    <div data-i18n="nav.services.howwework">How We Work</div>
                                                </a>
                                            </li>
                                        </ul>
                                    </a>
                                </li>

As you can see that the ul is the dropdown menu.

franva avatar Aug 29 '18 14:08 franva