Make Dropdown Menu Column into 2 Columns instead of 1

Posted in: Newspaper
Post count: 8

Hi,

How can I make a dropdown into 2 columns?

See image below for “More” menu option:

https://ibb.co/McyGdRP

Post count: 23312

Hi,

If you want to achieve that result, you will need to use the code below and place it in Theme panel -> Custom CSS area.

ul.sub-menu {
-moz-column-count: 2;
-moz-column-gap: 20px;
-webkit-column-count: 2;
-webkit-column-gap: 20px;
column-count: 2;
column-gap: 20px;
width:19.5em!important;
}

The result is here -> https://www.screencast.com/t/Vy4fUnKc

Thank you!

Viewing 2 posts - 1 through 2 (of 2 total)
The forum ‘Newspaper’ is closed to new topics and replies.