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

    I tried all the solutions found on the forum but I can’t solve it.
    https://farinezerbo.it/, the submenu is under “shop”.

    Thanks for your help

    #1261915

    Hey muvolab,

    I’m not sure I understand what you are looking to achieve, could you try to explain your intentions a bit further please?

    Best regards,
    Rikard

    #1262383

    Hi Rikard,
    I’m trying to change the colour of the active links in the submenu under “shop” on https://farinezerbo.it/.
    I tried this: https://kriesi.at/support/topic/submenu-active-change-color/ but it doesn’t work.
    Thanks

    #1262713

    Hi muvolab,

    Please post us your login credentials (in the “private data” field), so we can take a look at your backend.

    1. Install and activate ” Temporary Login Without Password “.
    2. Go to ” Users > Temporary Logins ” on the left-side menu.
    3. Click ” Create New “.
    4. Add the email address for the account ( you can use (Email address hidden if logged out) ), as well as the ” Role ” making that the highest possible and the expiry about four days
      ( to be sure that we have enough time to debug ).
    5. Click ” Submit “.
    6. You’ll now have a temporary account. Please provide us here in the private section the URL, so we can login and help you out.

    When your issue is fixed, you can always remove the plugin!
    If you prefer to not use the plugin, you can manually create an admin user and post the login credentials in the “private data” field.

    Best regards,
    Nikko

    #1262746

    Thanks

    #1263181

    Hi muvolab,

    Thanks for giving us admin access.
    There are two reasons it’s not working, one is this CSS code in Quick CSS:

    /*Colore submenu*/
    .sub-menu a .avia-menu-text {
    font-weight:700 !important;
     color:#5a473c !important;
    }

    I removed the color property and just retained the font-weight to fix this.
    The second reason is you need to add Submenu links twice in Advanced Styling, one is its default state and the other is for the hover state.
    I added one for hover state (since you already added the default state) then I just used the black color, just change it to any color you want.

    Best regards,
    Nikko

    #1263253

    Hi Nikko,
    thanks for your help but I need to color the menu item when the page is visited. For example if I’m visiting shop/forno I need to color “forno” menu item.
    In advance styling I can change only default and hover.

    #1263514

    Hi muvolab,

    Yes, it’s only for two states. Try adding this CSS code in Quick CSS, just change the color:

    #header #header_main .avia-menu .sub-menu .current-menu-item > a .avia-menu-text {
      color: blue;
    }

    Also I changed the links under Shop from custom links to category links (which will have get the current-menu-item class when the page is active).

    Best regards,
    Nikko

    #1263667

    Now I have all the submenu items yellow when I visit one of the pages under “forno” and nothing changes if I use the code you have provided.
    Best regards

    #1263899

    Hi muvolab,

    I see, this was the code causing that behavior:

    /*colore voce menu attiva */
    .current-menu-item a .avia-menu-text {
    color: #e6a913 !important;
    }

    I corrected it with this code:

    /*colore voce menu attiva */
    .current-menu-item > a .avia-menu-text {
    color: #e6a913 !important;
    }

    Best regards,
    Nikko

    #1263959

    Great! Thank you

    #1263977

    Hi muvolab,

    You’re welcome :)
    Just let us know if you need further assistance.

    Best regards,
    Nikko

Viewing 12 posts - 1 through 12 (of 12 total)
  • You must be logged in to reply to this topic.