Need to remove bold font from search box.

Need to remove bold font from search box.

pranithapranitha Posts: 1Questions: 1Answers: 0

In the jquery datatable i have search box, i wanted to remove bold font from search box, by default its taking bold font. Please help me on that

Answers

  • kthorngrenkthorngren Posts: 21,303Questions: 26Answers: 4,947

    I don't believe the search box is bold by default as shown in this example:
    https://datatables.net/examples/basic_init/zero_configuration.html

    It would be a CSS setting in your environment. You can inspect the search element in your browser's dev tools to see where the bold is coming from. You might be able to override the bold or font settings using this:

    .dataTables_filter {
      /* CSS settings to override current CSS for search box */
    }
    

    Kevin

This discussion has been closed.