- This topic has 15 replies, 4 voices, and was last updated 5 months, 1 week ago by
Fernando.
-
AuthorPosts
-
October 7, 2022 at 6:24 am #2366183
eran
Hi,
When I run the lighthouse test, it shows “Links are not crawlable”.
It shows it’s from my “More Reviews” li in the menu with no link.
How can I make a li in the menu without a link so it won’t show that error?October 8, 2022 at 5:06 am #2366958David
StaffCustomer SupportHi there,
try adding a
#
to the menu items URL.Documentation: http://docs.generatepress.com/
Adding CSS: http://docs.generatepress.com/article/adding-css/October 8, 2022 at 5:37 am #2366979eran
But then it will hurt my SEO.
It will be duplicate content, right?October 8, 2022 at 6:53 am #2367026David
StaffCustomer SupportI don’t think so.
The issue is the HTML contains<a>
anchor element that has no href. By adding the#
you give it a href.
The alternative is to ignore that diagnostic, its not going to affect how users navigate your siteDocumentation: http://docs.generatepress.com/
Adding CSS: http://docs.generatepress.com/article/adding-css/October 9, 2022 at 1:21 am #2367522eran
I did it with CSS I used this line:
#primary-menu ul .menu-item-1176>a {
pointer-events: none;
}But the problem now is that the review changes the color for the hover color.
How can I fix that?October 9, 2022 at 5:31 am #2367665David
StaffCustomer SupportInclude the color your want it to be in your CSS eg.
#primary-menu ul .menu-item-1176>a { pointer-events: none; color: var(--3); }
Documentation: http://docs.generatepress.com/
Adding CSS: http://docs.generatepress.com/article/adding-css/October 10, 2022 at 11:58 am #2369142eran
Hi David.
It didn’t fix my problem because the hover color does not change to the menu hover color when I’m hover the “review” or in the submenu pages.October 10, 2022 at 2:24 pm #2369229Ying
StaffCustomer SupportI don’t see
color: var(--3);
has been added to the CSS, I only see thepointer-events: none;
.Can you make sure the cache is cleared after you modified the CSS?
Let me know 🙂
October 10, 2022 at 8:03 pm #2369389eran
It’s because I delete it.
Now I add it back.October 10, 2022 at 9:11 pm #2369419Fernando Customer Support
Try this CSS:
.main-navigation .main-nav ul li.menu-item-1176 { pointer-events: none; } .main-navigation .main-nav ul li.menu-item-1176:hover > a { color: var(--7); } .main-navigation .main-nav ul li.menu-item-1176 > a { color: var(--3); }
October 11, 2022 at 8:04 am #2370053eran
Didn’t work
October 11, 2022 at 10:49 am #2370231Ying
StaffCustomer SupportI checked your other links, it seems if you don’t add any color CSS to the menu item 1176, it behaves the same as other menu items.
Can you specify what color you want it to be when hovered and when as the current menu item?
October 11, 2022 at 11:53 am #2370310eran
I want the “Review” to be the same hover color as the other menu pages.
Plus, when I’m on the “Best Audio Mixer For Twitch Streaming” page under “review” I want the “review” to have a hover color.
I want it to behave like a regular menu item.October 11, 2022 at 12:17 pm #2370331Ying
StaffCustomer SupportTry remove other CSS, then add this CSS only:
#primary-menu ul li[class*="current-menu-"].menu-item-1176>a { color: var(--7); } .main-navigation .main-nav ul li.menu-item-1176>a { pointer-events: none; } .main-navigation .main-nav ul li.menu-item-1176:hover > a { color: var(--7); } .main-navigation .main-nav ul li.menu-item-1176 > a { color: var(--3); }
October 11, 2022 at 8:24 pm #2370554eran
It doesn’t work.
When I’m hovering it, the color doesn’t change, and when I’m not hovering it, the color has the hover color. -
AuthorPosts
- You must be logged in to reply to this topic.