How can I change the style of the language button?

  • aurex
    Asked on March 23, 2017 at 10:34 AM

    Hey guys, 

     

    I need to change the color of the button Languages, how can I do this? 

    This is my form : https://eu.jotform.com/build/70652983700660

     

    Thanks! 

     

    aurex

  • Support_Management Jotform Support
    Replied on March 23, 2017 at 1:19 PM

    Hello Aurex, for us to better assist you, please get back to us with the following:

    1. Are you referring to this:

    How can I change the style of the language button? Image 1 Screenshot 30

    Or this:

    How can I change the style of the language button? Image 2 Screenshot 41

    2. If it's the 1st image, do you want the entire dropdown menu container to be different? What color do you prefer?

    3. If it's the 2nd image, what color do you want as the background instead of white?

    Basically, what we would request from you is be as detailed as possible when posting requests so we can give you the answer immediately. If you could share an image/screenshot of how exactly you want it to look like, that would be most appreciated.

    Related guide: How-to-add-screenshots-images-to-questions-in-support-forum 

  • aurex
    Replied on March 23, 2017 at 1:46 PM
    Hey!
    Thanks a lot, yes i would like to change the color of your 1 proposal (number 1), i wish the grey was more darker because we can’t see it.
    Thanks!!
    aurélie
    ...
  • Support_Management Jotform Support
    Replied on March 23, 2017 at 3:02 PM

    Thanks Aurélie - That gray border and down arrow can be changed by injecting the following CSS codes:

    .language-dd:active, .language-dd:hover {

        color: #000 !important;

        border: 1px solid #000 !important;

        margin-right: 5px;

    }

    .language-dd:active:before, .language-dd:hover:before {

        border-top-color: #000 !important;

    }

    The result would be a black border and down arrow:

    How can I change the style of the language button? Image 1 Screenshot 20

    Feel free to change the HEX value of the colors if needed.

    Related guide: How-to-Inject-Custom-CSS-Codes