• Hello

    In my website the menu font size is OK.
    The sub menu font size is very small and unreadable.
    Moreover, the colors of the sub menu are not friendly.

    How can I change sub menu font size and colors?

    Thanks
    Adi

Viewing 1 replies (of 1 total)
  • Hello there,

    You can manage it with this custom CSS code:

    
    @media only screen and (min-width: 992px) {
    
      .main-navigation ul ul li {
        background-color: #444;
        border-bottom: 1px solid #ff0000;  
      }
        
      .main-navigation ul ul a {
        font-size: 16px;
        color: #ff0000;
      }
    
      .main-navigation ul ul a:hover {
        color: #fff000;
      }
      
    }
    

    To apply it to your site, add it to Appearance > Customize > Additional CSS from dashboard.

    Regards,
    Kharis

Viewing 1 replies (of 1 total)
  • The topic ‘Font size’ is closed to new replies.