menu color

Hi,

I can not find the menu color in css code? where i can find that?

Hello @raf171,

This is the code for the menu color:

#header .top-header .header-navigation ul li a {
    color: #fff;
}
#header .top-header .header-navigation ul li a:hover {
    color:#ffde00;
}

You can find this code inside main.min.css file on this path: /illdy/wp-content/themes/illdy/layout/css/main.min.css

Regards

Thank you for this awesome theme illdy.
I want to add more menus but some appears in the second row I am attaching the screenshot.
I want the menus “Media” and “Login” in the same row as other menus.

Hello there,

I hope you are doing well today.

You can use the following CSS code to reduce the left margin and font size to mare room in the menu by going to Appearance > Customize > Additional CSS and pasting it there.

/*Menu left margin and font size */
#header .top-header .header-navigation ul li {
    margin-left: 10px;
    font-size: 10px;

}

Best Regards,
Support