How can I make it so the menu on my website stays longer?
-
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)
-
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?

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.
-
Is there any way to remove the word “tag:” and just leave the 2018 text?

https://quintinriveratoro.com/tag/2018/Is this all in css? Any light on the subject would be greatly appreciated.
-
-
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.
-
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?
-
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.
-
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.
-
-
-
-
- The topic ‘How can I make it so the menu on my website stays longer?’ is closed to new replies.