I’ve managed to create a test drop down menu using images that goes horizontal. With the following css:
.x-navbar .x-nav .sub-menu >li>a>span {
display: inline-block;
}
.e467-3 .sub-menu {
display: inline-block;
vertical-align: top;
position: relative;
}
.e467-3 .sub-menu > a {display: block; height: 100%}
.e467-3 .sub-menu ul {
display: none;
position: relative;
top: 100%;
margin: 0;
padding: 10px;
min-width: 150px;
}
.e467-3 .sub-menu:hover ul {
display: block;
}
.e467-3.x-menu li {
display:inline-block !important;
}
.e467-3 .sub-menu .x-anchor .x-anchor-text-primary {
display:inline-block !important;
}
.e467-3 .x-dropdown {
width: 100%;
}
.e467-3 ul.x-dropdown {
margin-top: -3em;
}
However when I tried to replicate it on the actual menu it either broke the menu itself or wouldn’t go horizontal. I know I’m close, any css help you could give would be much appreciated.