• I am trying to change the font color of the email and phone number at the top. Using google developer tools i found where it was located and tried to change the css using this code:

    .head-contact-info {
        color: #D7DD31;
    }

    But it is not working. Any help would be greatly appreciated.

    My website is worldwidesweeping.com

Viewing 4 replies - 1 through 4 (of 4 total)
  • Thread Starter shoostah

    (@shoostah)

    Also i need to change the Color for the navigation buttons, any help on how to do this would be amazing!

    Hi,

    Please go to Admin Dashboard >>Appearance >>Theme Options >>General Settings and find custom CSS editor.

    Now copy below CSS in Custom CSS editor for change the color of email and phone number.

    .head-contact-info li a {
      color: #COLOR-CODE !important;
    }

    And for changing the color of navigation button please copy below CSS in Custom CSS Editor.

    .enigma_carousel-prev, .enigma_carousel-next {
      border: 2px solid #COLOR-CODE !important;
    }
    .enigma_carousel-prev i, .enigma_carousel-next i {
      color: #COLOR-CODE !important;
    }
    .enigma_carousel-prev:hover, .enigma_carousel-next:hover{
      background-color: #COLOR-CODE !important;
    }

    Save the changes.

    Thanks.

    Thread Starter shoostah

    (@shoostah)

    Thank you for your response weblizar! Unfortunately, my navigation buttons did not change. Right now they currently are set to the color i want, but if i hover over the button it turns blue. How can i make it all the same color, even when i hover it. The buttons im talking about are the “Home” and “Where we sweep” Buttons in the navigation bar.

    Hi,

    Sorry for inconveniences.

    Please use below CSS in custom CSS Editor

    .navbar-default .navbar-nav li a:hover {
      background-color: #d7dd31;
    }

    Thanks.

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Trying to change the contact info color at the top of page’ is closed to new replies.