Copy Fix & Color Change

Site link:

  1. Under my main text: RVA Resumes & Recruiting
    It has some content about lldy. How do I take this off or replace the text with my own?

  2. How do I change the menu color and also the hover color? Also, on the footer in the Contact Us section I would like to change the Address color.

  3. Is there a way to make both home buttons look the same design wise? I would like both to look like the button on the left.

Thank you!

Hey there,

I hope you are well today and thank you for your question.

You can try achieving this by adding the following CSS code in the Custom CSS option of your theme on the below path.

Admin Area -> Appearance -> Customize -> Additional CSS

  1. I’m seeing you removed the text.

  2. Change menu color, menu hover, address color and address color link


/*change menu color and hover*/
#header .top-header .header-navigation ul li a {
    color: #b2780c;
}

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

#contact-us .section-content .contact-us-box .box-right span{
  color:black;
}

#contact-us .section-content .contact-us-box .box-right span a{
  color: #b2780c;
}

  1. Button Color CSS

#header.header-front-page .bottom-header .header-button-two{
    color: #b77822;
}

#header.header-front-page .bottom-header .header-button-two {
    background-color: rgba( 183, 120, 34, .2 ) !important;
}

#header.header-front-page .bottom-header .header-button-two{
    line-height: 57px;
    background: rgba(255,255,255,.2);
    border: 3px solid #b77822;
    border-radius: 3px;

Best regards,
Support.