• The menu items across my header become a drop down menu on mobile. I would like to change the white text color of the drop down menu items but can’t locate where to do this.

    The page I need help with: [log in to see the link]

Viewing 1 replies (of 1 total)
  • Hello @jshanker2,

    We can change the color with the help of custom css. You need to apply below given css under Appearance -> Customize -> Additional Css-

    @media only screen and (max-width: 1024px){
    .mobile_grid_landscape .mobile_header .top_nav_mobile .main_menu_nav>li>a {
    font-size: 20px;
    color: #1e5679;
    }
    .mobile_grid_landscape .mobile_header .top_nav_mobile .main_menu_nav li.current_page_item>a{
    color: #1e5679;
    }
    }
    

    Kind regards,

    Manoj

Viewing 1 replies (of 1 total)
  • The topic ‘Drop Down Menu text color [mobile]’ is closed to new replies.