Mobile menu, change font color

0

I can not change the font color in mobile mode, it turns white, and if I change the CSS to white it changes the site, it follows the menu code.

#advanced_menu_toggle, #advanced_menu_hide {
    position: absolute;
    border-radius: 2px;
    height: 46px;
    width: 46px;
    line-height: 46px;
    text-decoration: none;
    text-align: center;
    right: 0;
    top: 15%;
    color: #000000 !important;
    margin-top: -5px;
    z-index: 10000;
    border-style: solid;
    border-width: 1px;
    font-size: 30px;
    display: none;
}
    
asked by anonymous 19.10.2017 / 20:55

1 answer

0

Make sure you're applying color to the <a href... tag on the menu, that's where it should be applied.

Given that this element of the #advanced_menu_toggle id is applied to a <ul> , it would look like this:

#advanced_menu_toggle li a {
  color: #000000;
  ...
}

If the color changes in 'desktop mode' too, you should use the media queries.

    
19.10.2017 / 23:16