Showing 1 – 1 of 1 replies
pbkbrandon

I have been using your theme for a few […]

pbkbrandon
7 years ago
I have been using your theme for a few months now and love it. The problem is on mobile devices the menu is not responsive to touch. Please help.

Website: libertyofomaha.com
Double Theme
Double Theme SELLER
7 years ago
Hello,

Do not use class "has-submenu" on menu item which not include submenu.

Example:

// Wrong

<li class="has-submenu">
<a href="aboutus.html">About Us</a>
</li>

// Right

<li>
<a href="aboutus.html">About Us</a>
</li>

// Right

<li class="has-submenu">
<a href="#">About Us</a>
<ul class="submenu">
<li><a href="*.html">About Us 1</a></li>
<li><a href="*.html">About Us 2</a></li>
<li><a href="*.html">About Us 3</a></li>
</ul>
</li>

Thank you!