Okay
  Public Ticket #1799370
search bar text colour
Closed

Comments

  •  30
    damien started the conversation

    Hi,


    Im trying to change the search abr text colour but not doing very well. Please can you point me in the right directio for how to edit the CSS to fix this?


    Currently im using;


     /* desktop header search colour fix */
    .nectar .material-open #search-outer #search #search-box input[type="text"]{ 
        color: #009fe3!important;
        height: auto!important;
        font-size: 60px!important;
        text-align: left!important;
        text-transform: none!important;
        border-bottom: 4px solid #009fe3;
     }


    thanks in advance for anything you can do.


    cheers

    Damien


  •  8,996
    Tahir replied

    Add this into the Custom CSS box located in your Salient Options panel (All custom css provided is tested in the Live Browser so it will work as intended . If you cant see any changes make sure there is no red cross in the Custom CSS Box as that syntax error would cause all css below it to not show up on the Frontend):

    body.material #header-outer #search-outer #search input[type="text"] {
        color: #000 !important;
    }

    Thanks


    ThemeNectar Support Team 

  •  30
    damien replied

    Hi,


    Thanks . This worked but the text underneath that says "Hit enter to search or Esc to close" is also white.

    Thanks
    Damien

  •  8,996
    Tahir replied

    Hey Again,

    Add this into the Custom CSS box located in your Salient Options panel (All custom css provided is tested in the Live Browser so it will work as intended . If you cant see any changes make sure there is no red cross in the Custom CSS Box as that syntax error would cause all css below it to not show up on the Frontend):

    body[data-header-color="custom"] #search-outer #search .span_12 span {
        color: #000 !important;
        opacity: 1 !important;
    }

    Thanks


    ThemeNectar Support Team 

  •  30
    damien replied

    Thanks Tahir. You are the best!