Elxis CMS Forum

Support => General => Topic started by: armpouniotis on April 27, 2020, 16:54:42

Title: Can I split a menu item in 2 lines ?
Post by: armpouniotis on April 27, 2020, 16:54:42
Hi there !

is it possible for a menu item to be seperated in 2 horizontal lines ?

For example:

"Home Page", displayed as:

Home
Page

Thank you in advance
Christos
Title: Re: Can I split a menu item in 2 lines ?
Post by: web-infox on April 28, 2020, 21:46:21
Hi

use ul li{display: flex;flex-wrap:nowrap;width: 120px;}
or
ul li{display: table;width: 120px;}
ul li a{display: table-row;}
Title: Re: Can I split a menu item in 2 lines ?
Post by: armpouniotis on April 28, 2020, 22:05:47
ok !

I will try it !

Thank you !
Christos