Marcar opciones

  • COMUNICACIONESUA
    Fecha de consulta 26 de febrero de 2024, 11:34

    En un menú desplegable puedo dejar algunas opciones en negrita?

  • Mike_G Jotform Support
    Fecha de respuesta 26 de febrero de 2024, 14:44

    Hi vinculacionua,

    Thanks for reaching out to Jotform Support. Unfortunately, our Spanish Support agents are busy helping other Jotform users at the moment. I'll try to help you in English using Google Translate, but you can reply in whichever language you feel comfortable using. Or, if you'd rather have support in Spanish, let us know and we can have them do that. But, keep in mind that you'd have to wait until they're available again.

    Now, let me help you with your question. What you want to do is possible with the help of custom CSS codes that you can inject into your form.

    Here's an example:

    /*Make specific dropdown field option bold - #12277161*/
    #input_3 option:nth-child(3), #input_3 option:nth-child(6) {
        font-weight: bold !important;
    }
    /*Ends here*/

    Check out the screenshot below to see the result:

    Marcar opciones Image 1 Screenshot 20

    You can find my form here. Feel free to clone my form to your account so you can inspect it. Click here to see how to clone the form.

    The codes above may not work in any form. Can you send me the link to your form and tell me which options on which dropdown fields you would like to be in bold so I can take a look at it for you?

    Once we hear back from you, we'll be able to help you with this.

  • Guido
    Fecha de respuesta 27 de febrero de 2024, 10:49

    deseo que las opciones que donde diga facultad estén negritas

    Este es el link

    Requerimientos VCM (jotform.com)

  • Catherine Jotform Support
    Fecha de respuesta 27 de febrero de 2024, 12:54

    Hola Guido,

    Gracias por los detalles adicionales. Por favor inserta el siguiente código CSS para alcanzar los resultados deseados:

    /*Make specific dropdown field option bold - #12277161*/
    #input_90 option:nth-child(7), #input_90 option:nth-child(11),  #input_90 option:nth-child(14), #input_90 option:nth-child(22), #input_90 option:nth-child(28), #input_90 option:nth-child(30), #input_90 option:nth-child(36){
       font-weight: bold !important;
    }
    /*Ends here*/


    Mira los resultados a continuación:

    Marcar opciones Image 1 Screenshot 20

    Pruébalo y cuéntanos como te va.