How to change title colors in Jumbotron Section?

Hey guys… i was searching the forum but i couldn’t find any way to change the title colors and font.
How do i change it ?
And how do i remove latest news section?
And how do i change menu text colors?
Thx really appropriate it :slight_smile:
My website is: greenusys.com
i want everything in green :3

Hi,

Change the title colors and font, use this css code:

#header .bottom-header h2 {
color:#8ed65c;
font-size:35px
}

And how do i remove latest news section? Go in appearance > customize>latest news and deselect the latest news section(see attach)

And how do i change menu text colors?

Use this css code:

#header .top-header .header-navigation ul li {
color:#8ed65c;
}

Thx for the help @colorlib support
But i can still see yellow color when i hover over the menu items :3

Hi,

Use this css code for hover:


#header .top-header .header-navigation ul li a:hover {
    color: #8ed65c;
}

Thanks,
Cristian