Earlier I was trying to get all my nav dropdowns to sit to the right when they drop down. I noticed there was “data-x-stem=dl” in the dropdown element but when I changed it in the custom attributes, it applied it to the whole nav element.
Ended up using custom jQuery to target it:
jQuery(".menu-item-380").hover(function(){
jQuery(".menu-item-380 > ul").attr(“data-x-stem”,“dl”);
});
