Title: Remove Navigation Transition for Theme: Basically
Last modified: August 20, 2016

---

# Remove Navigation Transition for Theme: Basically

 *  [meemsnyc](https://wordpress.org/support/users/meemsnyc/)
 * (@meemsnyc)
 * [13 years, 8 months ago](https://wordpress.org/support/topic/remove-navigation-transition-for-theme-basically/)
 * I would like to remove the ease out transition off the Navigation menu but I 
   can’t figure out how to do that. I am using the Theme: Basically.
 * Here is the website:
    [http://www.oludar.com/html/](http://www.oludar.com/html/)
 * If you hover over the 2nd link in the nav, “menswear” you will see the subnav
   roll out and then it rolls back by easing out. This is causing an error in Chrome
   so I would like to remove the transition all together.
 * Help!!

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

 *  [Jamie Gill](https://wordpress.org/support/users/patchgill/)
 * (@patchgill)
 * [13 years, 8 months ago](https://wordpress.org/support/topic/remove-navigation-transition-for-theme-basically/#post-3043017)
 * Hi Meem,
 * The navigation effect is been been triggered in your script.js you would need
   to edit this :-
 *     ```
       // Drop down menus
       $j(".main-navigation ul li ul, .secondary-navigation ul li ul").parent().addClass("arrow");
       $j(".main-navigation ul li, .secondary-navigation ul li").hover(function(){
       $j(this).addClass("hover");
       $j(this).find("ul:first").slideToggle("fast");
       }, function(){
       $j(this).removeClass("hover");
       $j(this).find("ul:first").hide("slow");
       });
       });
       ```
   
 * The .hide(“slow”) is what is possibly causing the issue if its changed to .hide()
   it would probably fix your problem
 *  Thread Starter [meemsnyc](https://wordpress.org/support/users/meemsnyc/)
 * (@meemsnyc)
 * [13 years, 8 months ago](https://wordpress.org/support/topic/remove-navigation-transition-for-theme-basically/#post-3043044)
 * Ohhhhh, THAT WORKED.
 * THANK YOU SOOOOOO MUCH!!
 *  [Jamie Gill](https://wordpress.org/support/users/patchgill/)
 * (@patchgill)
 * [13 years, 8 months ago](https://wordpress.org/support/topic/remove-navigation-transition-for-theme-basically/#post-3043113)
 * No problemo glad it helped

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

The topic ‘Remove Navigation Transition for Theme: Basically’ is closed to new replies.

 * 3 replies
 * 2 participants
 * Last reply from: [Jamie Gill](https://wordpress.org/support/users/patchgill/)
 * Last activity: [13 years, 8 months ago](https://wordpress.org/support/topic/remove-navigation-transition-for-theme-basically/#post-3043113)
 * Status: not resolved

## Topics

### Topics with no replies

### Non-support topics

### Resolved topics

### Unresolved topics

### All topics
