How can I make it so the menu on my website stays longer?

  • Unknown's avatar

    I’m trying to navigate my website, but when the mouse hovers on and hovers off it is just too fast, is there a way to have the menu stay longer even after the mouse hovered off? Just 1 extra second should do I think.

    Any help would be greatly appreciated.

    The blog I need help with is: (visible only to logged in users)

  • Unknown's avatar

    In hopes of keeping the forum organized, I would also like to know if there’s a way to get the menu bars like this?
    Screen-shot-2019-05-10-at-3-28-05-PM

    Currently if you look at the website, you will find that the second menu bars come when you hover over Early work, however I haven’t found a way to display the year options completely by hovering over the years text.

  • Unknown's avatar

    Is there any way to remove the word “tag:” and just leave the 2018 text?
    Screen-shot-2019-05-21-at-1-51-14-PM
    https://quintinriveratoro.com/tag/2018/

    Is this all in css? Any light on the subject would be greatly appreciated.

  • Unknown's avatar

    From my end the Nav Bar is very normal

  • Unknown's avatar

    Thanks for writting @samuelonjoa970, it’s a small issue but one that brings Quintin (the site owner a lot of frustration) gonna try and add maybe some padding to the hover areas to see if that works. A friend suggested that solution we’ll see if it works. I am very new at all this css coding.

  • Unknown's avatar

    I found a way to edit two of the issues I have with the word “tag” and the navigation header but it seems I need to edit the .php files, however I cannot find a way to get them through an FTP since for some reason I cannot find the username and password for them on my email.

    Anyway to get them from the WordPress admint interface?

  • Unknown's avatar

    Getting a friend to help with two of the CSS issues, the navigation menu and the “tag” text. Hope I can get this to work. Any help on the three issues above would be greatly appreciated.

  • Unknown's avatar

    Managed to get the “tag” title out of the page with a display:none;

    Working on the menu, however I ran into an issue with a possible solution.

    So the solution is as follows and should put a delay on the transition from hover to unhovered, making it so it doesn’t leave too quickly when you take your mouse off the menu.
    ul.sub-menu {
    visibility: hidden;
    transition-delay: .02s 1s;
    }
    .parent:hover ul.sub-menu {
    visibility: visible;
    transition-delay: 0s;
    }

    However the only thing I am achieving with this code is to hide the menu altogether.

    Any help would be greatly appreciated. Thank you.

  • Unknown's avatar

    Can you give the link to site I like to check the source code first

  • Unknown's avatar
  • Unknown's avatar

    Still no luck with the menus.

  • Unknown's avatar

    Is there any way to display all the years appear when you go over the years menu text?

  • The topic ‘How can I make it so the menu on my website stays longer?’ is closed to new replies.