Search results

  1. B

    Responsive form on the website

    Hello Gracham, If I understand correctly, you're facing an issue with a non-responsive form on a page of your website when viewed on mobile devices. While I'm not sure what code you're currently using, I can suggest some general tips to make forms more mobile-friendly: Use responsive design...
  2. B

    HTML & CSS I can't colorize a specific item of my html

    To colorize the div with the class show-display and the value of 20, you can use the following CSS code: cssCopy code .key.show-display:contains('20') { color: red; } This code will select any div element with a class of show-display that contains the text "20", and apply the color red to it...
Top Bottom