Reputation: 125
In mobile view, footer navigation menu displays in 1 column at https://wordl.io
Need help changing 1 column to 2 columns in footer navigation menu.
Tried css below but does not work.
.gh-foot-menu .nav {column-count:2;}
Upvotes: 1
Views: 106
Reputation: 113
Try this :
ul.nav {
display: inline-grid;
grid-template-columns: 50% 50%;
}
Where 50% is the width of the column
Upvotes: 1
Reputation: 26
I've check this and you can try my code
ul.nav {
columns: 2;
-webkit-columns: 2;
-moz-columns: 2;
display: inline-block;
}
Upvotes: 1