Title: Help, hover on menu.
Last modified: August 21, 2016

---

# Help, hover on menu.

 *  [HaloBing](https://wordpress.org/support/users/halobing/)
 * (@halobing)
 * [12 years, 6 months ago](https://wordpress.org/support/topic/help-hover-on-menu/)
 * Hi can anyone help me with this:
 * When you enter at site:
 * [http://www.apartmens-pliva.com](http://www.apartmens-pliva.com)
 * You will see language chooser, now can i make that
 *     ```
       .main-navigation ul ul li:hover > a {
   
       background: #00bcff;
   
       color: #FFFFFF;
   
       }
       ```
   
 *  pass by chooser

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

 *  [Andrew Nevins](https://wordpress.org/support/users/anevins/)
 * (@anevins)
 * WCLDN 2018 Contributor | Volunteer support
 * [12 years, 6 months ago](https://wordpress.org/support/topic/help-hover-on-menu/#post-4349320)
 * Are you sure you need to go 2 `<ul>` levels deep?
 *  Thread Starter [HaloBing](https://wordpress.org/support/users/halobing/)
 * (@halobing)
 * [12 years, 6 months ago](https://wordpress.org/support/topic/help-hover-on-menu/#post-4349341)
 * that is default css on this theme i think because i didnt change anything
 *  [Andrew Nevins](https://wordpress.org/support/users/anevins/)
 * (@anevins)
 * WCLDN 2018 Contributor | Volunteer support
 * [12 years, 6 months ago](https://wordpress.org/support/topic/help-hover-on-menu/#post-4349345)
 * Where are you adding your CSS modifications?
 *  Thread Starter [HaloBing](https://wordpress.org/support/users/halobing/)
 * (@halobing)
 * [12 years, 6 months ago](https://wordpress.org/support/topic/help-hover-on-menu/#post-4349347)
 * at bottom of style.css
 * but here I think is problem in conflict that qtrans dont have hover and <nav>
   have it so, css is applying on qtrans
 *  [Andrew Nevins](https://wordpress.org/support/users/anevins/)
 * (@anevins)
 * WCLDN 2018 Contributor | Volunteer support
 * [12 years, 6 months ago](https://wordpress.org/support/topic/help-hover-on-menu/#post-4349349)
 * I can’t see that CSS modification (the code in your original post) in your Child
   Theme style.css file [http://apartmens-pliva.com/wp-content/themes/vatange-child/style.css?ver=1.1.2](http://apartmens-pliva.com/wp-content/themes/vatange-child/style.css?ver=1.1.2)
 * Are you sure you’re working on the right file?
 *  Thread Starter [HaloBing](https://wordpress.org/support/users/halobing/)
 * (@halobing)
 * [12 years, 6 months ago](https://wordpress.org/support/topic/help-hover-on-menu/#post-4349351)
 * under
 * /* Dodane stvari */
 * translate : (Added stuff)
 *  [Andrew Nevins](https://wordpress.org/support/users/anevins/)
 * (@anevins)
 * WCLDN 2018 Contributor | Volunteer support
 * [12 years, 6 months ago](https://wordpress.org/support/topic/help-hover-on-menu/#post-4349359)
 * Put this at the bottom of your Child Theme style.css file:
 *     ```
       .main-navigation #language li:hover,
       .main-navigation #language li a:hover {
        background-color: none;
       }
       ```
   
 * It’ll be something like that.
 * Make sure you do your changes in the Child Theme.
 *  Thread Starter [HaloBing](https://wordpress.org/support/users/halobing/)
 * (@halobing)
 * [12 years, 6 months ago](https://wordpress.org/support/topic/help-hover-on-menu/#post-4349360)
 * it doesn’t work…
 *  [Andrew Nevins](https://wordpress.org/support/users/anevins/)
 * (@anevins)
 * WCLDN 2018 Contributor | Volunteer support
 * [12 years, 6 months ago](https://wordpress.org/support/topic/help-hover-on-menu/#post-4349361)
 * It wasn’t supposed to, but you get the idea right?
 *  [Andrew Nevins](https://wordpress.org/support/users/anevins/)
 * (@anevins)
 * WCLDN 2018 Contributor | Volunteer support
 * [12 years, 6 months ago](https://wordpress.org/support/topic/help-hover-on-menu/#post-4349362)
 * Try this:
 *     ```
       .main-navigation #language li:hover {
       	background-color: transparent;
       }
   
       .main-navigation #language li.lang-en a:hover {
       	background: url(/wp-content/plugins/qtranslate/flags/gb.png) no-repeat;
       }
   
       .main-navigation #language li.lang-rs a:hover {
       	background: url(/wp-content/plugins/qtranslate/flags/rs.png) no-repeat;
       }
       ```
   
 *  Thread Starter [HaloBing](https://wordpress.org/support/users/halobing/)
 * (@halobing)
 * [12 years, 6 months ago](https://wordpress.org/support/topic/help-hover-on-menu/#post-4349364)
 * Yes i know..
 * But:
 * [http://prntscr.com/26jxnz](http://prntscr.com/26jxnz)
 *     ```
       .main-navigation .qtrans_language_chooser li:hover,
       .main-navigation .qtrans_language_chooser li a:hover {
        background-color: none;
       }
       ```
   
 * [http://prntscr.com/26jy4h](http://prntscr.com/26jy4h)
 *     ```
       .main-navigation .qtrans_language_chooser li:hover,
       .main-navigation .qtrans_language_chooser li a:hover {
        opacity: 0.4;
       }
       ```
   
 * well line is ok but how to disable :/
 *  Thread Starter [HaloBing](https://wordpress.org/support/users/halobing/)
 * (@halobing)
 * [12 years, 6 months ago](https://wordpress.org/support/topic/help-hover-on-menu/#post-4349369)
 * I had to change 2 lines
 *     ```
       .main-navigation ul li :hover {
       background: #00bcff;
       color: #FFFFFF;
       }
       ```
   
 * to
    `.main-navigation ul li :hover {color: #FFFFFF;}`
 * and add
 *     ```
       #qtranslate-chooser li:hover {
       	background:none;
       }
       ```
   
 * thank you on tips 🙂

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

The topic ‘Help, hover on menu.’ is closed to new replies.

 * ![](https://i0.wp.com/themes.svn.wordpress.org/vantage/1.20.33/screenshot.jpg)
 * Vantage
 * [Support Threads](https://wordpress.org/support/theme/vantage/)
 * [Active Topics](https://wordpress.org/support/theme/vantage/active/)
 * [Unresolved Topics](https://wordpress.org/support/theme/vantage/unresolved/)
 * [Reviews](https://wordpress.org/support/theme/vantage/reviews/)

 * 12 replies
 * 2 participants
 * Last reply from: [HaloBing](https://wordpress.org/support/users/halobing/)
 * Last activity: [12 years, 6 months ago](https://wordpress.org/support/topic/help-hover-on-menu/#post-4349369)
 * Status: not resolved