Hi I want to remove the links from the top items on the menu so they show as bold headings. I can’t find how to do it. Please help.
Hi,
Please add the following code to the Quick CSS field in Enfold theme options > General Styling tab
#top #header .mega_menu_title a {
font-weight: bold;
font-size: 20px;
margin-bottom: 5px;
}
Cheers!
Yigit
Thanks Yigit but I need to remove the links so they are just headings.
Hey,
You can do that by adding a new Custom Link with # for URL in Appearance > Menus. You can replace your existing menu items with the new custom links :)
Regards,
Yigit
I tried that but it created a new column. It didn’t give mega menu options.
Thanks
Hey,
Does removing the link using CSS work for you? If it does, please replace the code I posted here: https://kriesi.at/support/topic/turn-links-into-headings-in-menu/#post-1400694 with the following
#top #header .mega_menu_title a {
font-weight: bold;
font-size: 18px;
margin-bottom: 5px;
pointer-events: none;
}
Regards,
Yigit
Perfect thanks Yigit