Viewing 12 posts - 1 through 12 (of 12 total)
  • Author
    Posts
  • #1055384

    Hi guys

    I am thinking what would be the best solution for the following:
    The goal is to have the main menu displayed vertically on the right side (right sidebar).

    a) Would you create the normal menu for that and if yes, how I can force it via the Enfold options to be displayed vertically?
    b) It would also be possible to just create the menu links in a html block in the sidebar and then style them. I am just not sure if that’s a nice option.

    Any other ideas are also very welcome.

    Thanks a lot for any useful input.

    Cheers
    Michael

    #1056030

    Hey Michael,

    There is no theme setting for that unfortunately, so you would need custom CSS to achieve that. Could you post a link to where we can see your work so far please?

    Best regards,
    Rikard

    #1056047

    Hi Rikard

    Unfortunately, there is no work so far from my side in this case.
    I just wanted to ask it as a general question.

    Thanks a lot
    Michael

    #1056285

    Hi Michael,

    Do you mean something like this just menu on the right?
    Image 2019-01-20 at 20.21.57.png

    Best regards,
    Victoria

    #1059271

    Hi Victoria

    Yes, that looks quite close to what I would like to achieve. Thank you!
    How can I get this with Enfold? Is it just a setting?

    And did you get your screenshot from https://kriesi.at/themes/enfold-photography?

    Cheers
    Michael

    #1059317

    Dashboard – Enfold (Child) – General Layout – Logo and Main Menu : choose now if left or right sidebar.
    You can see here the demo overview: https://kriesi.at/themes/enfold-overview/
    Scroll down to: Consulting Demo

    #1059320

    by the way you can decide this via functions.php for only some pages with if-clauses:
    if you choose header top on the enfold options – you can have sidebar navigation for frontpage only by:

    add_filter('avf_header_setting_filter','av_change_header_style');
    function av_change_header_style($header){
        if( is_front_page() ){
            $header['header_position'] = "header_right header_sidebar";
        }
        return $header; 
    }
    #1059321

    And if you are interested to have the choice on each page/post – you can have a meta-box on every page/post where you can set it like template or breadcrumb etc.

    #1059418

    Thanks a lot for your replies Günter – very valuable!

    #1060224

    Hi,

    Glad you found assistance :)

    Best regards,
    Basilis

    #1088770

    Hi Basilis

    Please close this thread – thanks a lot.

    Cheers
    Michael

    #1088791

    Hi,

    If you need additional help, please let us know here in the forums.

    Best regards,
    Jordan Shannon

Viewing 12 posts - 1 through 12 (of 12 total)
  • The topic ‘Vertical main menu’ is closed to new replies.