Title: [Theme: Responsive] small menu fix
Last modified: August 20, 2016

---

# [Theme: Responsive] small menu fix

 *  Resolved [maxemil](https://wordpress.org/support/users/maxemil/)
 * (@maxemil)
 * [14 years, 1 month ago](https://wordpress.org/support/topic/theme-responsive-small-menu-fix/)
 * theme version 1.4.1
 * When selecting a parent item in the menu, the children hover background are black,
   and the text are black.
 * If you want to be able to read the text, modify the style.css and add color:#
   fff; for this item
 * (appx line 1580 and onwards..)
 *     ```
       .menu .current_page_item a {
       	background-color:#343434;
           color:#fff;
       }
       ```
   
 * Another thing I do, is to modify the cursor on active sub-pages (displaying no
   hover hand, but normal arrow)
 *     ```
       ul.sub-menu .current_page_item a {
       background:transparent !important;
       color:#444;
       cursor:default;
       }
       ```
   
 * [http://wordpress.org/extend/themes/responsive/](http://wordpress.org/extend/themes/responsive/)

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

 *  [Emil Uzelac](https://wordpress.org/support/users/emiluzelac/)
 * (@emiluzelac)
 * [14 years, 1 month ago](https://wordpress.org/support/topic/theme-responsive-small-menu-fix/#post-2665477)
 * Hi and thanks I will check this and apply fix as well.
 * Emil
 *  [Emil Uzelac](https://wordpress.org/support/users/emiluzelac/)
 * (@emiluzelac)
 * [14 years, 1 month ago](https://wordpress.org/support/topic/theme-responsive-small-menu-fix/#post-2665479)
 * All right, so I was trying to re-create the “black” background issues and no 
   joy [http://cl.ly/0e2t2M0i192w3V0c3W0u](http://cl.ly/0e2t2M0i192w3V0c3W0u) tried
   all possible circumstances, regular menu, custom menu, different levels and all
   comes up the same.
 * This must be browser related issue, do you mind sharing that with me?
 * Emil
 *  Thread Starter [maxemil](https://wordpress.org/support/users/maxemil/)
 * (@maxemil)
 * [14 years, 1 month ago](https://wordpress.org/support/topic/theme-responsive-small-menu-fix/#post-2665519)
 * google chrome / latest.. (18 something)
 * see a small vid here.. [http://oneconsult.dk/tmp/](http://oneconsult.dk/tmp/)
 * Awsome work Emil Uzelac, it was mostly for selfhelp if anyone stumbles on the
   same 🙂
 *  [Emil Uzelac](https://wordpress.org/support/users/emiluzelac/)
 * (@emiluzelac)
 * [14 years, 1 month ago](https://wordpress.org/support/topic/theme-responsive-small-menu-fix/#post-2665520)
 * Chrome on PC gotcha and will submit the fix.
 * Thanks,
    Emil
 *  [Emil Uzelac](https://wordpress.org/support/users/emiluzelac/)
 * (@emiluzelac)
 * [14 years, 1 month ago](https://wordpress.org/support/topic/theme-responsive-small-menu-fix/#post-2665532)
 * I’ve ended up with this:
 *     ```
       .menu li li a {
       	background:transparent!important;
       	border:none;
       	color:#444;
       	font-size:12px;
       	font-weight:400;
       	height:auto;
       	height:20px;
       	line-height:20px;
       	padding:5px 10px;
       	text-shadow:none;
       	white-space:nowrap;
       }
   
       .menu li li a:hover {
       	background:#f5f5f5 !important;
       	background-image:none;
       	border:none;
       	color:#444;
       	filter:none;
       }
       ```
   
 * For the current_page_item issues 🙂
 * Thanks,
    Emil
 *  Thread Starter [maxemil](https://wordpress.org/support/users/maxemil/)
 * (@maxemil)
 * [14 years, 1 month ago](https://wordpress.org/support/topic/theme-responsive-small-menu-fix/#post-2665538)
 * confirmed, gj!
    – removed video 😉
 *  [Emil Uzelac](https://wordpress.org/support/users/emiluzelac/)
 * (@emiluzelac)
 * [14 years, 1 month ago](https://wordpress.org/support/topic/theme-responsive-small-menu-fix/#post-2665543)
 * We need more people like you bud, so friendly and ready to jump-in with some 
   answers and I like that.
 * Cheers,
    Emil

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

The topic ‘[Theme: Responsive] small menu fix’ is closed to new replies.

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

 * 7 replies
 * 2 participants
 * Last reply from: [Emil Uzelac](https://wordpress.org/support/users/emiluzelac/)
 * Last activity: [14 years, 1 month ago](https://wordpress.org/support/topic/theme-responsive-small-menu-fix/#post-2665543)
 * Status: resolved