Changing menu color and page title (heading) color

Hi,

I would like to know how to change the color of each page title, as well as the color of the menu title and hover color. The current settings under the theme Illdy are set to #ffffff font color and #f1d204 hover color. I would like to change to #5e5e5e as the font color and #f1d204 for the hover color.

See the highlighted items in the image below:

Thanks so much!

Hey there,
Hope you’re doing well today

In regards to the page title, there are usually two titles so I’m going to just give the title for the title on the banner, and title in the body.

Kindly add and save the following code to Appearance > Customize > Additional CSS:

/*banner page title color*/
#header .bottom-header h1{
    color:#ededed!important;
}

/*body page title hover*/
#blog .blog-post .blog-post-title{
     color: #ededed!important;
}

/*menu color*/
#header .top-header .header-navigation ul li a{
  color:#5e5e5e!Important;
}

/*menu color hover*/
#header .top-header .header-navigation ul li a:hover{
  color:#f1d204!Important;
}

Please let me know if there are any other questions that I may help with. :slight_smile:

Best Regards,
Support