Title: Modify Dropdown Menu
Last modified: December 20, 2023

---

# Modify Dropdown Menu

 *  Resolved [jennant](https://wordpress.org/support/users/jennant/)
 * (@jennant)
 * [2 years, 3 months ago](https://wordpress.org/support/topic/modify-dropdown-menu/)
 * Hi Support team,
 * Can you please help me to modify the dropdown menu here ([https://imgur.com/a/ZnEwlqO](https://imgur.com/a/ZnEwlqO))?
 * Specifically, I want:
    - Remove some pages (links)
    - Remove ‘Create a New Course’ part
    - Change the color of hover links
 * Thank you so much for your support!
 * Jenna
 * The page I need help with: _[[log in](https://login.wordpress.org/?redirect_to=https%3A%2F%2Fwordpress.org%2Fsupport%2Ftopic%2Fmodify-dropdown-menu%2F%3Foutput_format%3Dmd&locale=en_US)
   to see the link]_

Viewing 2 replies - 1 through 2 (of 2 total)

 *  [Parag Das](https://wordpress.org/support/users/parag44/)
 * (@parag44)
 * [2 years, 3 months ago](https://wordpress.org/support/topic/modify-dropdown-menu/#post-17303194)
 * [@jennant](https://wordpress.org/support/users/jennant/)
    1. To remove some links you can use the following code:
 *     ```wp-block-code
       add_filter('tutor_dashboard/nav_items', 'remove_some_links_dashboard');
       function remove_some_links_dashboard($links){
       	unset($links['reviews']);
       	unset($links['wishlist']);
       	return $links;
       }
       ```
   
 * 2. To remove the “Create a new course” section you can add the following CSS 
   codes on Appearance > Customize > Additional CSS:
 *     ```wp-block-code
       .tutor-submenu-login-section-instructor {
           display: none;
       }
       ```
   
 * 3. To remove the link hover color you can add the following CSS codes on Appearance
   > Customize > Additional CSS. Replace the color code as you need.
 *     ```wp-block-code
       .tutor-header-profile-menu-items ul li a:hover {
           color: #456bed;
       }
       ```
   
 * Thank you!
   Best Regards
 *  Thread Starter [jennant](https://wordpress.org/support/users/jennant/)
 * (@jennant)
 * [2 years, 3 months ago](https://wordpress.org/support/topic/modify-dropdown-menu/#post-17322184)
 * Hey Parag Das,
 * Thank you so much for your support!
    -  This reply was modified 2 years, 3 months ago by [jennant](https://wordpress.org/support/users/jennant/).

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘Modify Dropdown Menu’ is closed to new replies.

 * ![](https://i0.wp.com/themes.svn.wordpress.org/tutorstarter/3.0.4/screenshot.
   png)
 * TutorStarter
 * [Support Threads](https://wordpress.org/support/theme/tutorstarter/)
 * [Active Topics](https://wordpress.org/support/theme/tutorstarter/active/)
 * [Unresolved Topics](https://wordpress.org/support/theme/tutorstarter/unresolved/)
 * [Reviews](https://wordpress.org/support/theme/tutorstarter/reviews/)

 * 2 replies
 * 2 participants
 * Last reply from: [jennant](https://wordpress.org/support/users/jennant/)
 * Last activity: [2 years, 3 months ago](https://wordpress.org/support/topic/modify-dropdown-menu/#post-17322184)
 * Status: resolved