How to arrange subchild in the horizontal menu How to arrange subchild in the horizontal menu json json

How to arrange subchild in the horizontal menu


Try with this one: in this fiddle, maybe you want something like this.

.subchild-list {    margin:0;                     /*<-----make 0*/    position: absolute !important;    top:0;                        /*<-----0 from top*/    right:-66px;                  /*<-----gets outside from the .childlist li*/ } .child-list li {    position:relative !important; /*<-----important*/ }


Change display:block to inline-block in .nav-child and do the same for .nav-subchild

.nav-child {        width:160px;        display:inline-block !important;        }.nav-subchild{     display: inline-block !important;}

DEMO