Okay
  Public Ticket #3782694
Change form text color
Closed

Comments

  •  3
    eddie81b4u started the conversation

    In our form there are 2 places in which I can't seem to change the color. One is the dropdown menu (first question) in the form at the bottom of the page where it says "Expansion Preference". Here when viewed in chrome on a PC, the dorp-down options are not visible, text color is in white and background is in white. I would like to make the text grey, hex  #444444 in that drop-down menu.

    Also the rollover state on the submit button, I was hoping to make that state have the submit text orange hex #ff6600.

    Is this something I would be able to add within the CSS?

  •  1,918
    Judith replied

    Hi Eddie,

    Thanks for writing to us.

    To make the changes as requested, you will need to add some custom CSS code. To do this, please follow these steps:

    From your WordPress dashboard, Navigate to Salient > General Settings > CSS/Script Related. In the custom code area, insert the provided CSS snippet:

    select#\30 0NU1000001ulA9 {
        color: #444444;
    }
    .container-wrap .span_12.light input[type=submit]:hover {
        color: #ff6600 !important;
    }

    Once the code is added, save and refresh the page to see if the change has been applied. In case it helps, please check this section from the documentation on CSS/Script Related. If this does not work as expected or If you have any further questions or need additional assistance, don't hesitate to write back, I'm happy to help. 

     

  •  8,936
    Tahir replied

    Hey Again,

    Add this into the Custom CSS box in your Salient Theme Options panel (We write all Custom CSS in the Live Browser to ensure accuracy. If you cannot see any changes, make sure there is no red cross in the Custom CSS Box as any syntax error would cause all CSS under that line of code to not show up on the Frontend):

    .span_12.light select option {
        color: #bd195e !important;
    }
    
    body[data-form-submit="see-through"] .container-wrap .span_12.light input[type=submit]:hover {
        background: #ff6600 !important;
    }
    

    Thanks


    ThemeNectar Support Team 

  •  3
    eddie81b4u replied

    It worked like a charm. Thank you guys so much, I love the work that you do. Have a great holiday.