I am trying to create the menu that my client requests by means of a custom module. What I did was that in T4 framework I have created a mega menu and there I entered the custom module. All good up to there. But when creating a submenu I have not been able to find the way that is shown to the side since it covers the menu links, where can I modify that the submenu is displayed more to the right and not above the link.
The code I have in the custom menu is the following
<ul>
<li class="nav-item dropdown dropright dropend parent"><a href="#" class=" dropdown-item dropdown-toggle" role="button" aria-haspopup="true" aria-expanded="false" data-toggle="dropdown">Empaques y Sellos<i class="item-caret"></i></a>
<div class="dropdown-menu">
<div class="dropdown-menu-inner">
<ul>
<li class="nav-item"><a href="#" class=" dropdown-item">Link #4</a></li>
<li class="nav-item"><a href="#" class=" dropdown-item">Link #5</a></li>
<li class="nav-item"><a href="#" class=" dropdown-item">Link #6</a></li>
</ul>
</div>
</div>
</li>
</ul>