Custom styled Search box integration

Custom styled Search box integration

khandroidkhandroid Posts: 1Questions: 1Answers: 0

I have designed my webpage and have my own custom styled searchbox.
DataTables has default search box which is pretty cool as well as fast , I want to implement similar searchbox functionality into my own styled custom searchbox..What should I do ? HELP !

Answers

  • glendersonglenderson Posts: 231Questions: 11Answers: 29

    You should be able to examine the class(es) that dataTables is applying to the search / filter with your developement browser and then add / edit them in your own css stylesheet to get the look that you are seeking.

     .dataTables_filter {
    color: blue;
    font-size:16px;
    }
    
This discussion has been closed.