Horizontal Dropdown Menu

Is it possible to have the horizontal dropdown menu drop down in 2 columns instead of just one.

I do not see drop down menu on your website. Do you want to use it on other store? What theme do you use?

New site we’re moving to. ElkhornGraphics.com

You can add to the CSS section of the Theme editor

.ty-menu__item > .ty-menu__submenu > ul {    
    columns: 200px 2;
    -moz-columns: 200px 2;
    -webkit-columns: 200px 2;
}

http://prntscr.com/ic7srh

Note: this property is not supported by all browsers

So much better... Thank You eComLabs....

You can add to the CSS section of the Theme editor

.ty-menu__item > .ty-menu__submenu > ul {    
    columns: 200px 2;
    -moz-columns: 200px 2;
    -webkit-columns: 200px 2;
}

http://prntscr.com/ic7srh

Note: this property is not supported by all browsers

You are welcome!