Viewing 15 replies - 1 through 15 (of 17 total)
  • Hey there,

    You can navigate to Appearance -> Widgets and add a custom menu widget to your footer area. Hope it helps.

    Thread Starter dem10

    (@dem10)

    I tried to add a custom menu in the footer but does not show it

    Hi @dem10,

    I’m able to see the custom menu widget in the lower left hand corner of https://www.infoliga.schleider.com.ar. Did you manage to get this working or are you unhappy with outcome in any way?

    Let us know and we can help guide from there!

    Thread Starter dem10

    (@dem10)

    Siobhan
    I want to modify the structure, now are showing vertical and I want horizontal menu, also I want to change colors to orange, like header menu

    Hi @dem10,

    Can you let me know what steps you’ve taken so far to customise your menu to your liking?

    The menu in your lower left has a unique ID of #menu-menu-2 that you could target with some custom CSS.

    The following tutorial may help guide you on how to make menu items horizontal:

    https://css.maxdesign.com.au/listutorial/horizontal_master.htm

    Using similar principles to what we’ve gone through previously, you could also target all a (link) elements within #menu-menu-2 to change their colour:

    #menu-menu-2 a {
        color: #07a1f2;
    }

    Replace #07a1f2 with any HEX code of your choice.

    Thread Starter dem10

    (@dem10)

    color worked OK!
    but I can′t change the style to horizontal, I will continue trying

    @dem10: I can see that you’ve added the social media icons to the same menu that you’ve added links to “Top,” “Photogallery,” and “LNB.” As the social media icons are styled differently to those links, I would separate them to a second menu before styling the other links to be horizontal.

    Once you have the links in their own separate menu, you can use display: inline-flex; to get them onto one line.

    Let me know how you get on with that.

    Thread Starter dem10

    (@dem10)

    I don′t understand, sorry

    The links for “Top,” “Photogallery,” and “LNB” in the lower left of your site have been placed in the same menu as the social media icons that appear in the lower right. To make it easier to style those items, it is best to place them in separate menus.

    Head to Appearance > Menus in order to do that.

    Thread Starter dem10

    (@dem10)

    but how can I show both menus at menu header?

    I do 1 menu with “Top,” “Photogallery,” and “LNB” (called header) and other menu with social icons (called menu 1) but I can′t show both together, I can′t use both as primary menu

    You should create the following two menus:

    1. Your primary menu that includes the main links as well as the social icons.

    2. Your widget menu that includes only the main links, not the social icons.

    You can then assign your widget menu to the custom menu widget so that it displays in your footer without the social icons. The icons will then still appear at the top of your site.

    Let me know if that’s clear.

    Thread Starter dem10

    (@dem10)

    I understand but I want to show some main links and social icons at footer

    The social icons in your primary menu are styled differently to the rest of the menu’s links, which is why I suggested the separate menus for your widget area.

    As you’d like to include the social icons there, also, you could consider creating three menus:

    1. Your primary menu that includes the main links as well as the social icons.

    2. Your first widget menu that includes only the main links, not the social icons.

    3. Your second widget menu that includes only the social icons, not the main links.

    The last two menus could then be added to your footer via the custom menu widget and it would be easier to style them with CSS.

    Thread Starter dem10

    (@dem10)

    finally I did it with a plugin. Now I want to eliminate bullets and put hover effect. I tried by css but no results ??

    Thread Starter dem10

    (@dem10)

    I tried this

    ul{
    list-style-type:none;
    }

    but does not work, why?

Viewing 15 replies - 1 through 15 (of 17 total)
  • The topic ‘repeat header menu in footer’ is closed to new replies.