Shape 5

General Category => Vertex 4 Framework => : Vilzzz March 10, 2017, 08:37:44 AM



: S5 Flex menu question
: Vilzzz March 10, 2017, 08:37:44 AM
Hi everybody,
I want to make 2 column menu with 7 menu items on the left column and 1 module position at the right column.
Now some of menu items display at the right column above module. 
How can i control the division of menu child items  into the columns?





best regards
Vilzzz


: Re: S5 Flex menu question
: jonahh March 10, 2017, 04:57:33 PM
Hello,

I recommend grabbing the eMusica Site Shaper and taking a look at how we did it in there. You'll see on the demo the features and tutorial menu items have similar setup to what you are trying to do.


: Re: S5 Flex menu question
: Vilzzz March 11, 2017, 01:43:45 PM
Yes i want to do the same. But i didn't find info, how to control splitting in to the columns.


: Re: S5 Flex menu question
: jonahh March 13, 2017, 11:11:05 AM
Did you check and see how the menus are setup in the admin of the site shaper for eMusica? Thats what I was referring to, I couldn't remember off hand how we did it.


: Re: S5 Flex menu question
: Vilzzz March 14, 2017, 02:04:02 AM
Yes i did it. It is clear for me that you combined the child menu into groups, but how did you hide menu title ? css?
So as i understand we can control splitting only third level menu items. Second level is uncontrollable isn't  it?


: Re: S5 Flex menu question
: jonahh March 14, 2017, 01:11:39 PM
Yes correct with CSS. The CSS we used was below and you'd need to edit the background color of cccccc to be whatever your menu background color is. Then of course you need to add the -menuhighlight module suffix too:

:
.moduletable-menuhighlight {
    background: none repeat scroll 0 0 #cccccc;
    color: #FFFFFF;
    margin-top: -27px;
    padding: 0px;
    position: relative;
    z-index: 1;
}

Yes second level auto arranges the menu items. Unless you use a menu module and publish the module to a column. Then you can specify which items show in it.


: Re: S5 Flex menu question
: Vilzzz March 15, 2017, 02:00:53 AM
Thank you Jonahh!