Title: Menu Link Issue?
Last modified: March 28, 2020

---

# Menu Link Issue?

 *  Resolved [jazler0902](https://wordpress.org/support/users/jazler0902/)
 * (@jazler0902)
 * [6 years, 6 months ago](https://wordpress.org/support/topic/menu-link-issue-3/)
 * Hi! I’ve been having a tricky time with my site menu. I finally have everything
   in the correct order but for some reason the menu category aren’t working as 
   clickable links? IE If I have a menu category that’s “Divorce” and it expands
   to show multiple pages, the “Divorce” page itself, which is also the menu page,
   isn’t clickable. For now, I’ve doubled up so that the first page under “Divorce”
   also reads “Divorce” – this submenu item works fine. Any thoughts / insight on
   how to correct this? I’ve never had it happen before. Thanks!
 * The page I need help with: _[[log in](https://login.wordpress.org/?redirect_to=https%3A%2F%2Fwordpress.org%2Fsupport%2Ftopic%2Fmenu-link-issue-3%2F%3Foutput_format%3Dmd&locale=en_US)
   to see the link]_

Viewing 1 replies (of 1 total)

 *  [Spiracle Themes](https://wordpress.org/support/users/spiraclethemes/)
 * (@spiraclethemes)
 * [6 years, 6 months ago](https://wordpress.org/support/topic/menu-link-issue-3/#post-12600592)
 * Hi [@jazler0902](https://wordpress.org/support/users/jazler0902/)
 * Yes, there is a menu link issue. We will try to resolve this in our next update
   hopefully.
 * For now, you can follow these steps to make the top menu working. This will involve
   adding some CSS and Js code in your parent theme Krystal.
 * 1) Go to the parent theme folder ie ( wp-content/themes/krystal )
    2) find file
   template-functions.php inside the inc folder and open it with any text editor
   3) Once opened, find line no 57 and 58 and change values of **‘fallback_cb’**
   and **‘walker’** to **”**. Make sure the walker value has a closing **)** at 
   the end.
 * [VIEW SCREENSHOT](https://i.imgur.com/TuB2UCK.jpg)
 * 4) Similarly, do the above steps for line no 72,73 and 135,136 and 150,151
 * 5) Next, open **krystal-style.css** inside the **css **folder and open it with
   any text editor
    and paste the following CSS at last
 *     ```
       .res-menu .navbar-collapse ul li.dropdown .fas {
           position: absolute;
           z-index: 99;
           width: 60px;
           right: 0;
           top: 0;
           line-height: 50px;
           border-left: 1px solid rgba(255, 255, 255, 0.13);
           color: #b3b3b9;
           font-size: 18px;
           text-align: center;
           cursor: pointer;
           -webkit-transition: all 0.3s ease-in-out;
           transition: all 0.3s ease-in-out;
       }
       ```
   
 * [VIEW SCREENSHOT](https://i.imgur.com/6lE0agh.jpg)
 * 6) Next open **krystal-main.js** inside the **js** folder and paste the code 
   below just after line no **108**
 *     ```
       /*--- adding dropdown class to menu -----*/
       $("ul.sub-menu").parent().addClass("dropdown");
       $("ul.sub-menu").addClass("dropdown-menu");
       $("ul#menuid li.dropdown a").addClass("dropdown-toggle");
       $("ul.sub-menu li a").removeClass("dropdown-toggle"); 
       $('nav li.dropdown > a').append('<span class="caret"></span>');
       $('a.dropdown-toggle').attr('data-toggle', 'dropdown'); 
   
       /*-- Mobile menu --*/
       if($('.res-menu .navbar-collapse').length) {
           $('.res-menu .navbar-collapse ul li.dropdown').append(function () {
               return '<i class="fas fa-angle-down" aria-hd="true"></i>';
           });
           $('.res-menu .navbar-collapse ul li.dropdown .fas').on('click', function () {
                $(this).parent('li').children('ul').slideToggle();
           });
       }
       ```
   
 * [VIEW SCREENSHOT](https://i.imgur.com/brv8zyd.jpg)
 * 7) After this step, please clear your browser cache or check your website in 
   incognito mode.
 * Let us know if you find it difficult or having any problems doing it
 * Best Regards

Viewing 1 replies (of 1 total)

 The topic ‘Menu Link Issue?’ is closed to new replies.

 * ![](https://i0.wp.com/themes.svn.wordpress.org/krystal-lawyer/1.2.4/screenshot.
   png)
 * Krystal Lawyer
 * [Support Threads](https://wordpress.org/support/theme/krystal-lawyer/)
 * [Active Topics](https://wordpress.org/support/theme/krystal-lawyer/active/)
 * [Unresolved Topics](https://wordpress.org/support/theme/krystal-lawyer/unresolved/)
 * [Reviews](https://wordpress.org/support/theme/krystal-lawyer/reviews/)

## Tags

 * [menu](https://wordpress.org/support/topic-tag/menu/)

 * 1 reply
 * 2 participants
 * Last reply from: [Spiracle Themes](https://wordpress.org/support/users/spiraclethemes/)
 * Last activity: [6 years, 6 months ago](https://wordpress.org/support/topic/menu-link-issue-3/#post-12600592)
 * Status: resolved